From 6f4b0f88d2e4bc85980a8650b395ba3083b288b0 Mon Sep 17 00:00:00 2001 From: Tyron Madlener Date: Wed, 15 Jun 2011 20:36:58 +0200 Subject: [PATCH 001/340] - Server variables that represent bytes are convert to a byte format (e.g. 16 EiB instead of 18,446,744,073,709,551,616) - A javascript code snippet that cuts off long strings (such as the optimizer_switch variable) so the whole table stays in view without scrolling. --- js/server_variables.js | 132 ++++++++++++++++++++--------- libraries/server_variables_doc.php | 63 +++++++------- server_variables.php | 6 +- 3 files changed, 127 insertions(+), 74 deletions(-) diff --git a/js/server_variables.js b/js/server_variables.js index 1877ce7fb8..11be3dea5e 100644 --- a/js/server_variables.js +++ b/js/server_variables.js @@ -1,42 +1,92 @@ -$(function() { - var textFilter=null; - var odd_row=false; - - // Filter options are invisible for disabled js users - $('fieldset#tableFilter').css('display',''); - - $('#filterText').keyup(function(e) { - if($(this).val().length==0) textFilter=null; - else textFilter = new RegExp("(^| )"+$(this).val(),'i'); - filterVariables(); - }); - - function filterVariables() { - odd_row=false; - var mark_next=false; - var firstCell; - - $('table.filteredData tbody tr').each(function() { - firstCell = $(this).children(':first'); - - if(mark_next || textFilter==null || textFilter.exec(firstCell.text())) { - // If current row is 'marked', also display next row - if($(this).hasClass('marked') && !mark_next) - mark_next=true; - else mark_next=false; - - odd_row = !odd_row; - $(this).css('display',''); - if(odd_row) { - $(this).addClass('odd'); - $(this).removeClass('even'); - } else { - $(this).addClass('even'); - $(this).removeClass('odd'); - } - } else { - $(this).css('display','none'); - } - }); - } +$(function() { + var textFilter=null; + var odd_row=false; + var testString = 'abcdefghijklmnopqrstuvwxyz0123456789,ABCEFGHIJKLMOPQRSTUVWXYZ'; + var $tmpDiv; + var charWidth; + + /*** This code snippet takes care that the table stays readable. It cuts off long strings when the window is resized ***/ + $('table.data').after($tmpDiv=$(''+testString+'')); + charWidth = $tmpDiv.width() / testString.length; + $tmpDiv.remove(); + + $(window).resize(limitTableWidth); + limitTableWidth(); + + function limitTableWidth() { + var fulltext; + var charDiff; + var maxTableWidth; + var $tmpTable; + + $('table.data').after($tmpTable=$('
'+testString+'
')); + maxTableWidth = $('#testTable').width(); + $tmpTable.remove(); + charDiff = ($('table.data').width()-maxTableWidth) / charWidth; + + if($('body').innerWidth() < $('table.data').width()+10 || $('body').innerWidth() > $('table.data').width()+20) { + var maxChars=0; + + $('table.data tbody tr td:nth-child(2)').each(function() { + maxChars=Math.max($(this).text().length,maxChars); + }); + + // Do not resize smaller if there's only 50 chars displayed already + if(charDiff > 0 && maxChars < 50) return; + + $('table.data tbody tr td:nth-child(2)').each(function() { + if((charDiff>0 && $(this).text().length > maxChars-charDiff) || (charDiff<0 && $(this).find('abbr.cutoff').length>0)) { + if($(this).find('abbr.cutoff').length > 0) + fulltext = $(this).find('abbr.cutoff').attr('title'); + else { + fulltext = $(this).text(); + // Do not cut off elements with html in it and hope they are not too long + if(fulltext.length != $(this).html().length) return 0; + } + + if(fulltext.length < maxChars-charDiff) + $(this).html(fulltext); + else $(this).html(''+fulltext.substr(0,maxChars-charDiff-3)+'...'); + } + }); + } + } + + // Filter options are invisible for disabled js users + $('fieldset#tableFilter').css('display',''); + + $('#filterText').keyup(function(e) { + if($(this).val().length==0) textFilter=null; + else textFilter = new RegExp("(^| )"+$(this).val(),'i'); + filterVariables(); + }); + + function filterVariables() { + odd_row=false; + var mark_next=false; + var firstCell; + + $('table.filteredData tbody tr').each(function() { + firstCell = $(this).children(':first'); + + if(mark_next || textFilter==null || textFilter.exec(firstCell.text())) { + // If current row is 'marked', also display next row + if($(this).hasClass('marked') && !mark_next) + mark_next=true; + else mark_next=false; + + odd_row = !odd_row; + $(this).css('display',''); + if(odd_row) { + $(this).addClass('odd'); + $(this).removeClass('even'); + } else { + $(this).addClass('even'); + $(this).removeClass('odd'); + } + } else { + $(this).css('display','none'); + } + }); + } }); \ No newline at end of file diff --git a/libraries/server_variables_doc.php b/libraries/server_variables_doc.php index 3e8faa8391..ce81e89294 100644 --- a/libraries/server_variables_doc.php +++ b/libraries/server_variables_doc.php @@ -6,6 +6,7 @@ * string $anchor: anchor to the documentation page * string $chapter: chapter of "HTML, one page per chapter" documentation * string $type: type of system variable + * string $format: if set to 'byte' it will format the variable with PMA_formatByteDown() */ $VARIABLE_DOC_LINKS = array(); $VARIABLE_DOC_LINKS['auto_increment_increment'] = array('auto_increment_increment','replication-options-master','sysvar'); @@ -16,11 +17,11 @@ $VARIABLE_DOC_LINKS['back_log'] = array('back_log','server-system-variables','sy $VARIABLE_DOC_LINKS['basedir'] = array('basedir','server-options','option_mysqld'); $VARIABLE_DOC_LINKS['big_tables'] = array('big-tables','server-options','option_mysqld'); $VARIABLE_DOC_LINKS['bind_address'] = array('bind-address','server-options','option_mysqld'); -$VARIABLE_DOC_LINKS['binlog_cache_size'] = array('binlog_cache_size','replication-options-binary-log','sysvar'); +$VARIABLE_DOC_LINKS['binlog_cache_size'] = array('binlog_cache_size','replication-options-binary-log','sysvar','byte'); $VARIABLE_DOC_LINKS['binlog_direct_non_transactional_updates'] = array('binlog_direct_non_transactional_updates','replication-options-binary-log','sysvar'); $VARIABLE_DOC_LINKS['binlog_format'] = array('binlog-format','server-options','sysvar'); -$VARIABLE_DOC_LINKS['binlog_stmt_cache_size'] = array('binlog_stmt_cache_size','replication-options-binary-log','sysvar'); -$VARIABLE_DOC_LINKS['bulk_insert_buffer_size'] = array('bulk_insert_buffer_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['binlog_stmt_cache_size'] = array('binlog_stmt_cache_size','replication-options-binary-log','sysvar','byte'); +$VARIABLE_DOC_LINKS['bulk_insert_buffer_size'] = array('bulk_insert_buffer_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['character_set_client'] = array('character_set_client','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['character_set_connection'] = array('character_set_connection','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['character_set_database'] = array('character_set_database','server-system-variables','sysvar'); @@ -84,11 +85,11 @@ $VARIABLE_DOC_LINKS['init_file'] = array('init-file','server-options','option_my $VARIABLE_DOC_LINKS['init_slave'] = array('init_slave','replication-options-slave','sysvar'); $VARIABLE_DOC_LINKS['innodb_adaptive_flushing'] = array('innodb_adaptive_flushing','innodb-parameters','sysvar'); $VARIABLE_DOC_LINKS['innodb_adaptive_hash_index'] = array('innodb_adaptive_hash_index','innodb-parameters','sysvar'); -$VARIABLE_DOC_LINKS['innodb_additional_mem_pool_size'] = array('innodb_additional_mem_pool_size','innodb-parameters','sysvar'); +$VARIABLE_DOC_LINKS['innodb_additional_mem_pool_size'] = array('innodb_additional_mem_pool_size','innodb-parameters','sysvar','byte'); $VARIABLE_DOC_LINKS['innodb_autoextend_increment'] = array('innodb_autoextend_increment','innodb-parameters','sysvar'); $VARIABLE_DOC_LINKS['innodb_autoinc_lock_mode'] = array('innodb_autoinc_lock_mode','innodb-parameters','sysvar'); $VARIABLE_DOC_LINKS['innodb_buffer_pool_instances'] = array('innodb_buffer_pool_instances','innodb-parameters','sysvar'); -$VARIABLE_DOC_LINKS['innodb_buffer_pool_size'] = array('innodb_buffer_pool_size','innodb-parameters','sysvar'); +$VARIABLE_DOC_LINKS['innodb_buffer_pool_size'] = array('innodb_buffer_pool_size','innodb-parameters','sysvar','byte'); $VARIABLE_DOC_LINKS['innodb_change_buffering'] = array('innodb_change_buffering','innodb-parameters','sysvar'); $VARIABLE_DOC_LINKS['innodb_checksums'] = array('innodb_checksums','innodb-parameters','sysvar'); $VARIABLE_DOC_LINKS['innodb_commit_concurrency'] = array('innodb_commit_concurrency','innodb-parameters','sysvar'); @@ -107,8 +108,8 @@ $VARIABLE_DOC_LINKS['innodb_force_recovery'] = array('innodb_force_recovery','in $VARIABLE_DOC_LINKS['innodb_io_capacity'] = array('innodb_io_capacity','innodb-parameters','sysvar'); $VARIABLE_DOC_LINKS['innodb_lock_wait_timeout'] = array('innodb_lock_wait_timeout','innodb-parameters','sysvar'); $VARIABLE_DOC_LINKS['innodb_locks_unsafe_for_binlog'] = array('innodb_locks_unsafe_for_binlog','innodb-parameters','sysvar'); -$VARIABLE_DOC_LINKS['innodb_log_buffer_size'] = array('innodb_log_buffer_size','innodb-parameters','sysvar'); -$VARIABLE_DOC_LINKS['innodb_log_file_size'] = array('innodb_log_file_size','innodb-parameters','sysvar'); +$VARIABLE_DOC_LINKS['innodb_log_buffer_size'] = array('innodb_log_buffer_size','innodb-parameters','sysvar','byte'); +$VARIABLE_DOC_LINKS['innodb_log_file_size'] = array('innodb_log_file_size','innodb-parameters','sysvar','byte'); $VARIABLE_DOC_LINKS['innodb_log_files_in_group'] = array('innodb_log_files_in_group','innodb-parameters','sysvar'); $VARIABLE_DOC_LINKS['innodb_log_group_home_dir'] = array('innodb_log_group_home_dir','innodb-parameters','sysvar'); $VARIABLE_DOC_LINKS['innodb_max_dirty_pages_pct'] = array('innodb_max_dirty_pages_pct','innodb-parameters','sysvar'); @@ -138,15 +139,15 @@ $VARIABLE_DOC_LINKS['innodb_version'] = array('innodb_version','innodb-parameter $VARIABLE_DOC_LINKS['innodb_write_io_threads'] = array('innodb_write_io_threads','innodb-parameters','sysvar'); $VARIABLE_DOC_LINKS['insert_id'] = array('insert_id','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['interactive_timeout'] = array('interactive_timeout','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['join_buffer_size'] = array('join_buffer_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['join_buffer_size'] = array('join_buffer_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['keep_files_on_create'] = array('keep_files_on_create','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['key_buffer_size'] = array('key_buffer_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['key_buffer_size'] = array('key_buffer_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['key_cache_age_threshold'] = array('key_cache_age_threshold','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['key_cache_block_size'] = array('key_cache_block_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['key_cache_block_size'] = array('key_cache_block_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['key_cache_division_limit'] = array('key_cache_division_limit','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['language'] = array('language','server-options','option_mysqld'); $VARIABLE_DOC_LINKS['large_files_support'] = array('large_files_support','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['large_page_size'] = array('large_page_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['large_page_size'] = array('large_page_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['large_pages'] = array('large-pages','server-options','option_mysqld'); $VARIABLE_DOC_LINKS['last_insert_id'] = array('last_insert_id','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['lc_messages'] = array('lc-messages','server-options','option_mysqld'); @@ -172,19 +173,19 @@ $VARIABLE_DOC_LINKS['lower_case_file_system'] = array('lower_case_file_system',' $VARIABLE_DOC_LINKS['lower_case_table_names'] = array('lower_case_table_names','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['master-bind'] = array('','replication-options',0); $VARIABLE_DOC_LINKS['max_allowed_packet'] = array('max_allowed_packet','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['max_binlog_cache_size'] = array('max_binlog_cache_size','replication-options-binary-log','sysvar'); -$VARIABLE_DOC_LINKS['max_binlog_size'] = array('max_binlog_size','replication-options-binary-log','sysvar'); -$VARIABLE_DOC_LINKS['max_binlog_stmt_cache_size'] = array('max_binlog_stmt_cache_size','replication-options-binary-log','sysvar'); +$VARIABLE_DOC_LINKS['max_binlog_cache_size'] = array('max_binlog_cache_size','replication-options-binary-log','sysvar','byte'); +$VARIABLE_DOC_LINKS['max_binlog_size'] = array('max_binlog_size','replication-options-binary-log','sysvar','byte'); +$VARIABLE_DOC_LINKS['max_binlog_stmt_cache_size'] = array('max_binlog_stmt_cache_size','replication-options-binary-log','sysvar','byte'); $VARIABLE_DOC_LINKS['max_connect_errors'] = array('max_connect_errors','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['max_connections'] = array('max_connections','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['max_delayed_threads'] = array('max_delayed_threads','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['max_error_count'] = array('max_error_count','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['max_heap_table_size'] = array('max_heap_table_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['max_heap_table_size'] = array('max_heap_table_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['max_insert_delayed_threads'] = array('max_insert_delayed_threads','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['max_join_size'] = array('max_join_size','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['max_length_for_sort_data'] = array('max_length_for_sort_data','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['max_prepared_stmt_count'] = array('max_prepared_stmt_count','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['max_relay_log_size'] = array('max_relay_log_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['max_relay_log_size'] = array('max_relay_log_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['max_seeks_for_key'] = array('max_seeks_for_key','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['max_sort_length'] = array('max_sort_length','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['max_sp_recursion_depth'] = array('max_sp_recursion_depth','server-system-variables','sysvar'); @@ -193,12 +194,12 @@ $VARIABLE_DOC_LINKS['max_user_connections'] = array('max_user_connections','serv $VARIABLE_DOC_LINKS['max_write_lock_count'] = array('max_write_lock_count','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['memlock'] = array('memlock','server-options','option_mysqld'); $VARIABLE_DOC_LINKS['min_examined_row_limit'] = array('min-examined-row-limit','server-options','option_mysqld'); -$VARIABLE_DOC_LINKS['myisam_data_pointer_size'] = array('myisam_data_pointer_size','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['myisam_max_sort_file_size'] = array('myisam_max_sort_file_size','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['myisam_mmap_size'] = array('myisam_mmap_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['myisam_data_pointer_size'] = array('myisam_data_pointer_size','server-system-variables','sysvar','byte'); +$VARIABLE_DOC_LINKS['myisam_max_sort_file_size'] = array('myisam_max_sort_file_size','server-system-variables','sysvar','byte'); +$VARIABLE_DOC_LINKS['myisam_mmap_size'] = array('myisam_mmap_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['myisam_recover_options'] = array('myisam_recover_options','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['myisam_repair_threads'] = array('myisam_repair_threads','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['myisam_sort_buffer_size'] = array('myisam_sort_buffer_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['myisam_sort_buffer_size'] = array('myisam_sort_buffer_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['myisam_stats_method'] = array('myisam_stats_method','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['myisam_use_mmap'] = array('myisam_use_mmap','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['named_pipe'] = array('named_pipe','server-system-variables','sysvar'); @@ -234,25 +235,25 @@ $VARIABLE_DOC_LINKS['performance_schema_max_thread_instances'] = array('performa $VARIABLE_DOC_LINKS['pid_file'] = array('pid-file','server-options','option_mysqld'); $VARIABLE_DOC_LINKS['plugin_dir'] = array('plugin_dir','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['port'] = array('port','server-options','option_mysqld'); -$VARIABLE_DOC_LINKS['preload_buffer_size'] = array('preload_buffer_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['preload_buffer_size'] = array('preload_buffer_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['profiling'] = array('profiling','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['profiling_history_size'] = array('profiling_history_size','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['protocol_version'] = array('protocol_version','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['proxy_user'] = array('proxy_user','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['pseudo_thread_id'] = array('pseudo_thread_id','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['query_alloc_block_size'] = array('query_alloc_block_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['query_alloc_block_size'] = array('query_alloc_block_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['query_cache_limit'] = array('query_cache_limit','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['query_cache_min_res_unit'] = array('query_cache_min_res_unit','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['query_cache_size'] = array('query_cache_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['query_cache_size'] = array('query_cache_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['query_cache_type'] = array('query_cache_type','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['query_cache_wlock_invalidate'] = array('query_cache_wlock_invalidate','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['query_prealloc_size'] = array('query_prealloc_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['query_prealloc_size'] = array('query_prealloc_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['rand_seed1'] = array('rand_seed1','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['rand_seed2'] = array('rand_seed2','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['range_alloc_block_size'] = array('range_alloc_block_size','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['read_buffer_size'] = array('read_buffer_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['range_alloc_block_size'] = array('range_alloc_block_size','server-system-variables','sysvar','byte'); +$VARIABLE_DOC_LINKS['read_buffer_size'] = array('read_buffer_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['read_only'] = array('read_only','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['read_rnd_buffer_size'] = array('read_rnd_buffer_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['read_rnd_buffer_size'] = array('read_rnd_buffer_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['relay-log-index'] = array('relay-log-index','replication-options-slave','option_mysqld'); $VARIABLE_DOC_LINKS['relay_log_index'] = array('relay_log_index','replication-options-slave','sysvar'); $VARIABLE_DOC_LINKS['relay_log_info_file'] = array('relay_log_info_file','replication-options-slave','sysvar'); @@ -291,7 +292,7 @@ $VARIABLE_DOC_LINKS['slow_launch_time'] = array('slow_launch_time','server-syste $VARIABLE_DOC_LINKS['slow_query_log'] = array('slow-query-log','server-options','server-system-variables'); $VARIABLE_DOC_LINKS['slow_query_log_file'] = array('slow_query_log_file','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['socket'] = array('socket','server-options','option_mysqld'); -$VARIABLE_DOC_LINKS['sort_buffer_size'] = array('sort_buffer_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['sort_buffer_size'] = array('sort_buffer_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['sql_auto_is_null'] = array('sql_auto_is_null','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['sql_big_selects'] = array('sql_big_selects','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['sql_big_tables'] = array('big-tables','server-options','server-system-variables'); @@ -332,10 +333,10 @@ $VARIABLE_DOC_LINKS['time_format'] = array('time_format','server-system-variable $VARIABLE_DOC_LINKS['time_zone'] = array('time_zone','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['timed_mutexes'] = array('timed_mutexes','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['timestamp'] = array('timestamp','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['tmp_table_size'] = array('tmp_table_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['tmp_table_size'] = array('tmp_table_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['tmpdir'] = array('tmpdir','server-options','option_mysqld'); -$VARIABLE_DOC_LINKS['transaction_alloc_block_size'] = array('transaction_alloc_block_size','server-system-variables','sysvar'); -$VARIABLE_DOC_LINKS['transaction_prealloc_size'] = array('transaction_prealloc_size','server-system-variables','sysvar'); +$VARIABLE_DOC_LINKS['transaction_alloc_block_size'] = array('transaction_alloc_block_size','server-system-variables','sysvar','byte'); +$VARIABLE_DOC_LINKS['transaction_prealloc_size'] = array('transaction_prealloc_size','server-system-variables','sysvar','byte'); $VARIABLE_DOC_LINKS['tx_isolation'] = array('tx_isolation','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['unique_checks'] = array('unique_checks','server-system-variables','sysvar'); $VARIABLE_DOC_LINKS['updatable_views_with_limit'] = array('updatable_views_with_limit','server-system-variables','sysvar'); diff --git a/server_variables.php b/server_variables.php index 00c8a85ca5..e538c9128a 100644 --- a/server_variables.php +++ b/server_variables.php @@ -86,8 +86,10 @@ foreach ($serverVars as $name => $value) { '.implode(' ',PMA_formatByteDown($value,3,3)).''; + else echo PMA_formatNumber($value, 0); $is_numeric = true; } else { echo htmlspecialchars($value); From f7291745f6635d544431c67e05c10296ffebc6f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:53:08 +0200 Subject: [PATCH 002/340] Translation update done using Pootle. --- po/es.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/es.po b/po/es.po index 2dbdf72b6e..e1ce93c333 100644 --- a/po/es.po +++ b/po/es.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-09 17:25+0200\n" +"PO-Revision-Date: 2011-06-15 22:53+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -1018,10 +1018,9 @@ msgstr "¡Ésto no es un número!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#, fuzzy #| msgid "Log file count" msgid "Total count" -msgstr "Cantidad de archivos de registro" +msgstr "Cantidad total" #: js/messages.php:54 msgid "The host name is empty!" From fd002021aac1fc7534e14567cada23898ffc3078 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:53:21 +0200 Subject: [PATCH 003/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index e1ce93c333..c46841cb41 100644 --- a/po/es.po +++ b/po/es.po @@ -1057,10 +1057,9 @@ msgid "Close" msgstr "Cerrar" #: js/messages.php:64 server_status.php:397 -#, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" -msgstr "Elección del servidor" +msgstr "Gráfico de tráfico en vivo" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" From e9404a518d93c90baf1f5ea00cc21497f9661f0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:53:33 +0200 Subject: [PATCH 004/340] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index c46841cb41..9fcb33f5be 100644 --- a/po/es.po +++ b/po/es.po @@ -1063,7 +1063,7 @@ msgstr "Gráfico de tráfico en vivo" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" -msgstr "" +msgstr "Gráfico de procesos/conexiones en vivo" #: js/messages.php:66 server_status.php:429 #, fuzzy From abbbb838a48ce71f2c1c48a3e67c319ae4b3e4c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:53:41 +0200 Subject: [PATCH 005/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 9fcb33f5be..26c243cae2 100644 --- a/po/es.po +++ b/po/es.po @@ -1066,10 +1066,9 @@ msgid "Live conn./process chart" msgstr "Gráfico de procesos/conexiones en vivo" #: js/messages.php:66 server_status.php:429 -#, fuzzy #| msgid "Show query chart" msgid "Live query chart" -msgstr "Mostrar gráfico de consultas" +msgstr "Gráfico de consultas en vivo" #: js/messages.php:68 msgid "Static data" From c865b6929d2ecdee1d48892026aa54d4105a30e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:53:49 +0200 Subject: [PATCH 006/340] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 26c243cae2..55fc5b2f75 100644 --- a/po/es.po +++ b/po/es.po @@ -1072,7 +1072,7 @@ msgstr "Gráfico de consultas en vivo" #: js/messages.php:68 msgid "Static data" -msgstr "" +msgstr "Datos estáticos" #. l10n: Total number of queries #: js/messages.php:70 libraries/build_html_for_db.lib.php:45 From 79b7cde68dc78a0d079d1b904928177746c91a64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:53:59 +0200 Subject: [PATCH 007/340] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 55fc5b2f75..60ff139816 100644 --- a/po/es.po +++ b/po/es.po @@ -1085,7 +1085,7 @@ msgstr "Total" #. l10n: Other, small valued, queries #: js/messages.php:72 server_status.php:592 msgid "Other" -msgstr "" +msgstr "Otro" #. l10n: Thousands separator #: js/messages.php:74 libraries/common.lib.php:1375 From 1959dcf9171ed54c5b3625fde8f90f77d3e18345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:54:12 +0200 Subject: [PATCH 008/340] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 60ff139816..4037235687 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 22:53+0200\n" +"PO-Revision-Date: 2011-06-15 22:54+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -5004,10 +5004,9 @@ msgid "Language" msgstr "Idioma" #: libraries/display_tbl.lib.php:397 -#, fuzzy #| msgid "Textarea columns" msgid "Restore column order" -msgstr "Columnas para las áreas de texto" +msgstr "Restaurar orden de las columnas" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" From 6d670b571f433e3fd6677865efaf9a5f54fdcebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:54:25 +0200 Subject: [PATCH 009/340] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 4037235687..1686153799 100644 --- a/po/es.po +++ b/po/es.po @@ -5010,7 +5010,7 @@ msgstr "Restaurar orden de las columnas" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" -msgstr "" +msgstr "Arrastrar para reordenar" #: libraries/display_tbl.lib.php:412 #, fuzzy From 2112e660c0fe873b6b58200dcd2efe9cb844cc4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:54:38 +0200 Subject: [PATCH 010/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 1686153799..238f2df5ef 100644 --- a/po/es.po +++ b/po/es.po @@ -5013,10 +5013,9 @@ msgid "Drag to reorder" msgstr "Arrastrar para reordenar" #: libraries/display_tbl.lib.php:412 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "Clic para seleccionar" +msgstr "Pulsar para ordenar" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" From 9dc913431dabbce28eec0f93a58c401050dc23df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:54:47 +0200 Subject: [PATCH 011/340] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 238f2df5ef..72c8d8bef5 100644 --- a/po/es.po +++ b/po/es.po @@ -5019,7 +5019,7 @@ msgstr "Pulsar para ordenar" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" -msgstr "" +msgstr "Pulsar para marcar/desmarcar" #: libraries/display_tbl.lib.php:425 #, php-format From 14eeaa0c19df65281122e7aa81e334fb9b7cce12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:54:55 +0200 Subject: [PATCH 012/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 72c8d8bef5..be0b4ee207 100644 --- a/po/es.po +++ b/po/es.po @@ -8417,10 +8417,9 @@ msgid "Runtime Information" msgstr "Información acerca del tiempo de ejecución del proceso principal" #: server_status.php:371 -#, fuzzy #| msgid "Server Choice" msgid "Server traffic" -msgstr "Elección del servidor" +msgstr "Tráfico del servidor" #: server_status.php:372 msgid "Query statistics" From 88b0b7e36e4291601029f4374ade52b49b404386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:55:10 +0200 Subject: [PATCH 013/340] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index be0b4ee207..1e03c861fa 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 22:54+0200\n" +"PO-Revision-Date: 2011-06-15 22:55+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -8426,10 +8426,9 @@ msgid "Query statistics" msgstr "Estadísticas de Consulta" #: server_status.php:373 -#, fuzzy #| msgid "See slave status table" msgid "All status variables" -msgstr "Ver la tabla de estado del esclavo" +msgstr "Todas las variables de estado" #: server_status.php:383 server_status.php:416 #, fuzzy From 95340fa7af9badd5ab19f57fb116e60664b1da53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:55:25 +0200 Subject: [PATCH 014/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 1e03c861fa..9c846fcb45 100644 --- a/po/es.po +++ b/po/es.po @@ -8431,10 +8431,9 @@ msgid "All status variables" msgstr "Todas las variables de estado" #: server_status.php:383 server_status.php:416 -#, fuzzy #| msgid "Refresh" msgid "Refresh rate" -msgstr "Actualizar" +msgstr "Velocidad de actualización" #: server_status.php:384 server_status.php:417 #, fuzzy From d9d86d763b2d544d7fa42de2ffc448b507b529b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:55:42 +0200 Subject: [PATCH 015/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 9c846fcb45..c30b524f0e 100644 --- a/po/es.po +++ b/po/es.po @@ -8436,10 +8436,9 @@ msgid "Refresh rate" msgstr "Velocidad de actualización" #: server_status.php:384 server_status.php:417 -#, fuzzy #| msgid "Second" msgid "second" -msgstr "Segundo" +msgstr "segundo" #: server_status.php:385 server_status.php:386 server_status.php:387 #: server_status.php:388 server_status.php:389 server_status.php:418 From 10197017df45eece1ec63fe17fc22e3f4591838a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:55:48 +0200 Subject: [PATCH 016/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index c30b524f0e..aca53a4ed7 100644 --- a/po/es.po +++ b/po/es.po @@ -8444,10 +8444,9 @@ msgstr "segundo" #: server_status.php:388 server_status.php:389 server_status.php:418 #: server_status.php:419 server_status.php:420 server_status.php:421 #: server_status.php:422 -#, fuzzy #| msgid "Second" msgid "seconds" -msgstr "Segundo" +msgstr "segundos" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 From 760dbf203cfe31a3848591a3a49bf447ee2e139f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:55:54 +0200 Subject: [PATCH 017/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index aca53a4ed7..154bb5277f 100644 --- a/po/es.po +++ b/po/es.po @@ -8451,10 +8451,9 @@ msgstr "segundos" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 #: server_status.php:425 server_status.php:426 -#, fuzzy #| msgid "Minute" msgid "minutes" -msgstr "Minuto" +msgstr "minutos" #: server_status.php:446 #, fuzzy From 97d698874fa0640c29907596a1d7538da4dfbe17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:56:07 +0200 Subject: [PATCH 018/340] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 154bb5277f..de40e84ddf 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 22:55+0200\n" +"PO-Revision-Date: 2011-06-15 22:56+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -8456,10 +8456,9 @@ msgid "minutes" msgstr "minutos" #: server_status.php:446 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "No cambiar la contraseña" +msgstr "Que contengan la palabra:" #: server_status.php:451 #, fuzzy From 4c87c00cba05f6d6c7aec90fa77082d0265fba52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:56:24 +0200 Subject: [PATCH 019/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index de40e84ddf..083b6b304f 100644 --- a/po/es.po +++ b/po/es.po @@ -8461,10 +8461,9 @@ msgid "Containing the word:" msgstr "Que contengan la palabra:" #: server_status.php:451 -#, fuzzy #| msgid "Show open tables" msgid "Show only alert values" -msgstr "Mostrar las tablas que están abiertas" +msgstr "Mostrar sólo valores de alerta" #: server_status.php:455 msgid "Filter by category..." From edd755be9667632dbe3e692e5bb52ded93f0e019 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:56:35 +0200 Subject: [PATCH 020/340] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 083b6b304f..047db7d5b4 100644 --- a/po/es.po +++ b/po/es.po @@ -8467,7 +8467,7 @@ msgstr "Mostrar sólo valores de alerta" #: server_status.php:455 msgid "Filter by category..." -msgstr "" +msgstr "Filtrar por categoría..." #: server_status.php:468 #, fuzzy From 894e801f387ac04051ae58f2a15df2c905ce1594 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:56:51 +0200 Subject: [PATCH 021/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 047db7d5b4..8a10063f0e 100644 --- a/po/es.po +++ b/po/es.po @@ -8470,10 +8470,9 @@ msgid "Filter by category..." msgstr "Filtrar por categoría..." #: server_status.php:468 -#, fuzzy #| msgid "Related Links" msgid "Related links:" -msgstr "Enlaces relacionados" +msgstr "Enlaces relacionados:" #: server_status.php:513 server_status.php:545 server_status.php:666 #: server_status.php:711 From c82a5d770e5b2cb141d0108f46c3d742efefe5b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:57:03 +0200 Subject: [PATCH 022/340] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 8a10063f0e..bb642ed5b6 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 22:56+0200\n" +"PO-Revision-Date: 2011-06-15 22:57+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -8494,7 +8494,7 @@ msgstr "Tipo de consulta" #. l10n: # = Amount of queries #: server_status.php:543 msgid "#" -msgstr "" +msgstr "#" #: server_status.php:615 #, php-format From 15794bd631f4f5dbf7637a23d278f93511920dd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:57:20 +0200 Subject: [PATCH 023/340] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index bb642ed5b6..ece270b2fe 100644 --- a/po/es.po +++ b/po/es.po @@ -8499,7 +8499,7 @@ msgstr "#" #: server_status.php:615 #, php-format msgid "Network traffic since startup: %s" -msgstr "" +msgstr "Tráfico de red desde el inicio: %s" #: server_status.php:623 #, php-format From 6431e545ecb2c7e26735296ac291144bc6fa7de8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:59:10 +0200 Subject: [PATCH 024/340] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index ece270b2fe..acbd79a8ba 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 22:57+0200\n" +"PO-Revision-Date: 2011-06-15 22:59+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -8584,10 +8584,9 @@ msgid "ID" msgstr "Identificación" #: server_status.php:846 -#, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Si habilitar SSL para la conexión al servidor MySQL o no." +msgstr "Cantidad de intentos de conexión al servidor MySQL fallidos." #: server_status.php:847 msgid "" From c7af7b18c9977407c3080e91c033d1bf1d60b059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 22:59:32 +0200 Subject: [PATCH 025/340] Translation update done using Pootle. --- po/es.po | 1 + 1 file changed, 1 insertion(+) diff --git a/po/es.po b/po/es.po index acbd79a8ba..8b72a7e49b 100644 --- a/po/es.po +++ b/po/es.po @@ -8608,6 +8608,7 @@ msgstr "" msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" +"Cantidad de intentos de conexión al servidor MySQL (fallidos o exitosos)." #: server_status.php:850 msgid "" From b58cc407ca95d52b53f0dfbc505fbfad68df3275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 23:00:38 +0200 Subject: [PATCH 026/340] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 8b72a7e49b..301ae8639e 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 22:59+0200\n" +"PO-Revision-Date: 2011-06-15 23:00+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -9047,6 +9047,8 @@ msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" +"El máximo número de conexiones que han sido utilizadas simultáneamente desde " +"que inició el servidor." #: server_status.php:921 msgid "The number of rows waiting to be written in INSERT DELAYED queues." From 1951a01e9560c2124493ad7dc1cfd074483abcac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 23:02:58 +0200 Subject: [PATCH 027/340] Translation update done using Pootle. --- po/es.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 301ae8639e..3177af6894 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:00+0200\n" +"PO-Revision-Date: 2011-06-15 23:02+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -9082,6 +9082,9 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" +"Cantidad de bloques de memoria libre en la cache de consultas. Cantidades " +"altas pueden indicar problemas de fragmentación que pueden ser solucionados " +"ejecutando la consulta FLUSH QUERY CACHE." #: server_status.php:927 msgid "The amount of free memory for query cache." From 22dd70468361071957039936ba19113ef4183bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 23:03:25 +0200 Subject: [PATCH 028/340] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 3177af6894..2bb288566f 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:02+0200\n" +"PO-Revision-Date: 2011-06-15 23:03+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -9836,10 +9836,9 @@ msgid "Line" msgstr "Línea" #: tbl_chart.php:88 -#, fuzzy #| msgid "Inline" msgid "Spline" -msgstr "En línea" +msgstr "Ranuras" #: tbl_chart.php:89 msgid "Pie" From fd02aecdaf29688e77d814da35055a9ef32449bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 23:03:53 +0200 Subject: [PATCH 029/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 2bb288566f..70c6a17233 100644 --- a/po/es.po +++ b/po/es.po @@ -9849,10 +9849,9 @@ msgid "Stacked" msgstr "Apiladas" #: tbl_chart.php:94 -#, fuzzy #| msgid "Report title:" msgid "Chart title" -msgstr "Título del reporte:" +msgstr "Título del gráfico" #: tbl_chart.php:99 msgid "X-Axis:" From 93d98491b72b94fb1d33ac958e908a520e22cadd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 23:04:01 +0200 Subject: [PATCH 030/340] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 70c6a17233..a5bbe724b8 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:03+0200\n" +"PO-Revision-Date: 2011-06-15 23:04+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -9855,7 +9855,7 @@ msgstr "Título del gráfico" #: tbl_chart.php:99 msgid "X-Axis:" -msgstr "" +msgstr "Eje X:" #: tbl_chart.php:113 #, fuzzy From 236f10845c25f4b41176ed1786c81c58490f45df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 23:04:13 +0200 Subject: [PATCH 031/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index a5bbe724b8..e7bb8888f3 100644 --- a/po/es.po +++ b/po/es.po @@ -9858,10 +9858,9 @@ msgid "X-Axis:" msgstr "Eje X:" #: tbl_chart.php:113 -#, fuzzy #| msgid "SQL queries" msgid "Series:" -msgstr "Consultas SQL" +msgstr "Series:" #: tbl_chart.php:115 #, fuzzy From e4e256526bcc9af3201669aaa9599c5b28533dbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 23:04:41 +0200 Subject: [PATCH 032/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index e7bb8888f3..a451c7eebf 100644 --- a/po/es.po +++ b/po/es.po @@ -9863,10 +9863,9 @@ msgid "Series:" msgstr "Series:" #: tbl_chart.php:115 -#, fuzzy #| msgid "Textarea columns" msgid "The remaining columns" -msgstr "Columnas para las áreas de texto" +msgstr "Columnas restantes" #: tbl_chart.php:128 #, fuzzy From 48f3aec978e57a935e449001070989a754e86b1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 23:04:51 +0200 Subject: [PATCH 033/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index a451c7eebf..d91a1970c7 100644 --- a/po/es.po +++ b/po/es.po @@ -9868,10 +9868,9 @@ msgid "The remaining columns" msgstr "Columnas restantes" #: tbl_chart.php:128 -#, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" -msgstr "Etiqueta del eje X" +msgstr "Etiqueta del eje X:" #: tbl_chart.php:128 #, fuzzy From d2d349febd902ceded9bf5a664fdecd3e8c7e035 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 23:04:58 +0200 Subject: [PATCH 034/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index d91a1970c7..c0aee19285 100644 --- a/po/es.po +++ b/po/es.po @@ -9873,10 +9873,9 @@ msgid "X-Axis label:" msgstr "Etiqueta del eje X:" #: tbl_chart.php:128 -#, fuzzy #| msgid "Value" msgid "X Values" -msgstr "Valor" +msgstr "Valores X" #: tbl_chart.php:129 #, fuzzy From 1c472f1dff8e82cd3f00e47035b8d26c9ae14bae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 23:05:06 +0200 Subject: [PATCH 035/340] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index c0aee19285..d127bd35af 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:04+0200\n" +"PO-Revision-Date: 2011-06-15 23:05+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -9878,10 +9878,9 @@ msgid "X Values" msgstr "Valores X" #: tbl_chart.php:129 -#, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" -msgstr "Etiqueta del eje Y" +msgstr "Etiqueta del eje Y:" #: tbl_chart.php:129 #, fuzzy From 5b44f491933d04578beba485ea0f70babaafb2e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Wed, 15 Jun 2011 23:05:14 +0200 Subject: [PATCH 036/340] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index d127bd35af..4d2b8d3a5f 100644 --- a/po/es.po +++ b/po/es.po @@ -9883,10 +9883,9 @@ msgid "Y-Axis label:" msgstr "Etiqueta del eje Y:" #: tbl_chart.php:129 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "Valor" +msgstr "Valores Y" #: tbl_create.php:56 #, php-format From ab8b9cfd6101bc36832429d20dc207e2945efa53 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:39:39 +0200 Subject: [PATCH 037/340] Translation update done using Pootle. --- po/sv.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/sv.po b/po/sv.po index d1dc75bd30..313b6266a4 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-09 23:29+0200\n" +"PO-Revision-Date: 2011-06-15 23:39+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -1004,10 +1004,9 @@ msgstr "Detta är inte ett nummer!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#, fuzzy #| msgid "Log file count" msgid "Total count" -msgstr "Antal loggfiler" +msgstr "Totalt antal" #: js/messages.php:54 msgid "The host name is empty!" From fa4fec50a447b10f3c4147acc4492c6b5db311dc Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:41:34 +0200 Subject: [PATCH 038/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index 313b6266a4..e32d235987 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:39+0200\n" +"PO-Revision-Date: 2011-06-15 23:41+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -1043,10 +1043,9 @@ msgid "Close" msgstr "Stäng" #: js/messages.php:64 server_status.php:397 -#, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" -msgstr "Välj server" +msgstr "Live trafik diagram" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" From 8b3cc87892364acec3cea86a9099fe4d97adafe3 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:42:32 +0200 Subject: [PATCH 039/340] Translation update done using Pootle. --- po/sv.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index e32d235987..cbb83d51f8 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:41+0200\n" +"PO-Revision-Date: 2011-06-15 23:42+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -1049,7 +1049,7 @@ msgstr "Live trafik diagram" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" -msgstr "" +msgstr "Live anslutning/process diagram" #: js/messages.php:66 server_status.php:429 #, fuzzy From abac8ccae7b44d639d4bbfc36bd725d6223b14c9 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:43:45 +0200 Subject: [PATCH 040/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index cbb83d51f8..6de42e831a 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:42+0200\n" +"PO-Revision-Date: 2011-06-15 23:43+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -1052,10 +1052,9 @@ msgid "Live conn./process chart" msgstr "Live anslutning/process diagram" #: js/messages.php:66 server_status.php:429 -#, fuzzy #| msgid "Show query chart" msgid "Live query chart" -msgstr "Visa fråge diagram" +msgstr "Live sökfrågediagram" #: js/messages.php:68 msgid "Static data" From 2a1268b95ebfca31eeceb964b1c3354ca74e9ab8 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:44:01 +0200 Subject: [PATCH 041/340] Translation update done using Pootle. --- po/sv.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index 6de42e831a..bd661b6c4e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:43+0200\n" +"PO-Revision-Date: 2011-06-15 23:44+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -1058,7 +1058,7 @@ msgstr "Live sökfrågediagram" #: js/messages.php:68 msgid "Static data" -msgstr "" +msgstr "Statisk data" #. l10n: Total number of queries #: js/messages.php:70 libraries/build_html_for_db.lib.php:45 From fbb21572247b9e34eba8a75c83ac4acd5e9d2a49 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:44:36 +0200 Subject: [PATCH 042/340] Translation update done using Pootle. --- po/sv.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sv.po b/po/sv.po index bd661b6c4e..ea180677d7 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1071,7 +1071,7 @@ msgstr "Total" #. l10n: Other, small valued, queries #: js/messages.php:72 server_status.php:592 msgid "Other" -msgstr "" +msgstr "Annan" #. l10n: Thousands separator #: js/messages.php:74 libraries/common.lib.php:1375 From f6a0ff9c2f90fce15c2660e08cbfa928a776e7de Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:45:16 +0200 Subject: [PATCH 043/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index ea180677d7..4edef94d31 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:44+0200\n" +"PO-Revision-Date: 2011-06-15 23:45+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -4907,10 +4907,9 @@ msgid "Language" msgstr "Språk" #: libraries/display_tbl.lib.php:397 -#, fuzzy #| msgid "Textarea columns" msgid "Restore column order" -msgstr "Textarea kolumner" +msgstr "Återställ ordningen på kolumner" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" From c640f5463524b6dbcc8f481954388e6648272091 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:46:01 +0200 Subject: [PATCH 044/340] Translation update done using Pootle. --- po/sv.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index 4edef94d31..dd184341cd 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:45+0200\n" +"PO-Revision-Date: 2011-06-15 23:46+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -4913,7 +4913,7 @@ msgstr "Återställ ordningen på kolumner" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" -msgstr "" +msgstr "Dra för att ändra ordning" #: libraries/display_tbl.lib.php:412 #, fuzzy From cd682d897a95fb854be7059390b7803e5eedb83c Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:46:18 +0200 Subject: [PATCH 045/340] Translation update done using Pootle. --- po/sv.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index dd184341cd..e24383d5a0 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4916,10 +4916,9 @@ msgid "Drag to reorder" msgstr "Dra för att ändra ordning" #: libraries/display_tbl.lib.php:412 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "Klicka för att markera" +msgstr "Klicka för att sortera" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" From 849911e099f1191c33ecb222848ce1c73f90f249 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:46:54 +0200 Subject: [PATCH 046/340] Translation update done using Pootle. --- po/sv.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sv.po b/po/sv.po index e24383d5a0..5082561a94 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4922,7 +4922,7 @@ msgstr "Klicka för att sortera" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" -msgstr "" +msgstr "Klicka för att markera/avmarkera" #: libraries/display_tbl.lib.php:425 #, php-format From 6b65eebebe2b51fa7205ed564136980751c24b40 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:48:44 +0200 Subject: [PATCH 047/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index 5082561a94..22ea292e86 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:46+0200\n" +"PO-Revision-Date: 2011-06-15 23:48+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -8238,10 +8238,9 @@ msgid "Runtime Information" msgstr "Körningsinformation" #: server_status.php:371 -#, fuzzy #| msgid "Server Choice" msgid "Server traffic" -msgstr "Välj server" +msgstr "Server trafik" #: server_status.php:372 msgid "Query statistics" From f5e5614400543b98f7eab95e5e3bb5cdd378bab2 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:49:51 +0200 Subject: [PATCH 048/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index 22ea292e86..f257f81c2d 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:48+0200\n" +"PO-Revision-Date: 2011-06-15 23:49+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -8247,10 +8247,9 @@ msgid "Query statistics" msgstr "Visa statistik" #: server_status.php:373 -#, fuzzy #| msgid "See slave status table" msgid "All status variables" -msgstr "Se slavtabell status" +msgstr "Alla statusvariabler" #: server_status.php:383 server_status.php:416 #, fuzzy From d13b6b054ee6e147ff0044eb64fa6017679e6182 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:50:14 +0200 Subject: [PATCH 049/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index f257f81c2d..db37efddeb 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:49+0200\n" +"PO-Revision-Date: 2011-06-15 23:50+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -8252,10 +8252,9 @@ msgid "All status variables" msgstr "Alla statusvariabler" #: server_status.php:383 server_status.php:416 -#, fuzzy #| msgid "Refresh" msgid "Refresh rate" -msgstr "Uppdatera" +msgstr "Uppdateringsfrekvens" #: server_status.php:384 server_status.php:417 #, fuzzy From 3669d3f7696e57a77b5cf1a0b2dddd9e1091e26a Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:50:31 +0200 Subject: [PATCH 050/340] Translation update done using Pootle. --- po/sv.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index db37efddeb..b95e6626a2 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8257,10 +8257,9 @@ msgid "Refresh rate" msgstr "Uppdateringsfrekvens" #: server_status.php:384 server_status.php:417 -#, fuzzy #| msgid "Second" msgid "second" -msgstr "Sekunder" +msgstr "Sekund" #: server_status.php:385 server_status.php:386 server_status.php:387 #: server_status.php:388 server_status.php:389 server_status.php:418 From 6ea13531b498bdb9b76ee11cf38813b44825679e Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:50:52 +0200 Subject: [PATCH 051/340] Translation update done using Pootle. --- po/sv.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index b95e6626a2..6cbfe93c4f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8265,10 +8265,9 @@ msgstr "Sekund" #: server_status.php:388 server_status.php:389 server_status.php:418 #: server_status.php:419 server_status.php:420 server_status.php:421 #: server_status.php:422 -#, fuzzy #| msgid "Second" msgid "seconds" -msgstr "Sekunder" +msgstr "sekunder" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 From 374166e7e112ce62d1dbf974ebd9edf4c0e839cb Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:51:10 +0200 Subject: [PATCH 052/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index 6cbfe93c4f..e20b9bd6fe 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:50+0200\n" +"PO-Revision-Date: 2011-06-15 23:51+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -8272,10 +8272,9 @@ msgstr "sekunder" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 #: server_status.php:425 server_status.php:426 -#, fuzzy #| msgid "Minute" msgid "minutes" -msgstr "Minuter" +msgstr "minuter" #: server_status.php:446 #, fuzzy From 2819f6cb2a58050619504aad6d1c24a0096824a0 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:51:32 +0200 Subject: [PATCH 053/340] Translation update done using Pootle. --- po/sv.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index e20b9bd6fe..6c132ec8f9 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8277,10 +8277,9 @@ msgid "minutes" msgstr "minuter" #: server_status.php:446 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "Ändra inte lösenordet" +msgstr "Innehåller ordet:" #: server_status.php:451 #, fuzzy From bfadd8098cb7eb793d6792e0ec3b736c6e7ee1c8 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:52:52 +0200 Subject: [PATCH 054/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index 6c132ec8f9..aa9302dce5 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:51+0200\n" +"PO-Revision-Date: 2011-06-15 23:52+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -8282,10 +8282,9 @@ msgid "Containing the word:" msgstr "Innehåller ordet:" #: server_status.php:451 -#, fuzzy #| msgid "Show open tables" msgid "Show only alert values" -msgstr "Visa öppna tabeller" +msgstr "Visa endast varnings värden" #: server_status.php:455 msgid "Filter by category..." From 4d21881b6eedcbe521456867e8151bbb30233a25 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:53:34 +0200 Subject: [PATCH 055/340] Translation update done using Pootle. --- po/sv.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index aa9302dce5..a8932feea3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:52+0200\n" +"PO-Revision-Date: 2011-06-15 23:53+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -8288,7 +8288,7 @@ msgstr "Visa endast varnings värden" #: server_status.php:455 msgid "Filter by category..." -msgstr "" +msgstr "Filtrera efter kategori ..." #: server_status.php:468 #, fuzzy From 0df42cb61f0bccb6ce4bf7e4a4eafd9edf499173 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:53:55 +0200 Subject: [PATCH 056/340] Translation update done using Pootle. --- po/sv.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index a8932feea3..541fe30376 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8291,10 +8291,9 @@ msgid "Filter by category..." msgstr "Filtrera efter kategori ..." #: server_status.php:468 -#, fuzzy #| msgid "Related Links" msgid "Related links:" -msgstr "Liknande länkar" +msgstr "Liknande länkar:" #: server_status.php:513 server_status.php:545 server_status.php:666 #: server_status.php:711 From 920d9a01df7de7417fc4dbf27bac28a9960599a9 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:54:09 +0200 Subject: [PATCH 057/340] Translation update done using Pootle. --- po/sv.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index 541fe30376..9384cc6c1f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:53+0200\n" +"PO-Revision-Date: 2011-06-15 23:54+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -8315,7 +8315,7 @@ msgstr "Fråge-typ" #. l10n: # = Amount of queries #: server_status.php:543 msgid "#" -msgstr "" +msgstr "#" #: server_status.php:615 #, php-format From 991548f00de162355934f4da08c4419de4871ec1 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:55:16 +0200 Subject: [PATCH 058/340] Translation update done using Pootle. --- po/sv.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index 9384cc6c1f..a5a5be14dd 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:54+0200\n" +"PO-Revision-Date: 2011-06-15 23:55+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -8320,7 +8320,7 @@ msgstr "#" #: server_status.php:615 #, php-format msgid "Network traffic since startup: %s" -msgstr "" +msgstr "Nätverkstrafik sedan start:%s" #: server_status.php:623 #, php-format From 49d8d4aa62b4607374b8f8a28dbd3ae2449fd4f8 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:55:56 +0200 Subject: [PATCH 059/340] Translation update done using Pootle. --- po/sv.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index a5a5be14dd..70268cf366 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8402,10 +8402,9 @@ msgid "ID" msgstr "ID" #: server_status.php:846 -#, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Kunde inte ansluta till MySQL-server" +msgstr "Antalet misslyckade försök att ansluta till MySQL-servern." #: server_status.php:847 msgid "" From 2eb9a08b0506bb9eb57f01660162988a1944acf1 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:57:02 +0200 Subject: [PATCH 060/340] Translation update done using Pootle. --- po/sv.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index 70268cf366..10b753b90c 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:55+0200\n" +"PO-Revision-Date: 2011-06-15 23:57+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -8423,7 +8423,7 @@ msgstr "Antalet transaktioner som använde den temporära binära loggcachen." #: server_status.php:849 msgid "" "The number of connection attempts (successful or not) to the MySQL server." -msgstr "" +msgstr "Antalet anslutningsförsök (lyckade eller inte) till MySQL-servern." #: server_status.php:850 msgid "" From ac1acdb727bf1ac81c6ee3cdd0261f29a1b4c57c Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 15 Jun 2011 23:59:55 +0200 Subject: [PATCH 061/340] Translation update done using Pootle. --- po/sv.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sv.po b/po/sv.po index 10b753b90c..7e05740c96 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:57+0200\n" +"PO-Revision-Date: 2011-06-15 23:59+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -8843,6 +8843,8 @@ msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" +"Det maximala antalet anslutningar som har använts samtidigt sedan servern " +"startade." #: server_status.php:921 msgid "The number of rows waiting to be written in INSERT DELAYED queues." From 3c5979e104fab5b1b0873e817f9c831a937b52f6 Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 16 Jun 2011 00:04:05 +0200 Subject: [PATCH 062/340] Translation update done using Pootle. --- po/sv.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sv.po b/po/sv.po index 7e05740c96..866ffd38ec 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 23:59+0200\n" +"PO-Revision-Date: 2011-06-16 00:04+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -8876,6 +8876,8 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" +"Antalet fria minnesblock i frågecache. Högt antal kan tyda på fragmentering, " +"vilket kan lösas genom att köra ett FLUSH QUERY CACHEN kommando." #: server_status.php:927 msgid "The amount of free memory for query cache." From 0d8f486a7b797a0377a5228780de87b4d468b05b Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 16 Jun 2011 00:05:55 +0200 Subject: [PATCH 063/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index 866ffd38ec..4123dd525c 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 00:04+0200\n" +"PO-Revision-Date: 2011-06-16 00:05+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -9613,10 +9613,9 @@ msgid "Line" msgstr "Linje" #: tbl_chart.php:88 -#, fuzzy #| msgid "Inline" msgid "Spline" -msgstr "Infogad" +msgstr "ISpårning" #: tbl_chart.php:89 msgid "Pie" From fa7a286e59593b7386de938eb86065027fc752ca Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 16 Jun 2011 00:06:30 +0200 Subject: [PATCH 064/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index 4123dd525c..f8700d5f95 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 00:05+0200\n" +"PO-Revision-Date: 2011-06-16 00:06+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -9626,10 +9626,9 @@ msgid "Stacked" msgstr "Staplade" #: tbl_chart.php:94 -#, fuzzy #| msgid "Report title:" msgid "Chart title" -msgstr "Rapport titel:" +msgstr "Diagramtitel" #: tbl_chart.php:99 msgid "X-Axis:" From aaead6b53c744f4b11efdeb8440257bdad527c7f Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 16 Jun 2011 00:06:46 +0200 Subject: [PATCH 065/340] Translation update done using Pootle. --- po/sv.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sv.po b/po/sv.po index f8700d5f95..197977717b 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9632,7 +9632,7 @@ msgstr "Diagramtitel" #: tbl_chart.php:99 msgid "X-Axis:" -msgstr "" +msgstr "X-axel:" #: tbl_chart.php:113 #, fuzzy From b90bf046182fe02943a13c8ddcfbeee43c845702 Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 16 Jun 2011 00:07:17 +0200 Subject: [PATCH 066/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index 197977717b..d422cb3f72 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 00:06+0200\n" +"PO-Revision-Date: 2011-06-16 00:07+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -9635,10 +9635,9 @@ msgid "X-Axis:" msgstr "X-axel:" #: tbl_chart.php:113 -#, fuzzy #| msgid "SQL queries" msgid "Series:" -msgstr "SQL-frågor" +msgstr "Serie:" #: tbl_chart.php:115 #, fuzzy From 9e7e3b39af1939e5299fd7711ebb2c73ea8296db Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 16 Jun 2011 00:09:31 +0200 Subject: [PATCH 067/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index d422cb3f72..2c655674ce 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 00:07+0200\n" +"PO-Revision-Date: 2011-06-16 00:09+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -9640,10 +9640,9 @@ msgid "Series:" msgstr "Serie:" #: tbl_chart.php:115 -#, fuzzy #| msgid "Textarea columns" msgid "The remaining columns" -msgstr "Textarea kolumner" +msgstr "Återstående kolumner" #: tbl_chart.php:128 #, fuzzy From df476a1b939c21264ab7b8a99cd62393db59b73a Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 16 Jun 2011 00:09:44 +0200 Subject: [PATCH 068/340] Translation update done using Pootle. --- po/sv.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sv.po b/po/sv.po index 2c655674ce..77101f2a15 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9645,7 +9645,6 @@ msgid "The remaining columns" msgstr "Återstående kolumner" #: tbl_chart.php:128 -#, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" msgstr "X-axel etikett" From e20532c0c4bba65904aabd3c8ee0ae470b4792d5 Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 16 Jun 2011 00:10:03 +0200 Subject: [PATCH 069/340] Translation update done using Pootle. --- po/sv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sv.po b/po/sv.po index 77101f2a15..5a4346f93f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 00:09+0200\n" +"PO-Revision-Date: 2011-06-16 00:10+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" @@ -9650,10 +9650,9 @@ msgid "X-Axis label:" msgstr "X-axel etikett" #: tbl_chart.php:128 -#, fuzzy #| msgid "Value" msgid "X Values" -msgstr "Värde" +msgstr "X värde" #: tbl_chart.php:129 #, fuzzy From f82d2beb09c5211f981a351b3949bcf2513068e0 Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 16 Jun 2011 00:10:17 +0200 Subject: [PATCH 070/340] Translation update done using Pootle. --- po/sv.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sv.po b/po/sv.po index 5a4346f93f..564b70e6bb 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9655,7 +9655,6 @@ msgid "X Values" msgstr "X värde" #: tbl_chart.php:129 -#, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Y-axel etikett" From 032d3ea6583c2feee1ace19e6181defa2d7fb9e4 Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 16 Jun 2011 00:10:49 +0200 Subject: [PATCH 071/340] Translation update done using Pootle. --- po/sv.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sv.po b/po/sv.po index 564b70e6bb..022c16fcaf 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9660,10 +9660,9 @@ msgid "Y-Axis label:" msgstr "Y-axel etikett" #: tbl_chart.php:129 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "Värde" +msgstr "Y värde" #: tbl_create.php:56 #, php-format From 351ef09b9065e7fb41e384555e76e5fa54f2e770 Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 16 Jun 2011 00:10:58 +0200 Subject: [PATCH 072/340] Translation update done using Pootle. --- po/sv.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sv.po b/po/sv.po index 022c16fcaf..81b9735088 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9662,7 +9662,7 @@ msgstr "Y-axel etikett" #: tbl_chart.php:129 #| msgid "Value" msgid "Y Values" -msgstr "Y värde" +msgstr "Y värden" #: tbl_create.php:56 #, php-format From 9bfa22c1fff9524107a8e60344e473629661058c Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 16 Jun 2011 00:11:07 +0200 Subject: [PATCH 073/340] Translation update done using Pootle. --- po/sv.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sv.po b/po/sv.po index 81b9735088..83846dc034 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 00:10+0200\n" +"PO-Revision-Date: 2011-06-16 00:11+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" From 6a36e59f32157db66878b4d8e4e842ac071f44b3 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 11:55:43 +0200 Subject: [PATCH 074/340] Translation update done using Pootle. --- po/el.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/el.po b/po/el.po index eee4c35eb2..a5b938173b 100644 --- a/po/el.po +++ b/po/el.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-06 09:50+0200\n" +"PO-Revision-Date: 2011-06-16 11:55+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -1013,10 +1013,9 @@ msgstr "Αυτό δεν είναι αριθμός!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#, fuzzy #| msgid "Log file count" msgid "Total count" -msgstr "Πλήθος γραμμών αρχείου καταγραφής" +msgstr "Συνολικό πλήθος" #: js/messages.php:54 msgid "The host name is empty!" From f5b07d72f14847710a5d35c0b9c3f7f04251bfff Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 11:55:58 +0200 Subject: [PATCH 075/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index a5b938173b..70e4fbdced 100644 --- a/po/el.po +++ b/po/el.po @@ -1035,10 +1035,9 @@ msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" #: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy #| msgid "Any user" msgid "Add user" -msgstr "Οποιοσδήποτε Χρήστης" +msgstr "Προσθήκη χρήστη" #: js/messages.php:59 msgid "Reloading Privileges" From ef887489fd13364a26bd0c01c3c62db8100747c0 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 11:56:44 +0200 Subject: [PATCH 076/340] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 70e4fbdced..deec5d12a4 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 11:55+0200\n" +"PO-Revision-Date: 2011-06-16 11:56+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1053,10 +1053,9 @@ msgid "Close" msgstr "Κλείσιμο" #: js/messages.php:64 server_status.php:397 -#, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" -msgstr "Επιλογή Διακομιστή" +msgstr "Διάγραμμα ζωντανής κυκλοφορίας" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" From 8d4b6d66e4e562921f42ce427ad4c20426552439 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 11:57:18 +0200 Subject: [PATCH 077/340] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index deec5d12a4..33739d8366 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 11:56+0200\n" +"PO-Revision-Date: 2011-06-16 11:57+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1055,7 +1055,7 @@ msgstr "Κλείσιμο" #: js/messages.php:64 server_status.php:397 #| msgid "Server Choice" msgid "Live traffic chart" -msgstr "Διάγραμμα ζωντανής κυκλοφορίας" +msgstr "Διάγραμμα τρέχουσας κυκλοφορίας" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" From ca42d3a9bc0d4f4383f859123884ee75651174cf Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 11:57:49 +0200 Subject: [PATCH 078/340] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 33739d8366..230379f72c 100644 --- a/po/el.po +++ b/po/el.po @@ -1059,7 +1059,7 @@ msgstr "Διάγραμμα τρέχουσας κυκλοφορίας" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" -msgstr "" +msgstr "Διάγραμμα τρέχουσας σύνδεσης/διαδικασίας" #: js/messages.php:66 server_status.php:429 #, fuzzy From 0c44049775a922b4c3017794cd733ef94d67967c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 11:58:05 +0200 Subject: [PATCH 079/340] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 230379f72c..076e9910fa 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 11:57+0200\n" +"PO-Revision-Date: 2011-06-16 11:58+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1062,10 +1062,9 @@ msgid "Live conn./process chart" msgstr "Διάγραμμα τρέχουσας σύνδεσης/διαδικασίας" #: js/messages.php:66 server_status.php:429 -#, fuzzy #| msgid "Show query chart" msgid "Live query chart" -msgstr "Προβολή διαγράμματος ερωτήματος" +msgstr "Διάγραμμα τρέχοντος ερωτήματος" #: js/messages.php:68 msgid "Static data" From 568b7352b2f9d00e664b17fcb270b60268695673 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 11:58:26 +0200 Subject: [PATCH 080/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 076e9910fa..537670e124 100644 --- a/po/el.po +++ b/po/el.po @@ -1150,10 +1150,9 @@ msgid "Create Table" msgstr "Δημιουργία Πίνακα" #: js/messages.php:101 -#, fuzzy #| msgid "Use Tables" msgid "Insert Table" -msgstr "Χρήση Πινάκων" +msgstr "Εισαγωγή Πίνακα" #: js/messages.php:104 msgid "Searching" From 61056efc99348f8942525c3a1d99c19843fa4a48 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 11:58:57 +0200 Subject: [PATCH 081/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 537670e124..0bbef88854 100644 --- a/po/el.po +++ b/po/el.po @@ -1846,10 +1846,9 @@ msgid "Wrong username/password. Access denied." msgstr "Λανθασμένο όνομα χρήστη/κωδικός πρόσβασης. Άρνηση πρόσβασης." #: libraries/auth/signon.auth.lib.php:87 -#, fuzzy #| msgid "Config authentication" msgid "Can not find signon authentication script:" -msgstr "Πιστοποίηση ρύθμισης" +msgstr "Αδύνατη η εύρεση του κώδικα πιστοποίησης σύνδεσης:" #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format From cb4d4abb4ceefa04ad4428d7f6f3f97e980bfdfd Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 11:59:26 +0200 Subject: [PATCH 082/340] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 0bbef88854..6604fda99d 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 11:58+0200\n" +"PO-Revision-Date: 2011-06-16 11:59+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -2603,10 +2603,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:61 -#, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" -msgstr "Συντήρηση Πίνακα" +msgstr "Απενεργοποίηση συντήρησης πολλαπλών πινάκων" #: libraries/config/messages.inc.php:62 msgid "Edit SQL queries in popup window" From 62e70a3b934c989cbf0bb4716a2d4005580c7a57 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 11:59:49 +0200 Subject: [PATCH 083/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 6604fda99d..00558bee86 100644 --- a/po/el.po +++ b/po/el.po @@ -4985,10 +4985,9 @@ msgid "Language" msgstr "Γλώσσα" #: libraries/display_tbl.lib.php:397 -#, fuzzy #| msgid "Textarea columns" msgid "Restore column order" -msgstr "Στήλες περιοχής κειμένου (textarea)" +msgstr "Επαναφορά κατανομής στηλών" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" From 78961fec184d2a8a441e6c734ebd35f874a52f96 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:00:00 +0200 Subject: [PATCH 084/340] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 00558bee86..336f815910 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 11:59+0200\n" +"PO-Revision-Date: 2011-06-16 12:00+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4994,10 +4994,9 @@ msgid "Drag to reorder" msgstr "" #: libraries/display_tbl.lib.php:412 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "Πατήστε για επιλογή" +msgstr "Πατήστε για ταξινόμηση" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" From c772fc6deafd7c5fbcd149457458482f54600907 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:00:19 +0200 Subject: [PATCH 085/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 336f815910..13687a4c3f 100644 --- a/po/el.po +++ b/po/el.po @@ -8106,10 +8106,9 @@ msgid "wildcard" msgstr "μπαλαντέρ" #: server_privileges.php:2295 -#, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." -msgstr "Η προβολή %s διαγράφτηκε" +msgstr "Ο χρήστης προστέθηκε." #: server_replication.php:49 msgid "Unknown error" From 0d02375b981ec408d6e73cc69d341ad9a0f71210 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:00:42 +0200 Subject: [PATCH 086/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 13687a4c3f..15675aa57f 100644 --- a/po/el.po +++ b/po/el.po @@ -8367,10 +8367,9 @@ msgid "Runtime Information" msgstr "Πληροφορίες εκτέλεσης" #: server_status.php:371 -#, fuzzy #| msgid "Server Choice" msgid "Server traffic" -msgstr "Επιλογή Διακομιστή" +msgstr "Κυκλοφορία Διακομιστή" #: server_status.php:372 msgid "Query statistics" From 5461d46c6e8c08b64781963d76e0877f1bdeb62c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:01:01 +0200 Subject: [PATCH 087/340] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 15675aa57f..211c66b652 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:00+0200\n" +"PO-Revision-Date: 2011-06-16 12:01+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -8376,10 +8376,9 @@ msgid "Query statistics" msgstr "Στατιστικά ερωτήματος" #: server_status.php:373 -#, fuzzy #| msgid "See slave status table" msgid "All status variables" -msgstr "Δείτε τον πίνακα κατάστασης δευτερεύοντος" +msgstr "Όλες οι μεταβλητές κατάστασης" #: server_status.php:383 server_status.php:416 #, fuzzy From f00941c287c78f8f3f8163cfe7b263552b1d7c6f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:01:16 +0200 Subject: [PATCH 088/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 211c66b652..41331d9963 100644 --- a/po/el.po +++ b/po/el.po @@ -8381,10 +8381,9 @@ msgid "All status variables" msgstr "Όλες οι μεταβλητές κατάστασης" #: server_status.php:383 server_status.php:416 -#, fuzzy #| msgid "Refresh" msgid "Refresh rate" -msgstr "Ανανέωση" +msgstr "Ρυθμός ανανέωσης" #: server_status.php:384 server_status.php:417 #, fuzzy From 5e2e85b0b2359a2dec295a6420aafd3c480f9c46 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:01:30 +0200 Subject: [PATCH 089/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 41331d9963..a16778f65d 100644 --- a/po/el.po +++ b/po/el.po @@ -8386,10 +8386,9 @@ msgid "Refresh rate" msgstr "Ρυθμός ανανέωσης" #: server_status.php:384 server_status.php:417 -#, fuzzy #| msgid "Second" msgid "second" -msgstr "Δευτερόλεπτο" +msgstr "δευτερόλεπτο" #: server_status.php:385 server_status.php:386 server_status.php:387 #: server_status.php:388 server_status.php:389 server_status.php:418 From b4fcb499e0c080e92496994e1331676f6d3cc5d4 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:01:43 +0200 Subject: [PATCH 090/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index a16778f65d..5d76ed2465 100644 --- a/po/el.po +++ b/po/el.po @@ -8394,10 +8394,9 @@ msgstr "δευτερόλεπτο" #: server_status.php:388 server_status.php:389 server_status.php:418 #: server_status.php:419 server_status.php:420 server_status.php:421 #: server_status.php:422 -#, fuzzy #| msgid "Second" msgid "seconds" -msgstr "Δευτερόλεπτο" +msgstr "δευτερόλεπτα" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 From 3b6a21d28220d1c40c51a50288982dbf363c3525 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:01:53 +0200 Subject: [PATCH 091/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 5d76ed2465..e7024a2201 100644 --- a/po/el.po +++ b/po/el.po @@ -8401,10 +8401,9 @@ msgstr "δευτερόλεπτα" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 #: server_status.php:425 server_status.php:426 -#, fuzzy #| msgid "Minute" msgid "minutes" -msgstr "Λεπτό" +msgstr "λεπτά" #: server_status.php:446 #, fuzzy From 7a3fe9022ef6a56fc38ce0d49160ecacde53a659 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:02:15 +0200 Subject: [PATCH 092/340] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index e7024a2201..bcb76be787 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:01+0200\n" +"PO-Revision-Date: 2011-06-16 12:02+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -8406,10 +8406,9 @@ msgid "minutes" msgstr "λεπτά" #: server_status.php:446 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "Διατήρηση κωδικού πρόσβασης" +msgstr "Να περιλαμβάνει τη λέξη:" #: server_status.php:451 #, fuzzy From cd039460f6e051daf46023612441a09a54d81021 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:02:36 +0200 Subject: [PATCH 093/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index bcb76be787..05de366ffe 100644 --- a/po/el.po +++ b/po/el.po @@ -8411,10 +8411,9 @@ msgid "Containing the word:" msgstr "Να περιλαμβάνει τη λέξη:" #: server_status.php:451 -#, fuzzy #| msgid "Show open tables" msgid "Show only alert values" -msgstr "Εμφάνιση ανοιχτών πινάκων" +msgstr "Εμφάνιση μόνο τιμών ειδοποίησης" #: server_status.php:455 msgid "Filter by category..." From de6e4d611379ca5469223f3250ef9a9df62a7cac Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:02:49 +0200 Subject: [PATCH 094/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 05de366ffe..4bd8054a27 100644 --- a/po/el.po +++ b/po/el.po @@ -8420,10 +8420,9 @@ msgid "Filter by category..." msgstr "" #: server_status.php:468 -#, fuzzy #| msgid "Related Links" msgid "Related links:" -msgstr "Σχετικοί Σύνδεσμοι" +msgstr "Σχετικοί σύνδεσμοι:" #: server_status.php:513 server_status.php:545 server_status.php:666 #: server_status.php:711 From 76f49010ee44484e1994545ac0b113c377c9480d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:03:08 +0200 Subject: [PATCH 095/340] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4bd8054a27..0358c3c123 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:02+0200\n" +"PO-Revision-Date: 2011-06-16 12:03+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -8531,7 +8531,7 @@ msgstr "Διεργασίες" #: server_status.php:785 msgid "ID" -msgstr "ID" +msgstr "Κωδικός" #: server_status.php:846 #, fuzzy From 4b4f2abaea703f2638099e127854193256424ba0 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:03:40 +0200 Subject: [PATCH 096/340] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 0358c3c123..6e57fab1ee 100644 --- a/po/el.po +++ b/po/el.po @@ -8534,10 +8534,10 @@ msgid "ID" msgstr "Κωδικός" #: server_status.php:846 -#, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Ενεργοποιεί/Απενεργοποιεί το SSL για σύνδεση στο διακομιστή MySQL." +msgstr "" +"Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL." #: server_status.php:847 msgid "" From 9e06738a93c7c761a120ed15ddfb1295d223fb0d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:04:05 +0200 Subject: [PATCH 097/340] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 6e57fab1ee..65e3e76526 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:03+0200\n" +"PO-Revision-Date: 2011-06-16 12:04+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9799,10 +9799,9 @@ msgid "Line" msgstr "Γραμμή" #: tbl_chart.php:88 -#, fuzzy #| msgid "Inline" msgid "Spline" -msgstr "Εσωτερικό" +msgstr "Καμπύλη γραμμή" #: tbl_chart.php:89 msgid "Pie" From 7332cd13a5cd20802f729f1a89296fd4691ce029 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:04:20 +0200 Subject: [PATCH 098/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 65e3e76526..ae5c3b1695 100644 --- a/po/el.po +++ b/po/el.po @@ -9812,10 +9812,9 @@ msgid "Stacked" msgstr "Σταθεροποιημένο" #: tbl_chart.php:94 -#, fuzzy #| msgid "Report title:" msgid "Chart title" -msgstr "Τίτλος αναφοράς:" +msgstr "Τίτλος διαγράμματος" #: tbl_chart.php:99 msgid "X-Axis:" From 81a7918e388d0fc998c6d4e7fb267d38188e35c7 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:04:30 +0200 Subject: [PATCH 099/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index ae5c3b1695..8fab0e1980 100644 --- a/po/el.po +++ b/po/el.po @@ -9821,10 +9821,9 @@ msgid "X-Axis:" msgstr "" #: tbl_chart.php:113 -#, fuzzy #| msgid "SQL queries" msgid "Series:" -msgstr "Ερωτήματα SQL" +msgstr "Σειρές:" #: tbl_chart.php:115 #, fuzzy From 747af41e6527c9fc42d60c4b4e0c9e22ea82ae42 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:04:46 +0200 Subject: [PATCH 100/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 8fab0e1980..a901d950d0 100644 --- a/po/el.po +++ b/po/el.po @@ -9826,10 +9826,9 @@ msgid "Series:" msgstr "Σειρές:" #: tbl_chart.php:115 -#, fuzzy #| msgid "Textarea columns" msgid "The remaining columns" -msgstr "Στήλες περιοχής κειμένου (textarea)" +msgstr "Οι απομένουσες στήλες" #: tbl_chart.php:128 #, fuzzy From 8fe0060a99cf6b017c7f4fc6168e69ee4bef392d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:04:55 +0200 Subject: [PATCH 101/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index a901d950d0..a9031407ed 100644 --- a/po/el.po +++ b/po/el.po @@ -9831,10 +9831,9 @@ msgid "The remaining columns" msgstr "Οι απομένουσες στήλες" #: tbl_chart.php:128 -#, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" -msgstr "Ετικέτα άξονα Χ" +msgstr "Ετικέτα άξονα Χ:" #: tbl_chart.php:128 #, fuzzy From 904c172b0dc5267e379bfbe6e6f75d04d4eac895 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:05:07 +0200 Subject: [PATCH 102/340] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index a9031407ed..e7de4e4058 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:04+0200\n" +"PO-Revision-Date: 2011-06-16 12:05+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9836,10 +9836,9 @@ msgid "X-Axis label:" msgstr "Ετικέτα άξονα Χ:" #: tbl_chart.php:128 -#, fuzzy #| msgid "Value" msgid "X Values" -msgstr "Τιμή" +msgstr "Τιμές Χ" #: tbl_chart.php:129 #, fuzzy From 0d04137f384a5dbac1eb8c1736319e1e8a7d8cb3 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:05:13 +0200 Subject: [PATCH 103/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index e7de4e4058..757b8353eb 100644 --- a/po/el.po +++ b/po/el.po @@ -9841,10 +9841,9 @@ msgid "X Values" msgstr "Τιμές Χ" #: tbl_chart.php:129 -#, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" -msgstr "Ετικέτα άξονα Υ" +msgstr "Ετικέτα άξονα Υ:" #: tbl_chart.php:129 #, fuzzy From 302a8b16b012cf86775a3ef59140260aa7e82d14 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:05:28 +0200 Subject: [PATCH 104/340] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 757b8353eb..bc9011e48b 100644 --- a/po/el.po +++ b/po/el.po @@ -9846,10 +9846,9 @@ msgid "Y-Axis label:" msgstr "Ετικέτα άξονα Υ:" #: tbl_chart.php:129 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "Τιμή" +msgstr "Τιμές Υ" #: tbl_create.php:56 #, php-format From 9686c57d99b9f2e1520efa89f0bcc82d9188c5ba Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:06:32 +0200 Subject: [PATCH 105/340] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index bc9011e48b..4dce0f9a92 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:05+0200\n" +"PO-Revision-Date: 2011-06-16 12:06+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1068,7 +1068,7 @@ msgstr "Διάγραμμα τρέχοντος ερωτήματος" #: js/messages.php:68 msgid "Static data" -msgstr "" +msgstr "Στατικά δεδομένα" #. l10n: Total number of queries #: js/messages.php:70 libraries/build_html_for_db.lib.php:45 From f2b85cab7937a7545ce6ef1934812ca9604f9b1f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:06:51 +0200 Subject: [PATCH 106/340] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 4dce0f9a92..f80307dee4 100644 --- a/po/el.po +++ b/po/el.po @@ -1081,7 +1081,7 @@ msgstr "Σύνολο" #. l10n: Other, small valued, queries #: js/messages.php:72 server_status.php:592 msgid "Other" -msgstr "" +msgstr "Άλλα" #. l10n: Thousands separator #: js/messages.php:74 libraries/common.lib.php:1375 From 250ed7d7b4d8487e19cbe605f2b18f5868b97c9b Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:08:00 +0200 Subject: [PATCH 107/340] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index f80307dee4..49ebdbdfdb 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:06+0200\n" +"PO-Revision-Date: 2011-06-16 12:08+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -2601,6 +2601,8 @@ msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" +"Απενεργοποιεί τις λειτουργίες μαζικής συντήρησης πινάκων, όλως " +"βελτιστοποίηση ή επισκευή των επιλεγμένων πινάκων μιας βάσης δεδομένων." #: libraries/config/messages.inc.php:61 #| msgid "Table maintenance" From 9f40d99a600838d2947d13dbf4017f1337cccc75 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:09:08 +0200 Subject: [PATCH 108/340] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 49ebdbdfdb..f1ccbc9165 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:08+0200\n" +"PO-Revision-Date: 2011-06-16 12:09+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4993,7 +4993,7 @@ msgstr "Επαναφορά κατανομής στηλών" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" -msgstr "" +msgstr "Σύρτε για ανακατανομή" #: libraries/display_tbl.lib.php:412 #| msgid "Click to select" From b1a412629f54b382c430f1cf42f06decfe88763f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:11:16 +0200 Subject: [PATCH 109/340] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index f1ccbc9165..9da6aa30d0 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:09+0200\n" +"PO-Revision-Date: 2011-06-16 12:11+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5002,7 +5002,7 @@ msgstr "Πατήστε για ταξινόμηση" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" -msgstr "" +msgstr "Πατήστε για εναλλαγή επισήμανσης" #: libraries/display_tbl.lib.php:425 #, php-format From dd99336a0fbe697fe1dad8ce6d84bdcab5baa838 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:11:39 +0200 Subject: [PATCH 110/340] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 9da6aa30d0..f5189c700b 100644 --- a/po/el.po +++ b/po/el.po @@ -8419,7 +8419,7 @@ msgstr "Εμφάνιση μόνο τιμών ειδοποίησης" #: server_status.php:455 msgid "Filter by category..." -msgstr "" +msgstr "Φιλτράρισμα ανά κατηγορία..." #: server_status.php:468 #| msgid "Related Links" From 52d72385daa72b189c25d636b035d939eea6200c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:11:54 +0200 Subject: [PATCH 111/340] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index f5189c700b..212292ce5f 100644 --- a/po/el.po +++ b/po/el.po @@ -8446,7 +8446,7 @@ msgstr "Τύπος ερωτήματος" #. l10n: # = Amount of queries #: server_status.php:543 msgid "#" -msgstr "" +msgstr "#" #: server_status.php:615 #, php-format From 28482741d736977e0d2ff7b924a13d2e92ba7630 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:12:39 +0200 Subject: [PATCH 112/340] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 212292ce5f..2dd22485d0 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:11+0200\n" +"PO-Revision-Date: 2011-06-16 12:12+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -8451,7 +8451,7 @@ msgstr "#" #: server_status.php:615 #, php-format msgid "Network traffic since startup: %s" -msgstr "" +msgstr "Κυκλοφορία δικτύου από την εκκίνηση: %s" #: server_status.php:623 #, php-format From b51748a23f487bba16d5d0bf1fc66e34c84f6427 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:13:47 +0200 Subject: [PATCH 113/340] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 2dd22485d0..7304deca72 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:12+0200\n" +"PO-Revision-Date: 2011-06-16 12:13+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -8561,6 +8561,8 @@ msgstr "" msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" +"Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή " +"MySQL." #: server_status.php:850 msgid "" From da83ebed1939dcff4422a013ea2a267b6f95ddf4 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:14:26 +0200 Subject: [PATCH 114/340] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 7304deca72..23fc7eaf1d 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:13+0200\n" +"PO-Revision-Date: 2011-06-16 12:14+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9010,6 +9010,8 @@ msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" +"Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση " +"του διακομιστή." #: server_status.php:921 msgid "The number of rows waiting to be written in INSERT DELAYED queues." From e83729045cade4ce5897db01afa5da5cda0cf263 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:16:35 +0200 Subject: [PATCH 115/340] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 23fc7eaf1d..9b209e2955 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:14+0200\n" +"PO-Revision-Date: 2011-06-16 12:16+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9047,6 +9047,9 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" +"Ο αριθμός των ελεύθερων μπλόκς στη λανθάνουσα μνήμη ερωτημάτων. Υψηλές τιμές " +"ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας " +"την εντολή FLUSH QUERY CACHE." #: server_status.php:927 msgid "The amount of free memory for query cache." From 69f4672625e26f948664c8b6423b175e1ffd67b4 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:16:48 +0200 Subject: [PATCH 116/340] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 9b209e2955..d21eecf151 100644 --- a/po/el.po +++ b/po/el.po @@ -9827,7 +9827,7 @@ msgstr "Τίτλος διαγράμματος" #: tbl_chart.php:99 msgid "X-Axis:" -msgstr "" +msgstr "Άξονας Χ" #: tbl_chart.php:113 #| msgid "SQL queries" From a3cab00a52658b7d5c1db47780f1999f93a2357a Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 16 Jun 2011 12:17:02 +0200 Subject: [PATCH 117/340] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index d21eecf151..212d745a20 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 12:16+0200\n" +"PO-Revision-Date: 2011-06-16 12:17+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9827,7 +9827,7 @@ msgstr "Τίτλος διαγράμματος" #: tbl_chart.php:99 msgid "X-Axis:" -msgstr "Άξονας Χ" +msgstr "Άξονας Χ:" #: tbl_chart.php:113 #| msgid "SQL queries" From 99bae4acb9a94c93ca31c8d49eb9a771f34aad54 Mon Sep 17 00:00:00 2001 From: Jacob Middag Date: Thu, 16 Jun 2011 07:57:09 -0400 Subject: [PATCH 118/340] patch #3317206 [privileges] Generate password option missing on new accounts --- ChangeLog | 1 + server_privileges.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5e40b2e14f..0ae3c2e9aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog - patch #3313326 [interface] Some tooltips do not disappear - bug #3315720 [search] Fix search in non unicode tables - bug #3315741 [display] Inline query edit broken +- patch #3317206 [privileges] Generate password option missing on new accounts 3.4.2.0 (2011-06-07) - bug #3301249 [interface] Iconic table operations does not remove inline edit label diff --git a/server_privileges.php b/server_privileges.php index 7e60f09709..81de01f7e7 100644 --- a/server_privileges.php +++ b/server_privileges.php @@ -1698,7 +1698,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs unset ($row); echo '
' . "\n" - . ' ' . "\n" + . ' ' . "\n" . PMA_getIcon('b_usradd.png') . ' ' . __('Add a new User') . '' . "\n" . '
' . "\n"; From ab5d9b278a2360fcce78dd8a5b0142a46a14fa18 Mon Sep 17 00:00:00 2001 From: Tyron Madlener Date: Thu, 16 Jun 2011 15:03:04 +0200 Subject: [PATCH 119/340] Cleaned up code --- js/messages.php | 13 ++ js/server_status.js | 191 ++++++++++++++---------- server_status.php | 150 ++++++++----------- themes/original/css/theme_right.css.php | 4 + themes/pmahomme/css/theme_right.css.php | 33 +++- 5 files changed, 222 insertions(+), 169 deletions(-) diff --git a/js/messages.php b/js/messages.php index 01aede4630..7ec366f9cb 100644 --- a/js/messages.php +++ b/js/messages.php @@ -61,6 +61,8 @@ $js_messages['strRemovingSelectedUsers'] = __('Removing Selected Users'); $js_messages['strClose'] = __('Close'); /* for server_status.js */ +$js_messages['strEdit'] = __('Edit'); + $js_messages['strLiveTrafficChart'] = __('Live traffic chart'); $js_messages['strLiveConnChart'] = __('Live conn./process chart'); $js_messages['strLiveQueryChart'] = __('Live query chart'); @@ -75,6 +77,17 @@ $js_messages['strThousandsSeperator'] = __(','); /* l10n: Decimal separator */ $js_messages['strDecimalSeperator'] = __('.'); +$js_messages['strChartKBSent'] = __('kB sent since last refresh'); +$js_messages['strChartKBReceived'] = __('kB received since last refresh'); +$js_messages['strChartServerTraffic'] = __('Server traffic (in kB)'); +$js_messages['strChartConnections'] = __('Connections since last refresh'); +$js_messages['strChartProcesses'] = __('Processes'); +$js_messages['strChartConnectionsTitle'] = __('Connections / Processes'); +$js_messages['strChartIssuedQueries'] = __('Issued queries since last refresh'); +$js_messages['strChartIssuedQueriesTitle'] = __('Issued queries'); + +$js_messages['strChartQueryPie'] = __('Query statistics'); + /* For inline query editing */ $js_messages['strGo'] = __('Go'); $js_messages['strCancel'] = __('Cancel'); diff --git a/js/server_status.js b/js/server_status.js index 4413c80ceb..08b2b43b4c 100644 --- a/js/server_status.js +++ b/js/server_status.js @@ -21,9 +21,13 @@ $(function() { return /^[0-9]?[0-9,\.]*\s?(k|M|G|T|%)?$/.test(s); }, format: function(s) { - var num = jQuery.tablesorter.formatFloat( s.replace(PMA_messages['strThousandsSeperator'],'').replace(PMA_messages['strDecimalSeperator'],'.') ); + var num = jQuery.tablesorter.formatFloat( + s.replace(PMA_messages['strThousandsSeperator'],'') + .replace(PMA_messages['strDecimalSeperator'],'.') + ); + var factor = 1; - switch (s.charAt(s.length-1)) { + switch (s.charAt(s.length - 1)) { case '%': factor = -2; break; // Todo: Complete this list (as well as in the regexp a few lines up) case 'k': factor = 3; break; @@ -31,7 +35,8 @@ $(function() { case 'G': factor = 9; break; case 'T': factor = 12; break; } - return num*Math.pow(10,factor); + + return num * Math.pow(10,factor); }, type: "numeric" }); @@ -45,12 +50,16 @@ $(function() { var odd_row=false; var text=''; // Holds filter text var queryPieChart = null; - /* Chart configuration */ + /* Chart configuration */ // Defines what the tabs are currently displaying (realtime or data) var tabStatus = new Object(); // Holds the current chart instances for each tab var tabChart = new Object(); + + $.ajaxSetup({ + cache:false + }); // Add tabs $('#serverStatusTabs').tabs({ @@ -69,12 +78,23 @@ $(function() { tabStatus[$(this).attr('id')] = 'static'; }); + // Handles refresh rate changing $('.statuslinks select').change(function() { var chart=tabChart[$(this).parents('div.ui-tabs-panel').attr('id')]; chart.options.realtime.refreshRate = 1000*parseInt(this.value); - chart.xAxis[0].setExtremes(new Date().getTime() - chart.options.realtime.numMaxPoints * chart.options.realtime.refreshRate, chart.xAxis[0].getExtremes().max, true); + + chart.xAxis[0].setExtremes( + new Date().getTime() - chart.options.realtime.numMaxPoints * chart.options.realtime.refreshRate, + chart.xAxis[0].getExtremes().max, + true + ); + + // Clear current timeout and set timeout with the new refresh rate clearTimeout(chart_activeTimeouts[chart.options.chart.renderTo]); - chart_activeTimeouts[chart.options.chart.renderTo] = setTimeout(chart.options.realtime.timeoutCallBack, chart.options.realtime.refreshRate); + chart_activeTimeouts[chart.options.chart.renderTo] = setTimeout( + chart.options.realtime.timeoutCallBack, + chart.options.realtime.refreshRate + ); }); // Ajax refresh of variables (always the first element in each tab) @@ -107,26 +127,32 @@ $(function() { if(tabstat=='static' || tabstat=='liveconnections') { var settings = { - series: [{name:'kB sent since last refresh',data:[]},{name:'kB received since last refresh',data:[]}], - title: {text:'Server traffic (in kB)'}, - realtime:{ url:'server_status.php?'+url_query, + series: [ + { name: PMA_messages['strChartKBSent'], data: [] }, + { name: PMA_messages['strChartKBReceived'], data: [] } + ], + title: { text: PMA_messages['strChartServerTraffic'] }, + realtime: { url:'server_status.php?' + url_query, type: 'traffic', - callback: function(chartObj, curVal, lastVal,numLoadedPoints) { + callback: function(chartObj, curVal, lastVal, numLoadedPoints) { if(lastVal==null) return; chartObj.series[0].addPoint( - { x:curVal.x, y:(curVal.y_sent-lastVal.y_sent)/1024}, - false, numLoadedPoints >= chartObj.options.realtime.numMaxPoints + { x: curVal.x, y: (curVal.y_sent - lastVal.y_sent) / 1024 }, + false, + numLoadedPoints >= chartObj.options.realtime.numMaxPoints ); chartObj.series[1].addPoint( - { x:curVal.x, y:(curVal.y_received-lastVal.y_received)/1024}, - true, numLoadedPoints >= chartObj.options.realtime.numMaxPoints + { x: curVal.x, y: (curVal.y_received - lastVal.y_received) / 1024 }, + true, + numLoadedPoints >= chartObj.options.realtime.numMaxPoints ); } - } + } } setupLiveChart($tab,this,settings); - if(tabstat=='liveconnections') $tab.find('.statuslinks a.liveconnectionsLink').html(PMA_messages['strLiveConnChart']); + if(tabstat == 'liveconnections') + $tab.find('.statuslinks a.liveconnectionsLink').html(PMA_messages['strLiveConnChart']); tabStatus[$tab.attr('id')]='livetraffic'; } else { $(this).html(PMA_messages['strLiveTrafficChart']); @@ -141,28 +167,34 @@ $(function() { var $tab=$(this).parents('div.ui-tabs-panel'); var tabstat = tabStatus[$tab.attr('id')]; - if(tabstat=='static' || tabstat=='livetraffic') { + if(tabstat == 'static' || tabstat == 'livetraffic') { var settings = { - series: [{name:'Connections since last refresh', data:[]},{name:'Processes', data:[]}], - title: {text:'Connections / Processes'}, - realtime:{ url:'server_status.php?'+url_query, + series: [ + { name: PMA_messages['strChartConnections'], data: [] }, + { name: PMA_messages['strChartProcesses'], data: [] } + ], + title: { text: PMA_messages['strChartConnectionsTitle'] }, + realtime: { url:'server_status.php?'+url_query, type: 'proc', callback: function(chartObj, curVal, lastVal,numLoadedPoints) { if(lastVal==null) return; chartObj.series[0].addPoint( - { x:curVal.x, y:curVal.y_conn-lastVal.y_conn }, - false, numLoadedPoints >= chartObj.options.realtime.numMaxPoints + { x: curVal.x, y: curVal.y_conn - lastVal.y_conn }, + false, + numLoadedPoints >= chartObj.options.realtime.numMaxPoints ); chartObj.series[1].addPoint( - { x:curVal.x, y:curVal.y_proc }, - true, numLoadedPoints >= chartObj.options.realtime.numMaxPoints + { x: curVal.x, y: curVal.y_proc }, + true, + numLoadedPoints >= chartObj.options.realtime.numMaxPoints ); } - } + } }; setupLiveChart($tab,this,settings); - if(tabstat=='livetraffic') $tab.find('.statuslinks a.livetrafficLink').html(PMA_messages['strLiveTrafficChart']); + if(tabstat == 'livetraffic') + $tab.find('.statuslinks a.livetrafficLink').html(PMA_messages['strLiveTrafficChart']); tabStatus[$tab.attr('id')]='liveconnections'; } else { $(this).html(PMA_messages['strLiveConnChart']); @@ -172,62 +204,63 @@ $(function() { return false; }); - // Live query charting + // Live query statistics $('.statuslinks a.livequeriesLink').click(function() { - var $tab=$(this).parents('div.ui-tabs-panel'); - var settings=null; + var $tab = $(this).parents('div.ui-tabs-panel'); + var settings = null; - if(tabStatus[$tab.attr('id')]=='static') { + if(tabStatus[$tab.attr('id')] == 'static') { settings = { - series: [{name:'Issued queries since last refresh', data:[]}], - title: {text:'Issued queries'}, + series: [ { name: PMA_messages['strChartIssuedQueries'], data: [] } ], + title: { text: PMA_messages['strChartIssuedQueriesTitle'] }, tooltip: { formatter:function() { return this.point.name; } }, - realtime:{ url:'server_status.php?'+url_query, + realtime: { url:'server_status.php?'+url_query, type: 'queries', callback: function(chartObj, curVal, lastVal,numLoadedPoints) { - if(lastVal==null) return; + if(lastVal == null) return; chartObj.series[0].addPoint( - { x:curVal.x, y:curVal.y-lastVal.y, name:sortedQueriesPointInfo(curVal,lastVal) }, - true, numLoadedPoints >= chartObj.options.realtime.numMaxPoints + { x: curVal.x, y: curVal.y - lastVal.y, name: sortedQueriesPointInfo(curVal,lastVal) }, + true, + numLoadedPoints >= chartObj.options.realtime.numMaxPoints ); } - } + } }; } else { $(this).html(PMA_messages['strLiveQueryChart']); } setupLiveChart($tab,this,settings); - tabStatus[$tab.attr('id')]='livequeries'; + tabStatus[$tab.attr('id')] = 'livequeries'; return false; }); function setupLiveChart($tab,link,settings) { - if(settings!=null) { + if(settings != null) { // Loading a chart with existing chart => remove old chart first - if(tabStatus[$tab.attr('id')]!='static') { - clearTimeout(chart_activeTimeouts[$tab.attr('id')+"_chart_cnt"]); - chart_activeTimeouts[$tab.attr('id')+"_chart_cnt"]=null; + if(tabStatus[$tab.attr('id')] != 'static') { + clearTimeout(chart_activeTimeouts[$tab.attr('id') + "_chart_cnt"]); + chart_activeTimeouts[$tab.attr('id')+"_chart_cnt"] = null; tabChart[$tab.attr('id')].destroy(); // Also reset the select list - $tab.find('.statuslinks select').get(0).selectedIndex=0; + $tab.find('.statuslinks select').get(0).selectedIndex = 0; } - if(!settings.chart) settings.chart = {}; - settings.chart.renderTo=$tab.attr('id')+"_chart_cnt"; + if(! settings.chart) settings.chart = {}; + settings.chart.renderTo = $tab.attr('id') + "_chart_cnt"; $tab.find('.tabInnerContent') .hide() - .after('
'); - tabChart[$tab.attr('id')]=PMA_createChart(settings); + .after('
'); + tabChart[$tab.attr('id')] = PMA_createChart(settings); $(link).html(PMA_messages['strStaticData']); $tab.find('.statuslinks a.tabRefresh').hide(); $tab.find('.statuslinks select').show(); } else { - clearTimeout(chart_activeTimeouts[$tab.attr('id')+"_chart_cnt"]); - chart_activeTimeouts[$tab.attr('id')+"_chart_cnt"]=null; + clearTimeout(chart_activeTimeouts[$tab.attr('id') + "_chart_cnt"]); + chart_activeTimeouts[$tab.attr('id') + "_chart_cnt"]=null; $tab.find('.tabInnerContent').show(); - $tab.find('div#'+$tab.attr('id')+'_chart_cnt').remove(); + $tab.find('div#'+$tab.attr('id') + '_chart_cnt').remove(); tabStatus[$tab.attr('id')]='static'; tabChart[$tab.attr('id')].destroy(); $tab.find('.statuslinks a.tabRefresh').show(); @@ -243,9 +276,10 @@ $(function() { }); $('#filterText').keyup(function(e) { - if($(this).val().length==0) textFilter=null; - else textFilter = new RegExp("(^|_)"+$(this).val(),'i'); - text=$(this).val(); + if($(this).val().length == 0) textFilter = null; + else textFilter = new RegExp("(^|_)" + $(this).val(),'i'); + + text = $(this).val(); filterVariables(); }); @@ -258,11 +292,11 @@ $(function() { function initTab(tab,data) { switch(tab.attr('id')) { case 'statustabs_traffic': - if(data!=null) tab.find('.tabInnerContent').html(data); + if(data != null) tab.find('.tabInnerContent').html(data); initTooltips(); break; case 'statustabs_queries': - if(data!=null) { + if(data != null) { queryPieChart.destroy(); tab.find('.tabInnerContent').html(data); } @@ -273,10 +307,9 @@ $(function() { cdata.push([key,parseInt(value)]); }); - queryPieChart=PMA_createChart({ + queryPieChart = PMA_createChart({ chart: { renderTo: 'serverstatusquerieschart' - }, title: { text:'', @@ -284,7 +317,7 @@ $(function() { }, series: [{ type:'pie', - name: 'Query statistics', + name: PMA_messages['strChartQueryPie'], data: cdata }], plotOptions: { @@ -293,20 +326,22 @@ $(function() { cursor: 'pointer', dataLabels: { enabled: true, - formatter: function() { - return ''+ this.point.name +'
'+ Highcharts.numberFormat(this.percentage, 2) +' %'; + formatter: function() { + return ''+ this.point.name +'
' + Highcharts.numberFormat(this.percentage, 2) + ' %'; } } } }, tooltip: { - formatter: function() { return ''+ this.point.name +'
'+Highcharts.numberFormat(this.y, 2)+'
('+Highcharts.numberFormat(this.percentage, 2) +' %)'; } + formatter: function() { + return '' + this.point.name + '
' + Highcharts.numberFormat(this.y, 2) + '
(' + Highcharts.numberFormat(this.percentage, 2) + ' %)'; + } } }); break; case 'statustabs_allvars': - if(data!=null) { + if(data != null) { tab.find('.tabInnerContent').html(data); filterVariables(); } @@ -329,7 +364,7 @@ $(function() { }); $('#serverstatusqueriesdetails tr:first th') - .append(''); + .append(''); break; @@ -343,7 +378,7 @@ $(function() { }); $('#serverstatusvariables tr:first th') - .append(''); + .append(''); break; } @@ -351,14 +386,14 @@ $(function() { /* Filters the status variables by name/category/alert in the variables tab */ function filterVariables() { - var useful_links=0; + var useful_links = 0; var section = text; - if(categoryFilter.length>0) section = categoryFilter; + if(categoryFilter.length > 0) section = categoryFilter; - if(section.length>1) { + if(section.length > 1) { $('#linkSuggestions span').each(function() { - if($(this).attr('class').indexOf('status_'+section)!=-1) { + if($(this).attr('class').indexOf('status_'+section) != -1) { useful_links++; $(this).css('display',''); } else { @@ -369,16 +404,16 @@ $(function() { }); } - if(useful_links>0) + if(useful_links > 0) $('#linkSuggestions').css('display',''); else $('#linkSuggestions').css('display','none'); odd_row=false; $('#serverstatusvariables th.name').each(function() { - if((textFilter==null || textFilter.exec($(this).text())) - && (!alertFilter || $(this).next().find('span.attention').length>0) - && (categoryFilter.length==0 || $(this).parent().hasClass('s_'+categoryFilter))) { - odd_row = !odd_row; + if((textFilter == null || textFilter.exec($(this).text())) + && (! alertFilter || $(this).next().find('span.attention').length>0) + && (categoryFilter.length == 0 || $(this).parent().hasClass('s_'+categoryFilter))) { + odd_row = ! odd_row; $(this).parent().css('display',''); if(odd_row) { $(this).parent().addClass('odd'); @@ -406,22 +441,22 @@ $(function() { if(value-lastQueries.pointInfo[key] > 0) { queryKeys.push(key); queryValues.push(value-lastQueries.pointInfo[key]); - sumTotal+=value-lastQueries.pointInfo[key]; + sumTotal += value-lastQueries.pointInfo[key]; } }); var numQueries = queryKeys.length; var pointInfo = '' + PMA_messages['strTotal'] + ': ' + sumTotal + '
'; while(queryKeys.length > 0) { - max=0; - for(var i=0; i max) { max = queryValues[i]; maxIdx = i; } } - if(numQueries > 8 && num>=6) - sumOther+=queryValues[maxIdx]; + if(numQueries > 8 && num >= 6) + sumOther += queryValues[maxIdx]; else pointInfo += queryKeys[maxIdx].substr(4).replace('_',' ') + ': ' + queryValues[maxIdx] + '
'; queryKeys.splice(maxIdx,1); diff --git a/server_status.php b/server_status.php index 0b8a725836..28678f49a2 100644 --- a/server_status.php +++ b/server_status.php @@ -15,17 +15,17 @@ if (! defined('PMA_NO_VARIABLES_IMPORT')) { define('PMA_NO_VARIABLES_IMPORT', true); } +if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request']==true) + $GLOBALS['is_header_sent'] = true; + require_once './libraries/common.inc.php'; /** * Ajax request */ -if (isset($_REQUEST['ajax_request'])) { - // Prevent ajax requests from being cached - header('Cache-Control: no-cache, must-revalidate'); // HTTP/1.1 - header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past - // Send correct charset +if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request']==true) { + // Send with correct charset header('Content-Type: text/html; charset=UTF-8'); // real-time charting data @@ -36,7 +36,12 @@ if (isset($_REQUEST['ajax_request'])) { $result = PMA_DBI_query('SHOW PROCESSLIST'); $num_procs = PMA_DBI_num_rows($result); - $ret = Array('x'=>(microtime(true)*1000),'y_proc'=>$num_procs,'y_conn'=>$c['Connections']); + $ret = array( + 'x' => microtime(true)*1000, + 'y_proc' => $num_procs, + 'y_conn' => $c['Connections'] + ); + exit(json_encode($ret)); case 'queries': $queries = PMA_DBI_fetch_result('SHOW GLOBAL STATUS WHERE Variable_name LIKE "Com_%" AND Value>0', 0, 1); @@ -45,12 +50,22 @@ if (isset($_REQUEST['ajax_request'])) { unset($queries['Com_admin_commands']); $sum=array_sum($queries); - $ret = Array('x'=>(microtime(true)*1000),'y'=>$sum,'pointInfo'=>$queries); + $ret = array( + 'x' => microtime(true)*1000, + 'y' => $sum, + 'pointInfo' => $queries + ); + exit(json_encode($ret)); case 'traffic': $traffic = PMA_DBI_fetch_result('SHOW GLOBAL STATUS WHERE Variable_name="Bytes_received" OR Variable_name="Bytes_sent"', 0, 1); - $ret = Array('x'=>(microtime(true)*1000),'y_sent'=>$traffic['Bytes_sent'],'y_received'=>$traffic['Bytes_received']); + $ret = array( + 'x' => microtime(true)*1000, + 'y_sent' => $traffic['Bytes_sent'], + 'y_received' => $traffic['Bytes_received'] + ); + exit(json_encode($ret)); } @@ -294,17 +309,17 @@ $links['innodb']['doc'] = 'innodb'; // Variable to contain all com_ variables -$used_queries = Array(); +$used_queries = array(); // Variable to map variable names to their respective section name (used for js category filtering) -$allocationMap = Array(); +$allocationMap = array(); // sort vars into arrays foreach ($server_status as $name => $value) { foreach ($allocations as $filter => $section) { if (strpos($name, $filter) !== FALSE) { $allocationMap[$name] = $section; - if($section=='com' && $value>0) $used_queries[$name] = $value; + if($section == 'com' && $value > 0) $used_queries[$name] = $value; break; // Only exits inner loop } } @@ -495,30 +510,32 @@ echo __('Runtime Information'); function printQueryStatistics() { global $server_status, $used_queries, $url_query, $PMA_PHP_SELF; - $hour_factor = 3600 / $server_status['Uptime']; + $hour_factor = 3600 / $server_status['Uptime']; $total_queries = array_sum($used_queries); ?> -

Query statistics: Since its startup, %s queries have been sent to the server.'), - //PMA_formatNumber($server_status['Questions'], 0)); - sprintf('Queries since startup: %s',PMA_formatNumber($total_queries, 0)); - //echo PMA_showMySQLDocu('server-status-variables', 'server-status-variables', false, 'statvar_Questions'); +

+ -
- - ø : -
- - ø : -
- - = 1) { - ?> - ø : -
- +
+ + '; + + echo 'ø'.__('per minute').':'; + echo PMA_formatNumber( $total_queries * 60 / $server_status['Uptime'], 0); + echo '
'; + + if($total_queries / $server_status['Uptime'] >= 1) { + echo 'ø'.__('per second').':'; + echo PMA_formatNumber( $total_queries / $server_status['Uptime'], 0); + ?> +

+

- + @@ -547,7 +564,7 @@ function printQueryStatistics() { $value) { @@ -576,21 +593,12 @@ function printQueryStatistics() {
-
+
['.__('Show query chart').']'; - }*/ - - if($other_sum>0) + if($other_sum > 0) $chart_json[__('Other')] = $other_sum; echo json_encode($chart_json); - ?>
-

Server traffic: These tables show the network traffic statistics of this MySQL server since its startup.');*/ - echo sprintf(__('Network traffic since startup: %s'), - implode(' ', PMA_formatByteDown( $server_status['Bytes_received'] + $server_status['Bytes_sent'], 3, 1)) - ); +

@@ -789,7 +798,7 @@ function printServerTraffic() { + if (! PMA_DRIZZLE) { ?> __('The number of failed attempts to connect to the MySQL server.'), 'Binlog_cache_disk_use' => __('The number of transactions that used the temporary binary log cache but that exceeded the value of binlog_cache_size and used a temporary file to store statements from the transaction.'), 'Binlog_cache_use' => __('The number of transactions that used the temporary binary log cache.'), @@ -1018,19 +1027,12 @@ function printVariablesTable() { - $value) { $odd_row = !$odd_row; - // $allocations ?> @@ -1086,38 +1088,6 @@ function printVariablesTable() { ; } +table .valueHeader { + text-align: ; + white-space: normal; +} table .value { text-align: ; white-space: normal; diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index c403698e19..c66555d0e6 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -432,6 +432,10 @@ td.null { text-align: ; } +table .valueHeader { + text-align: ; + white-space: normal; +} table .value { text-align: ; white-space: normal; @@ -1166,6 +1170,11 @@ img.sortableIcon { background-repeat:no-repeat; } +h3#serverstatusqueries span { + font-size:60%; + display:inline; +} + table#serverstatusqueriesdetails th.headerSortUp img.sortableIcon, table#serverstatusvariables th.headerSortUp img.sortableIcon { background-image:url(getImgPath(); ?>s_asc.png); } @@ -1175,7 +1184,7 @@ table#serverstatusqueriesdetails th.headerSortDown img.sortableIcon, table#serve .statuslinks { float: ; - white-space: nowrap; + white-space: nowrap; } /* Also used for the variables page */ @@ -1193,6 +1202,8 @@ div#serverstatus table caption a.top { div#serverstatusquerieschart { float:; + width:500px; + height:350px; } div#serverstatus table#serverstatusqueriesdetails { @@ -1225,8 +1236,28 @@ div#serverstatus table tbody td.descr a, div#serverstatus table .tblFooters a { white-space: nowrap; } + +div.liveChart { + clear:both; + min-width:500px; + height:400px; + padding-bottom:80px; +} /* end serverstatus */ +/* server variables */ + +a.editIcon { + float: ; + font-family:sans-serif; +} + +table#serverVariables td { + height:18px; +} + +/* end server variables */ + /* querywindow */ body#bodyquerywindow { margin: 0; From f771e68a73dfca6199030c1598b23e92de50f64c Mon Sep 17 00:00:00 2001 From: Tyron Madlener Date: Thu, 16 Jun 2011 15:05:08 +0200 Subject: [PATCH 120/340] - Fix for: If the moseout event on the row highlighting fails to get called (e.g. when having html code in the row), the toggle class will wrongly assign the hover class next time the element is being hovered over - Better formatted PMA_createChart() --- js/functions.js | 63 ++++++++++++++++++++++++++++--------------------- 1 file changed, 36 insertions(+), 27 deletions(-) diff --git a/js/functions.js b/js/functions.js index 4ad7c77c9a..8df99daba7 100644 --- a/js/functions.js +++ b/js/functions.js @@ -31,7 +31,6 @@ var codemirror_editor = false; var chart_activeTimeouts = new Object(); - /** * Add a hidden field to the form to indicate that this will be an * Ajax request (only if this hidden field does not exist) @@ -659,10 +658,10 @@ $(document).ready(function() { * so that it works also for pages reached via AJAX) */ $(document).ready(function() { - $('tr.odd, tr.even').live('hover',function() { + $('tr.odd, tr.even').live('hover',function(event) { var $tr = $(this); - $tr.toggleClass('hover'); - $tr.children().toggleClass('hover'); + $tr.toggleClass('hover',event.type=='mouseover'); + $tr.children().toggleClass('hover',event.type=='mouseover'); }); }) @@ -1411,31 +1410,41 @@ function PMA_createChart(passedSettings) { events: { load: function() { var thisChart = this; - var lastValue=null, curValue=null; - var numLoadedPoints=0, otherSum=0; + var lastValue = null, curValue = null; + var numLoadedPoints = 0, otherSum = 0; var diff; // No realtime updates for graphs that are being exported, and disabled when no callback is set - if(thisChart.options.chart.forExport==true || !passedSettings.realtime || !passedSettings.realtime.callback) return; + if(thisChart.options.chart.forExport == true || + ! passedSettings.realtime || + ! passedSettings.realtime.callback) return; thisChart.options.realtime.timeoutCallBack = function() { - $.get(passedSettings.realtime.url,{ajax_request:1, chart_data:1, type:passedSettings.realtime.type},function(data) { - curValue = jQuery.parseJSON(data); - //if(lastValue==null) lastValue = curValue; - - if(lastValue==null) diff = curValue.x - thisChart.xAxis[0].getExtremes().max; - else diff = parseInt(curValue.x - lastValue.x); - - thisChart.xAxis[0].setExtremes(thisChart.xAxis[0].getExtremes().min+diff, thisChart.xAxis[0].getExtremes().max+diff, false); - - passedSettings.realtime.callback(thisChart,curValue,lastValue,numLoadedPoints); - - lastValue = curValue; - numLoadedPoints++; - - // Timeout has been cleared => don't start a new timeout - if(chart_activeTimeouts[container]==null) return; - chart_activeTimeouts[container] = setTimeout(thisChart.options.realtime.timeoutCallBack, thisChart.options.realtime.refreshRate); - + $.post(passedSettings.realtime.url, + { ajax_request: true, chart_data: 1, type: passedSettings.realtime.type }, + function(data) { + curValue = jQuery.parseJSON(data); + + if(lastValue==null) diff = curValue.x - thisChart.xAxis[0].getExtremes().max; + else diff = parseInt(curValue.x - lastValue.x); + + thisChart.xAxis[0].setExtremes( + thisChart.xAxis[0].getExtremes().min+diff, + thisChart.xAxis[0].getExtremes().max+diff, + false + ); + + passedSettings.realtime.callback(thisChart,curValue,lastValue,numLoadedPoints); + + lastValue = curValue; + numLoadedPoints++; + + // Timeout has been cleared => don't start a new timeout + if(chart_activeTimeouts[container]==null) return; + + chart_activeTimeouts[container] = setTimeout( + thisChart.options.realtime.timeoutCallBack, + thisChart.options.realtime.refreshRate + ); }); } @@ -1469,8 +1478,8 @@ function PMA_createChart(passedSettings) { }, tooltip: { formatter: function() { - return ''+ this.series.name +'
'+ - Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) +'
'+ + return '' + this.series.name +'
' + + Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) + '
' + Highcharts.numberFormat(this.y, 2); } }, From bc19b678305a6ef1d9677122f56e389ceed5cd38 Mon Sep 17 00:00:00 2001 From: Tyron Madlener Date: Thu, 16 Jun 2011 15:10:41 +0200 Subject: [PATCH 121/340] forgot some css changes in original theme --- themes/original/css/theme_right.css.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 3ea6b3b18e..625e1cdbea 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -964,6 +964,11 @@ img.sortableIcon { background-repeat:no-repeat; } +h3#serverstatusqueries span { + font-size:60%; + display:inline; +} + table#serverstatusqueriesdetails th img.sortableIcon, table#serverstatusvariables th img.sortableIcon { background-image:url(getImgPath(); ?>s_sortable.png); } @@ -994,6 +999,8 @@ div#serverstatus table caption a.top { div#serverstatusquerieschart { float:; + width:500px; + height:350px; } div#serverstatus table#serverstatusqueriesdetails { @@ -1039,6 +1046,14 @@ div#serverstatus table tbody td.descr a:after, div#serverstatus table .tblFooters a:after { content: ']'; } + +div.liveChart { + clear:both; + min-width:500px; + height:400px; + padding-bottom:80px; +} + /* end serverstatus */ /* querywindow */ From 14f8664272af543a16bb78a3c72e5cd64fae64b9 Mon Sep 17 00:00:00 2001 From: Tyron Madlener Date: Thu, 16 Jun 2011 15:18:24 +0200 Subject: [PATCH 122/340] some more code formatting --- server_status.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/server_status.php b/server_status.php index 28678f49a2..99d90edc69 100644 --- a/server_status.php +++ b/server_status.php @@ -15,7 +15,7 @@ if (! defined('PMA_NO_VARIABLES_IMPORT')) { define('PMA_NO_VARIABLES_IMPORT', true); } -if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request']==true) +if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) $GLOBALS['is_header_sent'] = true; require_once './libraries/common.inc.php'; @@ -24,7 +24,7 @@ require_once './libraries/common.inc.php'; * Ajax request */ -if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request']==true) { +if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) { // Send with correct charset header('Content-Type: text/html; charset=UTF-8'); @@ -467,7 +467,7 @@ echo __('Runtime Information'); '); + $this_field.append(''); $this_field.data('original_data', data_value); } else if($this_field.is('.truncated, .transformed')) { From b47ea710fc0b643b99a8ec0df1beebc416973542 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:02:36 +0200 Subject: [PATCH 124/340] Translation update done using Pootle. --- po/tr.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/tr.po b/po/tr.po index 79725299a8..febb39f7d2 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-08 16:30+0200\n" +"PO-Revision-Date: 2011-06-16 20:02+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -1006,10 +1006,9 @@ msgstr "Bu bir sayı değil!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#, fuzzy #| msgid "Log file count" msgid "Total count" -msgstr "Günlük dosyası sayısı" +msgstr "Toplam sayı" #: js/messages.php:54 msgid "The host name is empty!" From fe22d14410c0cf5198290ddda0c87da081525e81 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:04:37 +0200 Subject: [PATCH 125/340] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index febb39f7d2..d378fd4be7 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:02+0200\n" +"PO-Revision-Date: 2011-06-16 20:04+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1045,10 +1045,9 @@ msgid "Close" msgstr "Kapat" #: js/messages.php:64 server_status.php:397 -#, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" -msgstr "Sunucu Seçimi" +msgstr "Canlı trafik çizelgesi" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" From df68e0311c7f2d829d35142a0f9ec643e15cef9d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:05:53 +0200 Subject: [PATCH 126/340] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index d378fd4be7..4c2928d815 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:04+0200\n" +"PO-Revision-Date: 2011-06-16 20:05+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1054,10 +1054,9 @@ msgid "Live conn./process chart" msgstr "" #: js/messages.php:66 server_status.php:429 -#, fuzzy #| msgid "Show query chart" msgid "Live query chart" -msgstr "Sorgu çizelgesini göster" +msgstr "Canlı sorgu çizelgesi" #: js/messages.php:68 msgid "Static data" From afab0dca041bb91e8e7367a09c14d6a56bcc5c75 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:08:10 +0200 Subject: [PATCH 127/340] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 4c2928d815..6ef2374846 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:05+0200\n" +"PO-Revision-Date: 2011-06-16 20:08+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -4942,10 +4942,9 @@ msgid "Language" msgstr "Dil" #: libraries/display_tbl.lib.php:397 -#, fuzzy #| msgid "Textarea columns" msgid "Restore column order" -msgstr "Metin alanı sütunları" +msgstr "Sütun düzenini geri yükle" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" From cb9e0e37e9db8f5c94ce38de6032d00c8d7d2480 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:09:03 +0200 Subject: [PATCH 128/340] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 6ef2374846..f3b500b849 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:08+0200\n" +"PO-Revision-Date: 2011-06-16 20:09+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -4951,10 +4951,9 @@ msgid "Drag to reorder" msgstr "" #: libraries/display_tbl.lib.php:412 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "Seçmek için tıklayın" +msgstr "Sıralamak için tıkla" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" From 3c09c7904e9be360eb01fdc0241917e683db2046 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:09:22 +0200 Subject: [PATCH 129/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index f3b500b849..90c30cc6be 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8288,10 +8288,9 @@ msgid "Runtime Information" msgstr "Çalışma Süresi Bilgisi" #: server_status.php:371 -#, fuzzy #| msgid "Server Choice" msgid "Server traffic" -msgstr "Sunucu Seçimi" +msgstr "Sunucu trafiği" #: server_status.php:372 msgid "Query statistics" From d7860f9a3624f8ae06eb4d44ff48cb3119b4abfa Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:09:50 +0200 Subject: [PATCH 130/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 90c30cc6be..f0bd7ac77a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8297,10 +8297,9 @@ msgid "Query statistics" msgstr "Sorgu istatistikleri" #: server_status.php:373 -#, fuzzy #| msgid "See slave status table" msgid "All status variables" -msgstr "Slave durum tablosuna bak" +msgstr "Tüm durum değişkenleri" #: server_status.php:383 server_status.php:416 #, fuzzy From 44538e990389fdb0fab4bb92cc59fa6c3a804b56 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:10:01 +0200 Subject: [PATCH 131/340] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index f0bd7ac77a..756459d727 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:09+0200\n" +"PO-Revision-Date: 2011-06-16 20:10+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -8302,10 +8302,9 @@ msgid "All status variables" msgstr "Tüm durum değişkenleri" #: server_status.php:383 server_status.php:416 -#, fuzzy #| msgid "Refresh" msgid "Refresh rate" -msgstr "Yenile" +msgstr "Oranı yenile" #: server_status.php:384 server_status.php:417 #, fuzzy From 580e37161b4aa738a4e5b309a66d462a0f3effe6 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:10:07 +0200 Subject: [PATCH 132/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 756459d727..b5d96f9020 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8307,10 +8307,9 @@ msgid "Refresh rate" msgstr "Oranı yenile" #: server_status.php:384 server_status.php:417 -#, fuzzy #| msgid "Second" msgid "second" -msgstr "Saniye" +msgstr "saniye" #: server_status.php:385 server_status.php:386 server_status.php:387 #: server_status.php:388 server_status.php:389 server_status.php:418 From efcd9b6ade62a510a384d23889957205fd530863 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:10:11 +0200 Subject: [PATCH 133/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index b5d96f9020..eb05cb0671 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8315,10 +8315,9 @@ msgstr "saniye" #: server_status.php:388 server_status.php:389 server_status.php:418 #: server_status.php:419 server_status.php:420 server_status.php:421 #: server_status.php:422 -#, fuzzy #| msgid "Second" msgid "seconds" -msgstr "Saniye" +msgstr "saniye" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 From bee7fc5d8a49e3f23528e82a3b1544a482152e3a Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:10:16 +0200 Subject: [PATCH 134/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index eb05cb0671..13291aa130 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8322,10 +8322,9 @@ msgstr "saniye" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 #: server_status.php:425 server_status.php:426 -#, fuzzy #| msgid "Minute" msgid "minutes" -msgstr "Dakika" +msgstr "dakika" #: server_status.php:446 #, fuzzy From 675d69da7d98631395b3958a4b0d72b8a4a3cc66 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:10:56 +0200 Subject: [PATCH 135/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 13291aa130..2cb1c040d4 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8327,10 +8327,9 @@ msgid "minutes" msgstr "dakika" #: server_status.php:446 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "Parolayı değiştirme" +msgstr "İçerdiği kelime:" #: server_status.php:451 #, fuzzy From 106ca3e0c22409b506819cf9aa2413cfb53cda85 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:12:19 +0200 Subject: [PATCH 136/340] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 2cb1c040d4..2793f7f0fd 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:10+0200\n" +"PO-Revision-Date: 2011-06-16 20:12+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -8332,10 +8332,9 @@ msgid "Containing the word:" msgstr "İçerdiği kelime:" #: server_status.php:451 -#, fuzzy #| msgid "Show open tables" msgid "Show only alert values" -msgstr "Açık tabloları göster" +msgstr "Sadece uyarı değerlerini göster" #: server_status.php:455 msgid "Filter by category..." From fe7f05f9bbfb2999309656c457d72dce71f3e90b Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:12:31 +0200 Subject: [PATCH 137/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 2793f7f0fd..ccd82bf487 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8341,10 +8341,9 @@ msgid "Filter by category..." msgstr "" #: server_status.php:468 -#, fuzzy #| msgid "Related Links" msgid "Related links:" -msgstr "İlgili Bağlantılar" +msgstr "İlgili bağlantılar:" #: server_status.php:513 server_status.php:545 server_status.php:666 #: server_status.php:711 From 9f3201c64094b60b8a772207c08190490f14e186 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:13:28 +0200 Subject: [PATCH 138/340] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index ccd82bf487..4134dd9028 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:12+0200\n" +"PO-Revision-Date: 2011-06-16 20:13+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -8454,10 +8454,9 @@ msgid "ID" msgstr "ID" #: server_status.php:846 -#, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." -msgstr "MySQL sunucusuna bağlanmak için SSL etkinleştirmek." +msgstr "MySQL sunucusuna bağlanmak için başarısız girişim sayısı." #: server_status.php:847 msgid "" From 738a0b5158dd2a010eabd07eb5bb1d06efcbca3f Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:13:50 +0200 Subject: [PATCH 139/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 4134dd9028..df523d785f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9665,10 +9665,9 @@ msgid "Line" msgstr "Satır" #: tbl_chart.php:88 -#, fuzzy #| msgid "Inline" msgid "Spline" -msgstr "Sıralı" +msgstr "Şerit" #: tbl_chart.php:89 msgid "Pie" From 4cc2ae0e3b171b026aa57213b9a67beec92a8df1 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:14:05 +0200 Subject: [PATCH 140/340] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index df523d785f..f6ea9653f4 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:13+0200\n" +"PO-Revision-Date: 2011-06-16 20:14+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -9678,10 +9678,9 @@ msgid "Stacked" msgstr "İstiflendi" #: tbl_chart.php:94 -#, fuzzy #| msgid "Report title:" msgid "Chart title" -msgstr "Rapor başlığı:" +msgstr "Çizelge başlığı" #: tbl_chart.php:99 msgid "X-Axis:" From 29d9ae2f655e784c73e977261a412caea89583aa Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:14:25 +0200 Subject: [PATCH 141/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index f6ea9653f4..6cbdf0ce6d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9687,10 +9687,9 @@ msgid "X-Axis:" msgstr "" #: tbl_chart.php:113 -#, fuzzy #| msgid "SQL queries" msgid "Series:" -msgstr "SQL sorguları" +msgstr "Dizi:" #: tbl_chart.php:115 #, fuzzy From 9d5d07653ad92eadf989e81988f1426f102995a6 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:14:48 +0200 Subject: [PATCH 142/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 6cbdf0ce6d..258c36f846 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9692,10 +9692,9 @@ msgid "Series:" msgstr "Dizi:" #: tbl_chart.php:115 -#, fuzzy #| msgid "Textarea columns" msgid "The remaining columns" -msgstr "Metin alanı sütunları" +msgstr "Kalan sütunlar" #: tbl_chart.php:128 #, fuzzy From b38ffd67b6387a901e949c55d99d998b01f7d1dc Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:15:08 +0200 Subject: [PATCH 143/340] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 258c36f846..0ac02a29c1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:14+0200\n" +"PO-Revision-Date: 2011-06-16 20:15+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -9697,10 +9697,9 @@ msgid "The remaining columns" msgstr "Kalan sütunlar" #: tbl_chart.php:128 -#, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" -msgstr "X Ekseni etiketi" +msgstr "X-Ekseni etiketi:" #: tbl_chart.php:128 #, fuzzy From 2c82db33618fb1c6ae682f472f4762e573440db6 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:15:19 +0200 Subject: [PATCH 144/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 0ac02a29c1..c2d4f9d113 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9702,10 +9702,9 @@ msgid "X-Axis label:" msgstr "X-Ekseni etiketi:" #: tbl_chart.php:128 -#, fuzzy #| msgid "Value" msgid "X Values" -msgstr "Değer" +msgstr "X Değeri" #: tbl_chart.php:129 #, fuzzy From 4ab2974c95ef6cff9b9dde1845f5ab2b918ed2ec Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:15:28 +0200 Subject: [PATCH 145/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index c2d4f9d113..fad7a69ac6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9707,10 +9707,9 @@ msgid "X Values" msgstr "X Değeri" #: tbl_chart.php:129 -#, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" -msgstr "Y Ekseni etiketi" +msgstr "Y-Ekseni etiketi:" #: tbl_chart.php:129 #, fuzzy From 28b7674e0ff501c5dbb6040e605811d282d1c79c Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:15:36 +0200 Subject: [PATCH 146/340] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index fad7a69ac6..4cbd654e7b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9712,10 +9712,9 @@ msgid "Y-Axis label:" msgstr "Y-Ekseni etiketi:" #: tbl_chart.php:129 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "Değer" +msgstr "Y Değeri" #: tbl_create.php:56 #, php-format From f833ea24bd43de270643a1ea45281f61edc9f192 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:16:34 +0200 Subject: [PATCH 147/340] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 4cbd654e7b..8de10d6892 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:15+0200\n" +"PO-Revision-Date: 2011-06-16 20:16+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -4953,7 +4953,7 @@ msgstr "" #: libraries/display_tbl.lib.php:412 #| msgid "Click to select" msgid "Click to sort" -msgstr "Sıralamak için tıkla" +msgstr "Sıralamak için tıklayın" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" From b49c1c8b371c7277e76262ecc9d5acb2feb6a1da Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:25:33 +0200 Subject: [PATCH 148/340] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 8de10d6892..17b1e29a34 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:16+0200\n" +"PO-Revision-Date: 2011-06-16 20:25+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1051,7 +1051,7 @@ msgstr "Canlı trafik çizelgesi" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" -msgstr "" +msgstr "Canlı bağ./işlem çizelgesi" #: js/messages.php:66 server_status.php:429 #| msgid "Show query chart" From 2e8ddf977c413b41ed91cf575d3b12b0ee9599b0 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:25:55 +0200 Subject: [PATCH 149/340] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 17b1e29a34..100a0c599c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1060,7 +1060,7 @@ msgstr "Canlı sorgu çizelgesi" #: js/messages.php:68 msgid "Static data" -msgstr "" +msgstr "Sabit veri" #. l10n: Total number of queries #: js/messages.php:70 libraries/build_html_for_db.lib.php:45 From 146b268766e654ca05bd918db72e9161214bcc0a Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:26:00 +0200 Subject: [PATCH 150/340] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 100a0c599c..6d9f989ddb 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:25+0200\n" +"PO-Revision-Date: 2011-06-16 20:26+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1073,7 +1073,7 @@ msgstr "Toplam" #. l10n: Other, small valued, queries #: js/messages.php:72 server_status.php:592 msgid "Other" -msgstr "" +msgstr "Diğer" #. l10n: Thousands separator #: js/messages.php:74 libraries/common.lib.php:1375 From b3569b3e62fb5efa2841e6e2d53c6b194354342f Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:28:17 +0200 Subject: [PATCH 151/340] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 6d9f989ddb..ed46fb76d0 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:26+0200\n" +"PO-Revision-Date: 2011-06-16 20:28+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -4948,7 +4948,7 @@ msgstr "Sütun düzenini geri yükle" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" -msgstr "" +msgstr "Yen.düzenleme için sürükle" #: libraries/display_tbl.lib.php:412 #| msgid "Click to select" From 282b7578ad6f30cbde005d1d6f3a935e6727f133 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:28:56 +0200 Subject: [PATCH 152/340] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index ed46fb76d0..d2f72a5a5b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4957,7 +4957,7 @@ msgstr "Sıralamak için tıklayın" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" -msgstr "" +msgstr "İşaretlemek/işareti kaldırmak için tıklayın" #: libraries/display_tbl.lib.php:425 #, php-format From c5421aaf305d191964e40c674d08d80f5fb06e7d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:29:16 +0200 Subject: [PATCH 153/340] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index d2f72a5a5b..8be37e445a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:28+0200\n" +"PO-Revision-Date: 2011-06-16 20:29+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -8338,7 +8338,7 @@ msgstr "Sadece uyarı değerlerini göster" #: server_status.php:455 msgid "Filter by category..." -msgstr "" +msgstr "Kategoriye göre süz..." #: server_status.php:468 #| msgid "Related Links" From 107d043ee1fcb7d2a18d40931862ccc962141627 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:29:20 +0200 Subject: [PATCH 154/340] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 8be37e445a..dc4d663728 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8365,7 +8365,7 @@ msgstr "Sorgu türü" #. l10n: # = Amount of queries #: server_status.php:543 msgid "#" -msgstr "" +msgstr "#" #: server_status.php:615 #, php-format From d4941bf08c2cb6f86a90d252b20e21bc9cf082ce Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:30:17 +0200 Subject: [PATCH 155/340] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index dc4d663728..d67765199b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:29+0200\n" +"PO-Revision-Date: 2011-06-16 20:30+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -8370,7 +8370,7 @@ msgstr "#" #: server_status.php:615 #, php-format msgid "Network traffic since startup: %s" -msgstr "" +msgstr "Başlangıçtan bu yana ağ trafiği: %s" #: server_status.php:623 #, php-format From 9f34cbf73a7864f0861f8cf96f5b65468b2de18a Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:31:49 +0200 Subject: [PATCH 156/340] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index d67765199b..c89fd27927 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:30+0200\n" +"PO-Revision-Date: 2011-06-16 20:31+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -8475,7 +8475,7 @@ msgstr "Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayıs #: server_status.php:849 msgid "" "The number of connection attempts (successful or not) to the MySQL server." -msgstr "" +msgstr "MySQL sunucusuna bağlantı girişimi (başarılı ya da değil) sayısı." #: server_status.php:850 msgid "" From 7196cc2b24277c2e6abc202df1aec2cd4a518a95 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:33:05 +0200 Subject: [PATCH 157/340] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index c89fd27927..0c41b3bc63 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:31+0200\n" +"PO-Revision-Date: 2011-06-16 20:33+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -8902,6 +8902,8 @@ msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" +"Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla " +"bağlantı sayısı." #: server_status.php:921 msgid "The number of rows waiting to be written in INSERT DELAYED queues." From f035da1b8df7892165cdb2070f53c22868a7b7e2 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:36:14 +0200 Subject: [PATCH 158/340] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 0c41b3bc63..cc4d25a941 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:33+0200\n" +"PO-Revision-Date: 2011-06-16 20:36+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -9686,7 +9686,7 @@ msgstr "Çizelge başlığı" #: tbl_chart.php:99 msgid "X-Axis:" -msgstr "" +msgstr "X-Ekseni:" #: tbl_chart.php:113 #| msgid "SQL queries" From a6a4723ad2c4e9cc1c18d3fc984b9dfebbcf600c Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 20:36:48 +0200 Subject: [PATCH 159/340] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index cc4d25a941..d137491d81 100644 --- a/po/tr.po +++ b/po/tr.po @@ -963,7 +963,7 @@ msgstr "Bütün bir tabloyu YOK ETMEK üzeresiniz!" #: js/messages.php:33 msgid "You are about to TRUNCATE a complete table!" -msgstr "Bütün bir tabloyu KESMEK üzeresiniz!" +msgstr "Bütün bir tabloyu KESMEK üzeresiniz!" #: js/messages.php:34 msgid "Dropping Event" From 40f064bee358ef9e11ee5ad6cc11c9db8204d648 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 16 Jun 2011 21:00:57 +0200 Subject: [PATCH 160/340] Translation update done using Pootle. --- po/tr.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index d137491d81..058b9d5c29 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 20:36+0200\n" +"PO-Revision-Date: 2011-06-16 21:00+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -8935,6 +8935,9 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" +"Sorgu önbelleğinde boş bellek blokları sayısıdır. Yüksek sayılar, FLUSH " +"QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret " +"edebilir." #: server_status.php:927 msgid "The amount of free memory for query cache." From 6539d4b54a16149ee9be7611098b36eac27c0712 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 21:59:32 +0200 Subject: [PATCH 161/340] Translation update done using Pootle. --- po/ru.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/ru.po b/po/ru.po index 5da649a65d..c243219109 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-09 00:25+0200\n" +"PO-Revision-Date: 2011-06-16 21:59+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" @@ -1016,10 +1016,9 @@ msgstr "Введите число!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#, fuzzy #| msgid "Log file count" msgid "Total count" -msgstr "Количество файлов журнала" +msgstr "Общее количество" #: js/messages.php:54 msgid "The host name is empty!" From 22a993911d3be699061e6ab001e8d2dddc9378f1 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:02:31 +0200 Subject: [PATCH 162/340] Translation update done using Pootle. --- po/ru.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index c243219109..83bc80ee15 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 21:59+0200\n" +"PO-Revision-Date: 2011-06-16 22:02+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -1055,10 +1055,9 @@ msgid "Close" msgstr "Закрыть" #: js/messages.php:64 server_status.php:397 -#, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" -msgstr "Выбор сервера" +msgstr "Графический вывод трафика" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" From 9fc343e7a7f65271e23f7f07b13dc002271edf59 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:03:31 +0200 Subject: [PATCH 163/340] Translation update done using Pootle. --- po/ru.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 83bc80ee15..5691a16661 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:02+0200\n" +"PO-Revision-Date: 2011-06-16 22:03+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -1061,7 +1061,7 @@ msgstr "Графический вывод трафика" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" -msgstr "" +msgstr "Графический вывод соединений и процессов" #: js/messages.php:66 server_status.php:429 #, fuzzy From 0f4c2d16380148dd0ee465730cd56544180dffd4 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:03:55 +0200 Subject: [PATCH 164/340] Translation update done using Pootle. --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 5691a16661..8a0947db66 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1064,10 +1064,9 @@ msgid "Live conn./process chart" msgstr "Графический вывод соединений и процессов" #: js/messages.php:66 server_status.php:429 -#, fuzzy #| msgid "Show query chart" msgid "Live query chart" -msgstr "Вывести график запроса" +msgstr "Графический вывод запросов" #: js/messages.php:68 msgid "Static data" From 261d44d68d90d80b61aa7c7bc44a806f4bcac8fc Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:04:06 +0200 Subject: [PATCH 165/340] Translation update done using Pootle. --- po/ru.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 8a0947db66..f8d313fccc 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:03+0200\n" +"PO-Revision-Date: 2011-06-16 22:04+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -1070,7 +1070,7 @@ msgstr "Графический вывод запросов" #: js/messages.php:68 msgid "Static data" -msgstr "" +msgstr "Статические данные" #. l10n: Total number of queries #: js/messages.php:70 libraries/build_html_for_db.lib.php:45 From 1c5e47dd39e0aa4d024dd0c48132f5eba0831cbf Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:04:30 +0200 Subject: [PATCH 166/340] Translation update done using Pootle. --- po/ru.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ru.po b/po/ru.po index f8d313fccc..0062d542f4 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1083,7 +1083,7 @@ msgstr "Всего" #. l10n: Other, small valued, queries #: js/messages.php:72 server_status.php:592 msgid "Other" -msgstr "" +msgstr "Другое" #. l10n: Thousands separator #: js/messages.php:74 libraries/common.lib.php:1375 From 274b142d05ec0d111606e02b11e5e947893352b1 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:04:54 +0200 Subject: [PATCH 167/340] Translation update done using Pootle. --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 0062d542f4..7303d0357e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4979,10 +4979,9 @@ msgid "Language" msgstr "Язык" #: libraries/display_tbl.lib.php:397 -#, fuzzy #| msgid "Textarea columns" msgid "Restore column order" -msgstr "Столбцов в текстовом поле" +msgstr "Восстановить порядок столбцов" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" From ebe0c2e4af9067049dc76c9a7a4f59e0540eb8c8 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:05:23 +0200 Subject: [PATCH 168/340] Translation update done using Pootle. --- po/ru.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 7303d0357e..94ca8f0ca5 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:04+0200\n" +"PO-Revision-Date: 2011-06-16 22:05+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -4985,7 +4985,7 @@ msgstr "Восстановить порядок столбцов" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" -msgstr "" +msgstr "Изменить порядок перетаскиванием" #: libraries/display_tbl.lib.php:412 #, fuzzy From e7fd6392d8d9f52ceaac392a4928ee98100b131c Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:05:49 +0200 Subject: [PATCH 169/340] Translation update done using Pootle. --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 94ca8f0ca5..b88a80ece3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4988,10 +4988,9 @@ msgid "Drag to reorder" msgstr "Изменить порядок перетаскиванием" #: libraries/display_tbl.lib.php:412 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "Выделение" +msgstr "Кликнуть для сортировки" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" From 882a4dd1a962df4f0bb1d2615f6ab2451d487514 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:06:12 +0200 Subject: [PATCH 170/340] Translation update done using Pootle. --- po/ru.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index b88a80ece3..7b6aac0667 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:05+0200\n" +"PO-Revision-Date: 2011-06-16 22:06+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -4994,7 +4994,7 @@ msgstr "Кликнуть для сортировки" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" -msgstr "" +msgstr "Кликнуть для снятия/установки отметки" #: libraries/display_tbl.lib.php:425 #, php-format From 6e2886ffa0463a8222f0700de7147201edbb3389 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:06:23 +0200 Subject: [PATCH 171/340] Translation update done using Pootle. --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 7b6aac0667..ca63172796 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8340,10 +8340,9 @@ msgid "Runtime Information" msgstr "Текущее состояние MySQL" #: server_status.php:371 -#, fuzzy #| msgid "Server Choice" msgid "Server traffic" -msgstr "Выбор сервера" +msgstr "Трафик сервера" #: server_status.php:372 msgid "Query statistics" From bc3ae3734be89de0af52f6f1cc4f8117c90d712f Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:07:29 +0200 Subject: [PATCH 172/340] Translation update done using Pootle. --- po/ru.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index ca63172796..f185f1d335 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:06+0200\n" +"PO-Revision-Date: 2011-06-16 22:07+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -8349,10 +8349,9 @@ msgid "Query statistics" msgstr "Статистика запросов" #: server_status.php:373 -#, fuzzy #| msgid "See slave status table" msgid "All status variables" -msgstr "Смотрите таблицу состояния подчинённого сервера" +msgstr "Все переменные состояния" #: server_status.php:383 server_status.php:416 #, fuzzy From f0a13eb7c73458af55a006dc44572812d76cf5ca Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:08:06 +0200 Subject: [PATCH 173/340] Translation update done using Pootle. --- po/ru.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index f185f1d335..a5cc2e1261 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:07+0200\n" +"PO-Revision-Date: 2011-06-16 22:08+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -8354,10 +8354,9 @@ msgid "All status variables" msgstr "Все переменные состояния" #: server_status.php:383 server_status.php:416 -#, fuzzy #| msgid "Refresh" msgid "Refresh rate" -msgstr "Обновить" +msgstr "Частота обновления" #: server_status.php:384 server_status.php:417 #, fuzzy From 6ad791b222edef5080bae0cd32a7ec7e7c63763f Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:08:19 +0200 Subject: [PATCH 174/340] Translation update done using Pootle. --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index a5cc2e1261..dfa44b47f4 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8359,10 +8359,9 @@ msgid "Refresh rate" msgstr "Частота обновления" #: server_status.php:384 server_status.php:417 -#, fuzzy #| msgid "Second" msgid "second" -msgstr "Секунда" +msgstr "секунда" #: server_status.php:385 server_status.php:386 server_status.php:387 #: server_status.php:388 server_status.php:389 server_status.php:418 From 38a8d40719ead1c16350a45ca01167d12ac8a229 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:08:35 +0200 Subject: [PATCH 175/340] Translation update done using Pootle. --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index dfa44b47f4..26f99fb665 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8367,10 +8367,9 @@ msgstr "секунда" #: server_status.php:388 server_status.php:389 server_status.php:418 #: server_status.php:419 server_status.php:420 server_status.php:421 #: server_status.php:422 -#, fuzzy #| msgid "Second" msgid "seconds" -msgstr "Секунда" +msgstr "секунды" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 From abd34cf7128f37f8d9021663e8997d83f0d526e2 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:08:48 +0200 Subject: [PATCH 176/340] Translation update done using Pootle. --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 26f99fb665..b6d6a26998 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8374,10 +8374,9 @@ msgstr "секунды" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 #: server_status.php:425 server_status.php:426 -#, fuzzy #| msgid "Minute" msgid "minutes" -msgstr "Минута" +msgstr "минуты" #: server_status.php:446 #, fuzzy From 8cbb44122ff1c268a71047cdc94fa25dc353300a Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:09:08 +0200 Subject: [PATCH 177/340] Translation update done using Pootle. --- po/ru.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index b6d6a26998..d96476ff7d 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:08+0200\n" +"PO-Revision-Date: 2011-06-16 22:09+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -8379,10 +8379,9 @@ msgid "minutes" msgstr "минуты" #: server_status.php:446 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "Не менять пароль" +msgstr "Содержит слово:" #: server_status.php:451 #, fuzzy From 350435aa769e6c3b131a6712ec4dbecbafa0241a Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:10:17 +0200 Subject: [PATCH 178/340] Translation update done using Pootle. --- po/ru.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index d96476ff7d..987707194f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:09+0200\n" +"PO-Revision-Date: 2011-06-16 22:10+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -8384,10 +8384,9 @@ msgid "Containing the word:" msgstr "Содержит слово:" #: server_status.php:451 -#, fuzzy #| msgid "Show open tables" msgid "Show only alert values" -msgstr "Список открытых таблиц" +msgstr "Выводить только предупреждающие значения" #: server_status.php:455 msgid "Filter by category..." From 7ba9d3369a36cc144644c5e3e88ac9ac15466c56 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:10:36 +0200 Subject: [PATCH 179/340] Translation update done using Pootle. --- po/ru.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ru.po b/po/ru.po index 987707194f..820cb633e9 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8390,7 +8390,7 @@ msgstr "Выводить только предупреждающие значе #: server_status.php:455 msgid "Filter by category..." -msgstr "" +msgstr "Фильтр по категории..." #: server_status.php:468 #, fuzzy From bd8fabb2128c2dcaa1cbbd55389df3fef7e45260 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:11:18 +0200 Subject: [PATCH 180/340] Translation update done using Pootle. --- po/ru.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index 820cb633e9..08a5dd7cbb 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:10+0200\n" +"PO-Revision-Date: 2011-06-16 22:11+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -8393,10 +8393,9 @@ msgid "Filter by category..." msgstr "Фильтр по категории..." #: server_status.php:468 -#, fuzzy #| msgid "Related Links" msgid "Related links:" -msgstr "Дополнительные ссылки" +msgstr "Связанные ссылки:" #: server_status.php:513 server_status.php:545 server_status.php:666 #: server_status.php:711 From 77ce79428cdd288d820be0374ff4ca668eaf1b06 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:11:39 +0200 Subject: [PATCH 181/340] Translation update done using Pootle. --- po/ru.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ru.po b/po/ru.po index 08a5dd7cbb..d5729294b1 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8417,7 +8417,7 @@ msgstr "Тип запроса" #. l10n: # = Amount of queries #: server_status.php:543 msgid "#" -msgstr "" +msgstr "№" #: server_status.php:615 #, php-format From 8315bb9501512150b34e8deed5566a80bb2f6a9b Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:12:19 +0200 Subject: [PATCH 182/340] Translation update done using Pootle. --- po/ru.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index d5729294b1..0d70c043cd 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:11+0200\n" +"PO-Revision-Date: 2011-06-16 22:12+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -8422,7 +8422,7 @@ msgstr "№" #: server_status.php:615 #, php-format msgid "Network traffic since startup: %s" -msgstr "" +msgstr "Сетевой трафик с момента запуска: %s" #: server_status.php:623 #, php-format From 0c05c3b7db9c97bd15c4d72e824b1c8cae5ed2f0 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:13:36 +0200 Subject: [PATCH 183/340] Translation update done using Pootle. --- po/ru.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index 0d70c043cd..6f3f4d8bba 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:12+0200\n" +"PO-Revision-Date: 2011-06-16 22:13+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -8503,10 +8503,9 @@ msgid "ID" msgstr "ID" #: server_status.php:846 -#, 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.php:847 msgid "" From 439cf0dcc5392cb95aef4437b8ecede54e710ea0 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:14:33 +0200 Subject: [PATCH 184/340] Translation update done using Pootle. --- po/ru.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 6f3f4d8bba..c4fb5db015 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:13+0200\n" +"PO-Revision-Date: 2011-06-16 22:14+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -8524,7 +8524,7 @@ msgstr "Количество транзакций, использовавших #: server_status.php:849 msgid "" "The number of connection attempts (successful or not) to the MySQL server." -msgstr "" +msgstr "Количество попыток соединения (успешных либо нет) к серверу MySQL." #: server_status.php:850 msgid "" From 9feffdfbdef823a4dbc62bd14c8a2fb2eddd1dfe Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:15:01 +0200 Subject: [PATCH 185/340] Translation update done using Pootle. --- po/sl.po | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/po/sl.po b/po/sl.po index dab48e35ae..f62314f681 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-10 22:40+0200\n" +"PO-Revision-Date: 2011-06-16 22:15+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -1014,10 +1014,9 @@ msgstr "To ni število!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#, fuzzy #| msgid "Log file count" msgid "Total count" -msgstr "Število dnevniških datotek" +msgstr "Skupno število" #: js/messages.php:54 msgid "The host name is empty!" From d90bad9a8b324e4a9ae8cc0c6f401a74a488604b Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Thu, 16 Jun 2011 16:15:12 -0400 Subject: [PATCH 186/340] Patch #3316969 PMA_ajaxShowMessage() does not respect timeout --- js/functions.js | 98 ++++++++++++++++++++----------------------------- 1 file changed, 39 insertions(+), 59 deletions(-) diff --git a/js/functions.js b/js/functions.js index 1b09f63ee6..3418e51da2 100644 --- a/js/functions.js +++ b/js/functions.js @@ -15,10 +15,9 @@ var sql_box_locked = false; var only_once_elements = new Array(); /** - * @var ajax_message_init boolean boolean that stores status of - * notification for PMA_ajaxShowNotification + * @var int ajax_message_count Number of AJAX messages shown since page load */ -var ajax_message_init = false; +var ajax_message_count = 0; /** * @var codemirror_editor object containing CodeMirror editor @@ -1244,83 +1243,64 @@ $(document).ready(function(){ * optional, defaults to 'Loading...' * @param var timeout number of milliseconds for the message to be visible * optional, defaults to 5000 - * @return jQuery object jQuery Element that holds the message div + * @return jQuery object jQuery Element that holds the message div */ - function PMA_ajaxShowMessage(message, timeout) { - //Handle the case when a empty data.message is passed. We don't want the empty message - if(message == '') { + //Handle the case when a empty data.message is passed. We don't want the empty message + if (message == '') { return true; + } else if (! message) { + // If the message is undefined, show the default + message = PMA_messages['strLoading']; } /** - * @var msg String containing the message that has to be displayed - * @default PMA_messages['strLoading'] - */ - if(!message) { - var msg = PMA_messages['strLoading']; - } - else { - var msg = message; - } - - /** - * @var timeout Number of milliseconds for which {@link msg} will be visible + * @var timeout Number of milliseconds for which the message will be visible * @default 5000 ms */ - if(!timeout) { - var to = 5000; - } - else { - var to = timeout; + if (! timeout) { + timeout = 5000; } - if( !ajax_message_init) { - //For the first time this function is called, append a new div - $(function(){ - $('
') - .insertBefore("#serverinfo"); - - $('') - .appendTo("#loading_parent") - .html(msg) - .fadeIn('medium') - .delay(to) - .fadeOut('medium', function(){ - $(this) - .html("") //Clear the message - .hide(); - }); - }, 'top.frame_content'); - ajax_message_init = true; + // Create a parent element for the AJAX messages, if necessary + if ($('#loading_parent').length == 0) { + $('
') + .insertBefore("#serverinfo"); } - else { - //Otherwise, just show the div again after inserting the message - $("#loading") - .stop(true, true) - .html(msg) + + // Update message count to create distinct message elements every time + ajax_message_count++; + + // Remove all old messages, if any + $(".ajax_notification[id^=ajax_message_num]").remove(); + + /** + * @var $retval a jQuery object containing the reference + * to the created AJAX message + */ + var $retval = $('') + .hide() + .appendTo("#loading_parent") + .html(message) .fadeIn('medium') - .delay(to) + .delay(timeout) .fadeOut('medium', function() { - $(this) - .html("") - .hide(); - }) - } + $(this).remove(); + }); - return $("#loading"); + return $retval; } /** * Removes the message shown for an Ajax operation when it's completed */ function PMA_ajaxRemoveMessage($this_msgbox) { - $this_msgbox - .stop(true, true) - .fadeOut('medium', function() { - $this_msgbox.hide(); - }); + if ($this_msgbox != 'undefined' && $this_msgbox instanceof jQuery) { + $this_msgbox + .stop(true, true) + .fadeOut('medium'); + } } /** From 79f28d8dbbcfe0e42847d2bfa3bb5a9003f5f470 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 16 Jun 2011 16:16:09 -0400 Subject: [PATCH 187/340] ChangeLog entry for patch --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index b69dd20f04..edbb3ac895 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19,6 +19,7 @@ phpMyAdmin - ChangeLog + rfe #939233 [interface] Flexible column width + [interface] Mouse-based column reordering in query results + AJAX for Insert to a table from database Structure page +- Patch #3316969 PMA_ajaxShowMessage() does not respect timeout 3.4.3.0 (not yet released) - bug #3311170 [sync] Missing helper icons in Synchronize From 5a05bfcf050043e604e25eb5fd8a85da31ff2b11 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:16:53 +0200 Subject: [PATCH 188/340] Translation update done using Pootle. --- po/ru.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ru.po b/po/ru.po index c4fb5db015..9cb7e1ce5f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:14+0200\n" +"PO-Revision-Date: 2011-06-16 22:16+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -8958,6 +8958,8 @@ msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" +"Максимальное количество соединений использованных одновременно начиная с " +"запуска сервера." #: server_status.php:921 msgid "The number of rows waiting to be written in INSERT DELAYED queues." From fba66bf24cd1106eb22b1667978c3cb9ad9e324a Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:17:43 +0200 Subject: [PATCH 189/340] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index f62314f681..88fdd8c1be 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:15+0200\n" +"PO-Revision-Date: 2011-06-16 22:17+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1053,10 +1053,9 @@ msgid "Close" msgstr "Zapri" #: js/messages.php:64 server_status.php:397 -#, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" -msgstr "Izbira strežnika" +msgstr "Grafikon prometa v živo" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" From e9a084ce3d7ed0b102b9dddc900e6820f1b21372 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:19:04 +0200 Subject: [PATCH 190/340] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 88fdd8c1be..2f4612c9c0 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:17+0200\n" +"PO-Revision-Date: 2011-06-16 22:19+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1059,7 +1059,7 @@ msgstr "Grafikon prometa v živo" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" -msgstr "" +msgstr "Grafikon povezav/procesov v živo" #: js/messages.php:66 server_status.php:429 #, fuzzy From cd7e9f36a88260e99413fac3c5315ef98883d9c3 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:19:28 +0200 Subject: [PATCH 191/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 2f4612c9c0..7497879e42 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1062,10 +1062,9 @@ msgid "Live conn./process chart" msgstr "Grafikon povezav/procesov v živo" #: js/messages.php:66 server_status.php:429 -#, fuzzy #| msgid "Show query chart" msgid "Live query chart" -msgstr "Prikaži graf poizvedbe" +msgstr "Grafikon poizvedb v živo" #: js/messages.php:68 msgid "Static data" From 0ca3dc7318e7ba8df5ddb00a02230b74f402565f Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:19:34 +0200 Subject: [PATCH 192/340] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 7497879e42..24d2e9eab3 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1068,7 +1068,7 @@ msgstr "Grafikon poizvedb v živo" #: js/messages.php:68 msgid "Static data" -msgstr "" +msgstr "Statični podatki" #. l10n: Total number of queries #: js/messages.php:70 libraries/build_html_for_db.lib.php:45 From 40a283e778b90f2a8a48c3a3c99f7bdd0a7fe8a9 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:19:43 +0200 Subject: [PATCH 193/340] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 24d2e9eab3..4b23b59405 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1081,7 +1081,7 @@ msgstr "Skupaj" #. l10n: Other, small valued, queries #: js/messages.php:72 server_status.php:592 msgid "Other" -msgstr "" +msgstr "Drugo" #. l10n: Thousands separator #: js/messages.php:74 libraries/common.lib.php:1375 From 2dfc62c01ea0f9fc9745a60d862863a90df9cbb6 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:20:09 +0200 Subject: [PATCH 194/340] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 4b23b59405..07813a66ed 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:19+0200\n" +"PO-Revision-Date: 2011-06-16 22:20+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -4933,10 +4933,9 @@ msgid "Language" msgstr "Jezik" #: libraries/display_tbl.lib.php:397 -#, fuzzy #| msgid "Textarea columns" msgid "Restore column order" -msgstr "Stolpcev besedilnega polja" +msgstr "Obnovi vrstni red stolpcev" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" From e288d74e49231b1afe5837bdfacfa8156e22120a Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:20:13 +0200 Subject: [PATCH 195/340] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 07813a66ed..e27d2d4e46 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4939,7 +4939,7 @@ msgstr "Obnovi vrstni red stolpcev" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" -msgstr "" +msgstr "Povlecite za preureditev" #: libraries/display_tbl.lib.php:412 #, fuzzy From 7f7d2faee54a96efb5149f510242f0e570114e68 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:20:24 +0200 Subject: [PATCH 196/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index e27d2d4e46..4f041d9664 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4942,10 +4942,9 @@ msgid "Drag to reorder" msgstr "Povlecite za preureditev" #: libraries/display_tbl.lib.php:412 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "Kliknite za označitev" +msgstr "Kliknite za razvrstitev" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" From 213803983335da15dfc2855db5b8c4465b688f95 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:21:37 +0200 Subject: [PATCH 197/340] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 4f041d9664..076a40d52c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:20+0200\n" +"PO-Revision-Date: 2011-06-16 22:21+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -8277,10 +8277,9 @@ msgid "Runtime Information" msgstr "Podatki o izvajanju" #: server_status.php:371 -#, fuzzy #| msgid "Server Choice" msgid "Server traffic" -msgstr "Izbira strežnika" +msgstr "Promet strežnika" #: server_status.php:372 msgid "Query statistics" From f7fcac36062af2d2859973b74870182c84efed95 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:21:38 +0200 Subject: [PATCH 198/340] Translation update done using Pootle. --- po/ru.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/ru.po b/po/ru.po index 9cb7e1ce5f..7ecc61351d 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:16+0200\n" +"PO-Revision-Date: 2011-06-16 22:21+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -8993,6 +8993,9 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" +"Количество свободных блоков памяти в кеше запроса. Высокое значение может " +"указывать на фрагментацию, проблема которой решается выполнением запроса " +"FLUSH QUERY CACHE." #: server_status.php:927 msgid "The amount of free memory for query cache." From 39618c10f3eab5b555fd8d9f6761dc782d6b677c Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:21:51 +0200 Subject: [PATCH 199/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 076a40d52c..12b1eb7f9f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8286,10 +8286,9 @@ msgid "Query statistics" msgstr "Statistika poizvedb" #: server_status.php:373 -#, fuzzy #| msgid "See slave status table" msgid "All status variables" -msgstr "Oglej si tabelo stanj podrejencev" +msgstr "Vse spremenljivke stanja" #: server_status.php:383 server_status.php:416 #, fuzzy From eaf31970eb77c1487242873cb11a1ccbb68583bc Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:22:11 +0200 Subject: [PATCH 200/340] Translation update done using Pootle. --- po/ru.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index 7ecc61351d..189c6698bd 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:21+0200\n" +"PO-Revision-Date: 2011-06-16 22:22+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -9754,10 +9754,9 @@ msgid "Line" msgstr "Линия" #: tbl_chart.php:88 -#, fuzzy #| msgid "Inline" msgid "Spline" -msgstr "Быстрая правка" +msgstr "Сплайн" #: tbl_chart.php:89 msgid "Pie" From bf4a98a421ef55b36a560ed9adb475c18ec0abcb Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:22:31 +0200 Subject: [PATCH 201/340] Translation update done using Pootle. --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 189c6698bd..c5c6cadad8 100644 --- a/po/ru.po +++ b/po/ru.po @@ -9767,10 +9767,9 @@ msgid "Stacked" msgstr "Уложенный" #: tbl_chart.php:94 -#, fuzzy #| msgid "Report title:" msgid "Chart title" -msgstr "Заголовок отчета:" +msgstr "Заголовок графика" #: tbl_chart.php:99 msgid "X-Axis:" From 25acb441710010c618b7b8fc31a9238889b8ab61 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:22:54 +0200 Subject: [PATCH 202/340] Translation update done using Pootle. --- po/ru.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ru.po b/po/ru.po index c5c6cadad8..ec2bb5343a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -9773,7 +9773,7 @@ msgstr "Заголовок графика" #: tbl_chart.php:99 msgid "X-Axis:" -msgstr "" +msgstr "Ось-X:" #: tbl_chart.php:113 #, fuzzy From c0093414aecf7f134e8d816db46d54c45249a935 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:23:07 +0200 Subject: [PATCH 203/340] Translation update done using Pootle. --- po/ru.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index ec2bb5343a..c396acae6f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:22+0200\n" +"PO-Revision-Date: 2011-06-16 22:23+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -9776,10 +9776,9 @@ msgid "X-Axis:" msgstr "Ось-X:" #: tbl_chart.php:113 -#, fuzzy #| msgid "SQL queries" msgid "Series:" -msgstr "SQL запросы" +msgstr "Серии:" #: tbl_chart.php:115 #, fuzzy From ddda8d649f30f85244a2db93ccdf02172ba753f4 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:23:28 +0200 Subject: [PATCH 204/340] Translation update done using Pootle. --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index c396acae6f..9ba1c6f018 100644 --- a/po/ru.po +++ b/po/ru.po @@ -9781,10 +9781,9 @@ msgid "Series:" msgstr "Серии:" #: tbl_chart.php:115 -#, fuzzy #| msgid "Textarea columns" msgid "The remaining columns" -msgstr "Столбцов в текстовом поле" +msgstr "Оставшиеся столбцы" #: tbl_chart.php:128 #, fuzzy From e9874a0530edd4e17838d80242db2347966109c8 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:23:35 +0200 Subject: [PATCH 205/340] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 12b1eb7f9f..9a35d2c963 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:21+0200\n" +"PO-Revision-Date: 2011-06-16 22:23+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -8291,10 +8291,9 @@ msgid "All status variables" msgstr "Vse spremenljivke stanja" #: server_status.php:383 server_status.php:416 -#, fuzzy #| msgid "Refresh" msgid "Refresh rate" -msgstr "Osveži" +msgstr "Hitrost osveževanja" #: server_status.php:384 server_status.php:417 #, fuzzy From 54b5c8044203f27f2812653d2fa3fd339eecc11f Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:23:45 +0200 Subject: [PATCH 206/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 9a35d2c963..bde81742c1 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8296,10 +8296,9 @@ msgid "Refresh rate" msgstr "Hitrost osveževanja" #: server_status.php:384 server_status.php:417 -#, fuzzy #| msgid "Second" msgid "second" -msgstr "Sekunda" +msgstr "sekunda" #: server_status.php:385 server_status.php:386 server_status.php:387 #: server_status.php:388 server_status.php:389 server_status.php:418 From 9d5fb9dabe2ce391376c3b10e2be906eb3c4c2bf Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:23:49 +0200 Subject: [PATCH 207/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index bde81742c1..9269dbd79d 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8304,10 +8304,9 @@ msgstr "sekunda" #: server_status.php:388 server_status.php:389 server_status.php:418 #: server_status.php:419 server_status.php:420 server_status.php:421 #: server_status.php:422 -#, fuzzy #| msgid "Second" msgid "seconds" -msgstr "Sekunda" +msgstr "sekund" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 From 353ebf04475ded4572741feefa299e9f863dcc44 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:23:51 +0200 Subject: [PATCH 208/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 9269dbd79d..b96b43549f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8311,10 +8311,9 @@ msgstr "sekund" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 #: server_status.php:425 server_status.php:426 -#, fuzzy #| msgid "Minute" msgid "minutes" -msgstr "Minuta" +msgstr "minut" #: server_status.php:446 #, fuzzy From 0efcc59ad164b486a096a27997155b0d08ef1f8c Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:23:52 +0200 Subject: [PATCH 209/340] Translation update done using Pootle. --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 9ba1c6f018..65e2adfe63 100644 --- a/po/ru.po +++ b/po/ru.po @@ -9786,10 +9786,9 @@ msgid "The remaining columns" msgstr "Оставшиеся столбцы" #: tbl_chart.php:128 -#, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" -msgstr "Подпись для оси X" +msgstr "Подпись для оси X:" #: tbl_chart.php:128 #, fuzzy From 86c3429dfcfb4c27267f5ec9583a7270b2fb27cc Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:23:59 +0200 Subject: [PATCH 210/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index b96b43549f..efb3c40595 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8316,10 +8316,9 @@ msgid "minutes" msgstr "minut" #: server_status.php:446 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "Ne spreminjaj gesla" +msgstr "Vsebuje besedo:" #: server_status.php:451 #, fuzzy From 553e052cf6dbd83cdc9d1508dcfbe0ba7e442c6c Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:24:04 +0200 Subject: [PATCH 211/340] Translation update done using Pootle. --- po/ru.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ru.po b/po/ru.po index 65e2adfe63..73ae7ba8f8 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:23+0200\n" +"PO-Revision-Date: 2011-06-16 22:24+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -9791,10 +9791,9 @@ msgid "X-Axis label:" msgstr "Подпись для оси X:" #: tbl_chart.php:128 -#, fuzzy #| msgid "Value" msgid "X Values" -msgstr "Значение" +msgstr "Значения X" #: tbl_chart.php:129 #, fuzzy From 8110fa1c45d2acd5def8af094922237cdf52264d Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:24:16 +0200 Subject: [PATCH 212/340] Translation update done using Pootle. --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 73ae7ba8f8..e114881c90 100644 --- a/po/ru.po +++ b/po/ru.po @@ -9796,10 +9796,9 @@ msgid "X Values" msgstr "Значения X" #: tbl_chart.php:129 -#, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" -msgstr "Подпись для оси Y" +msgstr "Подпись для оси Y:" #: tbl_chart.php:129 #, fuzzy From 7bc6e67a849d7fc420136d15ff9ddd8085cd6182 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:24:18 +0200 Subject: [PATCH 213/340] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index efb3c40595..d49d34d555 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:23+0200\n" +"PO-Revision-Date: 2011-06-16 22:24+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -8321,10 +8321,9 @@ msgid "Containing the word:" msgstr "Vsebuje besedo:" #: server_status.php:451 -#, fuzzy #| msgid "Show open tables" msgid "Show only alert values" -msgstr "Pokaži odprte tabele" +msgstr "Prikaži samo opozorilne vrednosti" #: server_status.php:455 msgid "Filter by category..." From de73d60118c2a1c22723042b9f2089120b3b1227 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:24:25 +0200 Subject: [PATCH 214/340] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index d49d34d555..c7d0105472 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8327,7 +8327,7 @@ msgstr "Prikaži samo opozorilne vrednosti" #: server_status.php:455 msgid "Filter by category..." -msgstr "" +msgstr "Filtriraj po kategoriji ..." #: server_status.php:468 #, fuzzy From 5bd96211e194673d04972792bce565f5ddaaac43 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:24:36 +0200 Subject: [PATCH 215/340] Translation update done using Pootle. --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index e114881c90..2f8c84671d 100644 --- a/po/ru.po +++ b/po/ru.po @@ -9801,10 +9801,9 @@ msgid "Y-Axis label:" msgstr "Подпись для оси Y:" #: tbl_chart.php:129 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "Значение" +msgstr "Значения Y" #: tbl_create.php:56 #, php-format From 87bd266c243ca602097413295d8a240647d52d21 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:24:41 +0200 Subject: [PATCH 216/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index c7d0105472..0eb04226a8 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8330,10 +8330,9 @@ msgid "Filter by category..." msgstr "Filtriraj po kategoriji ..." #: server_status.php:468 -#, fuzzy #| msgid "Related Links" msgid "Related links:" -msgstr "Sorodne povezave" +msgstr "Sorodne povezave:" #: server_status.php:513 server_status.php:545 server_status.php:666 #: server_status.php:711 From f58659d70542fab0b5fe2b30bca2c48d479ca5f6 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:25:01 +0200 Subject: [PATCH 217/340] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 0eb04226a8..c894250ff5 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:24+0200\n" +"PO-Revision-Date: 2011-06-16 22:25+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -8354,7 +8354,7 @@ msgstr "Vrsta poizvedbe" #. l10n: # = Amount of queries #: server_status.php:543 msgid "#" -msgstr "" +msgstr "Št." #: server_status.php:615 #, php-format From 30b59e4f319b1876dc5ec6b7cb862e5fac5ba2b0 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:25:27 +0200 Subject: [PATCH 218/340] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index c894250ff5..bdd0f8eed6 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8359,7 +8359,7 @@ msgstr "Št." #: server_status.php:615 #, php-format msgid "Network traffic since startup: %s" -msgstr "" +msgstr "Promet omrežja od zagona: %s" #: server_status.php:623 #, php-format From 5bfe53a787e4dc29e9d9d84f96072a56c47a4f51 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:26:29 +0200 Subject: [PATCH 219/340] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index bdd0f8eed6..08c293709e 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:25+0200\n" +"PO-Revision-Date: 2011-06-16 22:26+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -8442,10 +8442,9 @@ msgid "ID" msgstr "ID" #: server_status.php:846 -#, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Ne morem se povezati s strežnikom MySQL" +msgstr "Število spodletelih poskusov povezave s strežnikom MySQL." #: server_status.php:847 msgid "" From ba0dc54309124161a5e8b60fb2ac94931c62a4a6 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Thu, 16 Jun 2011 22:26:58 +0200 Subject: [PATCH 220/340] Translation update done using Pootle. --- po/ru.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 2f8c84671d..283aaf183b 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:24+0200\n" +"PO-Revision-Date: 2011-06-16 22:26+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -8417,7 +8417,7 @@ msgstr "Тип запроса" #. l10n: # = Amount of queries #: server_status.php:543 msgid "#" -msgstr "№" +msgstr "Кол-во" #: server_status.php:615 #, php-format From 42afef738c85cf3d6e0a662e1cd1747e8a003115 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:29:18 +0200 Subject: [PATCH 221/340] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 08c293709e..b90493e666 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:26+0200\n" +"PO-Revision-Date: 2011-06-16 22:29+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -9651,10 +9651,9 @@ msgid "Line" msgstr "Črtni" #: tbl_chart.php:88 -#, fuzzy #| msgid "Inline" msgid "Spline" -msgstr "V vrstici" +msgstr "Zlepek" #: tbl_chart.php:89 msgid "Pie" From 95c7b7a0769db5acfe4216964ac28512b4d8ee1c Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:29:25 +0200 Subject: [PATCH 222/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index b90493e666..cace4aa438 100644 --- a/po/sl.po +++ b/po/sl.po @@ -9664,10 +9664,9 @@ msgid "Stacked" msgstr "Zloženi" #: tbl_chart.php:94 -#, fuzzy #| msgid "Report title:" msgid "Chart title" -msgstr "Naslov poročila:" +msgstr "Naslov grafikona" #: tbl_chart.php:99 msgid "X-Axis:" From 03baba5c14f43a9184d8354e0a5fc7c8742a8e81 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:29:34 +0200 Subject: [PATCH 223/340] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index cace4aa438..e8ef11048f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -9670,7 +9670,7 @@ msgstr "Naslov grafikona" #: tbl_chart.php:99 msgid "X-Axis:" -msgstr "" +msgstr "Os x:" #: tbl_chart.php:113 #, fuzzy From e2652acc8d6e084f2447690f61840f1f2745b5b5 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:29:40 +0200 Subject: [PATCH 224/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index e8ef11048f..d727c16739 100644 --- a/po/sl.po +++ b/po/sl.po @@ -9673,10 +9673,9 @@ msgid "X-Axis:" msgstr "Os x:" #: tbl_chart.php:113 -#, fuzzy #| msgid "SQL queries" msgid "Series:" -msgstr "Poizvedbe SQL" +msgstr "Serije:" #: tbl_chart.php:115 #, fuzzy From 1104fd9650992d7ade95f1ccef9b64778fd04f80 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:29:47 +0200 Subject: [PATCH 225/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index d727c16739..2428acdb9a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -9678,10 +9678,9 @@ msgid "Series:" msgstr "Serije:" #: tbl_chart.php:115 -#, fuzzy #| msgid "Textarea columns" msgid "The remaining columns" -msgstr "Stolpcev besedilnega polja" +msgstr "Preostali stolpci" #: tbl_chart.php:128 #, fuzzy From 5b468f3f33edf5eb07c0378bb42d1d454967f358 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:29:52 +0200 Subject: [PATCH 226/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 2428acdb9a..12d14e987e 100644 --- a/po/sl.po +++ b/po/sl.po @@ -9683,10 +9683,9 @@ msgid "The remaining columns" msgstr "Preostali stolpci" #: tbl_chart.php:128 -#, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" -msgstr "Oznaka osi X" +msgstr "Oznaka osi x:" #: tbl_chart.php:128 #, fuzzy From 408d18de29bfa3c8f71b016e68e1fa5da6e811a0 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:29:56 +0200 Subject: [PATCH 227/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 12d14e987e..8c9549b64d 100644 --- a/po/sl.po +++ b/po/sl.po @@ -9688,10 +9688,9 @@ msgid "X-Axis label:" msgstr "Oznaka osi x:" #: tbl_chart.php:128 -#, fuzzy #| msgid "Value" msgid "X Values" -msgstr "Vrednost" +msgstr "Vrednosti x" #: tbl_chart.php:129 #, fuzzy From 01fe11f0e613fd2447fca535ded967eda2f3ed22 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:30:02 +0200 Subject: [PATCH 228/340] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 8c9549b64d..510fa7e2f7 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:29+0200\n" +"PO-Revision-Date: 2011-06-16 22:30+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -9693,10 +9693,9 @@ msgid "X Values" msgstr "Vrednosti x" #: tbl_chart.php:129 -#, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" -msgstr "Oznaka osi Y" +msgstr "Oznaka osi y:" #: tbl_chart.php:129 #, fuzzy From de6ba1be2efe627ce8542496d137aa93047ab310 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:30:07 +0200 Subject: [PATCH 229/340] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 510fa7e2f7..6fab9b268c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -9698,10 +9698,9 @@ msgid "Y-Axis label:" msgstr "Oznaka osi y:" #: tbl_chart.php:129 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "Vrednost" +msgstr "Vrednosti y" #: tbl_create.php:56 #, php-format From cde6c028fd003ba349e56cf50645efe223816d47 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:31:09 +0200 Subject: [PATCH 230/340] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 6fab9b268c..8c459c3690 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:30+0200\n" +"PO-Revision-Date: 2011-06-16 22:31+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -4948,7 +4948,7 @@ msgstr "Kliknite za razvrstitev" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" -msgstr "" +msgstr "Kliknite za označitev/opustitev" #: libraries/display_tbl.lib.php:425 #, php-format From 6d214ca29b726e7582aceab22d0510dbadb5fc7e Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:31:26 +0200 Subject: [PATCH 231/340] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 8c459c3690..4b149f5bd1 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8465,7 +8465,7 @@ msgstr "" #: server_status.php:849 msgid "" "The number of connection attempts (successful or not) to the MySQL server." -msgstr "" +msgstr "Število poskusov povezave (uspešnih ali ne) na strežnik MySQL." #: server_status.php:850 msgid "" From 346f56e4a3dbe8d17027d3b9cf7c56c6b0e64b76 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:32:20 +0200 Subject: [PATCH 232/340] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 4b149f5bd1..d86626bc3f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:31+0200\n" +"PO-Revision-Date: 2011-06-16 22:32+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -8888,7 +8888,7 @@ msgstr "" msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." -msgstr "" +msgstr "Največje število sočasno uporabljenih povezav od zagona strežnika." #: server_status.php:921 msgid "The number of rows waiting to be written in INSERT DELAYED queues." From 218188bbf766d347f2f8c05256ecfd9939834398 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 16 Jun 2011 22:33:55 +0200 Subject: [PATCH 233/340] Translation update done using Pootle. --- po/sl.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index d86626bc3f..f1139fb485 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-16 22:32+0200\n" +"PO-Revision-Date: 2011-06-16 22:33+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -8920,6 +8920,9 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" +"Število prostih pomnilniških blokov v predpomnilniku poizvedb. Visoko " +"število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z " +"izvedbo stavka FLUSH QUERY CACHE." #: server_status.php:927 msgid "The amount of free memory for query cache." From 1c5be4523737f014c1038375b040cc66acc564b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:06:29 +0200 Subject: [PATCH 234/340] Update po files --- po/af.po | 987 +++++++++++++++++----------------- po/ar.po | 1024 ++++++++++++++++++------------------ po/az.po | 999 ++++++++++++++++++----------------- po/be.po | 1015 ++++++++++++++++++----------------- po/be@latin.po | 1036 ++++++++++++++++++------------------ po/bg.po | 962 ++++++++++++++++++---------------- po/bn.po | 1251 ++++++++++++++++++++++--------------------- po/bs.po | 995 ++++++++++++++++++----------------- po/ca.po | 990 +++++++++++++++++----------------- po/cs.po | 970 +++++++++++++++++----------------- po/cy.po | 1022 ++++++++++++++++++------------------ po/da.po | 1024 ++++++++++++++++++------------------ po/de.po | 990 +++++++++++++++++----------------- po/el.po | 986 +++++++++++++++++----------------- po/en_GB.po | 1054 +++++++++++++++++++------------------ po/es.po | 967 +++++++++++++++++----------------- po/et.po | 1007 ++++++++++++++++++----------------- po/eu.po | 995 ++++++++++++++++++----------------- po/fa.po | 1005 ++++++++++++++++++----------------- po/fi.po | 984 +++++++++++++++++----------------- po/fr.po | 988 +++++++++++++++++----------------- po/gl.po | 1040 ++++++++++++++++++------------------ po/he.po | 1005 ++++++++++++++++++----------------- po/hi.po | 978 +++++++++++++++++----------------- po/hr.po | 1019 ++++++++++++++++++----------------- po/hu.po | 998 ++++++++++++++++++----------------- po/id.po | 969 +++++++++++++++++----------------- po/it.po | 974 +++++++++++++++++----------------- po/ja.po | 1013 ++++++++++++++++++----------------- po/ka.po | 1282 +++++++++++++++++++++++---------------------- po/ko.po | 999 ++++++++++++++++++----------------- po/lt.po | 988 +++++++++++++++++----------------- po/lv.po | 1005 ++++++++++++++++++----------------- po/mk.po | 1005 ++++++++++++++++++----------------- po/ml.po | 936 +++++++++++++++++---------------- po/mn.po | 1028 ++++++++++++++++++------------------ po/ms.po | 991 ++++++++++++++++++----------------- po/nb.po | 984 +++++++++++++++++----------------- po/nl.po | 974 +++++++++++++++++----------------- po/phpmyadmin.pot | 935 +++++++++++++++++---------------- po/pl.po | 1008 ++++++++++++++++++----------------- po/pt.po | 973 +++++++++++++++++----------------- po/pt_BR.po | 994 ++++++++++++++++++----------------- po/ro.po | 1249 ++++++++++++++++++++++--------------------- po/ru.po | 971 +++++++++++++++++----------------- po/si.po | 1204 +++++++++++++++++++++--------------------- po/sk.po | 972 +++++++++++++++++----------------- po/sl.po | 961 ++++++++++++++++----------------- po/sq.po | 1005 ++++++++++++++++++----------------- po/sr.po | 1015 ++++++++++++++++++----------------- po/sr@latin.po | 1015 ++++++++++++++++++----------------- po/sv.po | 975 +++++++++++++++++----------------- po/ta.po | 944 +++++++++++++++++---------------- po/te.po | 992 ++++++++++++++++++----------------- po/th.po | 1003 ++++++++++++++++++----------------- po/tr.po | 975 +++++++++++++++++----------------- po/tt.po | 1009 ++++++++++++++++++----------------- po/ug.po | 1006 ++++++++++++++++++----------------- po/uk.po | 980 +++++++++++++++++----------------- po/ur.po | 982 +++++++++++++++++----------------- po/uz.po | 1052 +++++++++++++++++++------------------ po/uz@latin.po | 1054 +++++++++++++++++++------------------ po/zh_CN.po | 962 ++++++++++++++++++---------------- po/zh_TW.po | 954 +++++++++++++++++---------------- 64 files changed, 33284 insertions(+), 31345 deletions(-) diff --git a/po/af.po b/po/af.po index 70f74707ad..93258c47d7 100644 --- a/po/af.po +++ b/po/af.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" +"Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -44,7 +44,7 @@ msgstr "Soek" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -81,7 +81,7 @@ msgstr "Sleutelnaam" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 #, fuzzy msgid "Description" msgstr "geen Beskrywing" @@ -165,7 +165,7 @@ msgstr "Tipe" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -194,7 +194,7 @@ msgstr "Skakels na" msgid "Comments" msgstr "Kommentaar" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,7 +210,7 @@ msgstr "Kommentaar" msgid "No" msgstr "Nee" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -272,7 +272,7 @@ msgstr "Tabel %s is gekopieer na %s." msgid "Rename database to" msgstr "Hernoem tabel na" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 #, fuzzy msgid "Command" msgstr "Kommentaar" @@ -383,7 +383,7 @@ msgstr "Rye" msgid "Size" msgstr "Grootte" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "in gebruik" @@ -410,7 +410,7 @@ msgstr "" msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -603,63 +603,63 @@ msgstr "Binne tabel(le):" msgid "Inside column:" msgstr "Binne tabel(le):" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Geen tabelle in databasis gevind nie." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaak" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Veld %s is verwyder" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is verwyder" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Som" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -667,23 +667,23 @@ msgstr "" msgid "With selected:" msgstr "Met gekose:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Kies Alles" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Kies Niks" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -691,58 +691,58 @@ msgstr "" msgid "Export" msgstr "Export" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Drukker mooi (print view)" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Maak Leeg" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Verwyder" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Kontroleer tabel" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Herstel tabel" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analiseer tabel" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Vervang tabel data met leer (file)" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Vervang tabel data met leer (file)" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "" @@ -757,7 +757,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -776,7 +776,7 @@ msgstr "Skep" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -878,8 +878,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1064,166 +1064,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Bediener Keuse" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL-stelling" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -#, fuzzy -msgid "Total" -msgstr "totaal" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Local" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -#, fuzzy -msgid "Renaming Databases" -msgstr "Hernoem tabel na" - -#: js/messages.php:92 -#, fuzzy -msgid "Reload Database" -msgstr "Hernoem tabel na" - -#: js/messages.php:93 -#, fuzzy -msgid "Copying Database" -msgstr "Geen databasisse" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "" - -#: js/messages.php:95 -#, fuzzy -#| msgid "You have to choose at least one column to display" -msgid "Table must have at least one column" -msgstr "Jy moet ten minste een Kolom kies om te vertoon" - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "Skep 'n nuwe bladsy" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Gebruik Tabelle" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Soek" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL-stelling" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL-stelling" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Beloer Data" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Delete" -msgid "Deleting" -msgstr "Verwyder" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL-stelling" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL-stelling" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1232,7 +1073,206 @@ msgstr "" msgid "Edit" msgstr "Verander" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Bediener Keuse" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL-stelling" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +#, fuzzy +msgid "Total" +msgstr "totaal" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Bediener Keuse" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "" + +#: js/messages.php:85 +msgid "Connections / Processes" +msgstr "" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL-stelling" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Ry Statistiek" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Local" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +#, fuzzy +msgid "Renaming Databases" +msgstr "Hernoem tabel na" + +#: js/messages.php:105 +#, fuzzy +msgid "Reload Database" +msgstr "Hernoem tabel na" + +#: js/messages.php:106 +#, fuzzy +msgid "Copying Database" +msgstr "Geen databasisse" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "" + +#: js/messages.php:108 +#, fuzzy +#| msgid "You have to choose at least one column to display" +msgid "Table must have at least one column" +msgstr "Jy moet ten minste een Kolom kies om te vertoon" + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "Skep 'n nuwe bladsy" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Gebruik Tabelle" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Soek" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL-stelling" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL-stelling" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Beloer Data" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "Verwyder" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL-stelling" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL-stelling" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1240,78 +1280,78 @@ msgstr "Verander" msgid "Save" msgstr "Stoor" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL-stelling" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL-stelling" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoreer" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kies 'n Veld om te vertoon" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Verander wagwoord" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Verander wagwoord" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Ma" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1319,31 +1359,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Geen databasisse" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "Geen" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1351,95 +1391,95 @@ msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy msgid "Today" msgstr "totaal" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Biner" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mei" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1447,176 +1487,176 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Des" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "So" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Di" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fr" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in gebruik" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "Records" msgid "Second" @@ -1842,8 +1882,8 @@ msgstr "Welkom by %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1977,7 +2017,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 #, fuzzy msgid "Tables" msgstr "Tabel" @@ -2112,7 +2152,7 @@ msgid "Documentation" msgstr "Dokumentasie" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-stelling" @@ -2141,7 +2181,7 @@ msgid "Create PHP Code" msgstr "Skep PHP Kode" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4769,8 +4809,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4788,7 +4828,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Geen" @@ -5032,7 +5072,7 @@ msgid "The row has been deleted" msgstr "Die ry is verwyder" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Vermoor" @@ -5123,7 +5163,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "" @@ -5467,8 +5507,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5583,7 +5623,7 @@ msgstr "Vertoon Funksies" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Gasheer (host)" @@ -6272,13 +6312,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Waarde" @@ -6514,13 +6554,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Biner" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "" @@ -6813,7 +6853,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Voeg 'n nuwe gebruiker by" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "" @@ -6974,7 +7014,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Gebruiker" @@ -7425,18 +7465,18 @@ msgstr "Die \"%s\" databasis bestaan nie!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "Velde" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "" @@ -7830,8 +7870,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7954,7 +7994,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8093,262 +8133,253 @@ msgid "" "like to
configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "Uitgebreide toevoegings" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "Wys tabelle" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Bediener Keuse" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Ry Statistiek" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy msgid "Refresh rate" msgstr "Voortgebring deur" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Records" msgid "second" msgstr "Rekords" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Records" msgid "seconds" msgstr "Rekords" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "in gebruik" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Moenie die wagwoord verander nie" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "Wys tabelle" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy msgid "Related links:" msgstr "Operasies" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "" -#: server_status.php:784 -msgid "Processes" -msgstr "" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8356,78 +8387,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8435,7 +8466,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8443,42 +8474,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8486,33 +8517,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8521,227 +8552,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8749,99 +8780,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8849,18 +8880,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8868,7 +8899,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -8989,7 +9020,7 @@ msgstr "" msgid "Session value" msgstr "" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "" diff --git a/po/ar.po b/po/ar.po index 218438f8d4..3f279de561 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-04-21 13:56+0200\n" "Last-Translator: \n" "Language-Team: arabic \n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "ابحث" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "اسم المفتاح" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "الوصف" @@ -168,7 +168,7 @@ msgstr "النوع" msgid "Null" msgstr "خالي" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -197,7 +197,7 @@ msgstr "مرتبط بـ" msgid "Comments" msgstr "تعليقات" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -213,7 +213,7 @@ msgstr "تعليقات" msgid "No" msgstr "لا" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -273,7 +273,7 @@ msgstr "تم نسخ قاعدة البيانات %s إلى %s" msgid "Rename database to" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "أمر" @@ -349,8 +349,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" -"s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" +"%s." #: db_operations.php:600 #, fuzzy @@ -380,7 +380,7 @@ msgstr "صفوف" msgid "Size" msgstr "الحجم" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "قيد الإستعمال" @@ -406,7 +406,7 @@ msgstr "التحديث الأخير" msgid "Last check" msgstr "التحقق الأخير" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -607,63 +607,63 @@ msgstr "داخل الجدول)الجداول(:" msgid "Inside column:" msgstr "داخل الجدول)الجداول(:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "لا توجد جداول متوفره في قاعدة البيانات هذه!." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s أفرغت محتوياتها" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذفت" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "المجموع" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -671,23 +671,23 @@ msgstr "" msgid "With selected:" msgstr ": على المحدد" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "اختر الكل" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "إلغاء تحديد الكل" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "تحقق من overhead" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -695,60 +695,60 @@ msgstr "تحقق من overhead" msgid "Export" msgstr "تصدير" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "إفراغ محتوى" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "حذف" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "التحقق من الجدول" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "ضغط الجدول" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "إصلاح الجدول" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "تحليل الجدول" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "اذهب إلى الجدول" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "استبدال بيانات الجدول بالملف" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "استبدال بيانات الجدول بالملف" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "قاموس البيانات" @@ -763,7 +763,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -781,7 +781,7 @@ msgstr "أنشئ" msgid "Updated" msgstr "محدث" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "وضع" @@ -881,8 +881,8 @@ msgstr "تم حفظ الـDump إلى الملف %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1073,177 +1073,7 @@ msgstr "احذف المستخدمين المحددين" msgid "Close" msgstr "أغلق" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "اختيار الخادم" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "SQL query" -msgid "Live query chart" -msgstr "استعلام-SQL" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "مجموع كلي" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "ألغ" - -#: js/messages.php:83 -msgid "Loading" -msgstr "" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "معالَجات" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "موافق" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "إنسخ قاعدة البيانات إلى" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "مجموعة المحارف" - -#: js/messages.php:95 -#, fuzzy -#| msgid "You have to choose at least one column to display" -msgid "Table must have at least one column" -msgstr "عليك اختيار عمود واحد على الأقل للعرض" - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "أنشئ الجدول" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "استخدم الجدول" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "ابحث" - -#: js/messages.php:105 -#, fuzzy -#| msgid "in query" -msgid "Hide search results" -msgstr "في الاستعلام" - -#: js/messages.php:106 -#, fuzzy -#| msgid "SQL query" -msgid "Show search results" -msgstr "استعلام-SQL" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "استعراض" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "قيد حذف %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -#| msgid "in query" -msgid "Hide query box" -msgstr "في الاستعلام" - -#: js/messages.php:115 -#, fuzzy -#| msgid "SQL query" -msgid "Show query box" -msgstr "استعلام-SQL" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1252,7 +1082,219 @@ msgstr "" msgid "Edit" msgstr "تحرير" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "اختيار الخادم" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "SQL query" +msgid "Live query chart" +msgstr "استعلام-SQL" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "مجموع كلي" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "اختيار الخادم" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "معالَجات" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "اتصالات" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +msgid "Issued queries" +msgstr "" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +#| msgid "Databases statistics" +msgid "Query statistics" +msgstr "إحصائيات قواعد البيانات" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "ألغ" + +#: js/messages.php:96 +msgid "Loading" +msgstr "" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "معالَجات" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "موافق" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "إنسخ قاعدة البيانات إلى" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "مجموعة المحارف" + +#: js/messages.php:108 +#, fuzzy +#| msgid "You have to choose at least one column to display" +msgid "Table must have at least one column" +msgstr "عليك اختيار عمود واحد على الأقل للعرض" + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "أنشئ الجدول" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "استخدم الجدول" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "ابحث" + +#: js/messages.php:118 +#, fuzzy +#| msgid "in query" +msgid "Hide search results" +msgstr "في الاستعلام" + +#: js/messages.php:119 +#, fuzzy +#| msgid "SQL query" +msgid "Show search results" +msgstr "استعلام-SQL" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "استعراض" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "قيد حذف %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +#| msgid "in query" +msgid "Hide query box" +msgstr "في الاستعلام" + +#: js/messages.php:128 +#, fuzzy +#| msgid "SQL query" +msgid "Show query box" +msgstr "استعلام-SQL" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1260,79 +1302,79 @@ msgstr "تحرير" msgid "Save" msgstr "حفظ" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "أخف" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "في الاستعلام" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy #| msgid "SQL query" msgid "Show search criteria" msgstr "استعلام-SQL" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "تجاهل" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "اختر الحقل لإظهاره" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "تغيير كلمة السر" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "ولد" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "تغيير كلمة السر" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "الإثنين" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1340,32 +1382,32 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "لايوجد قواعد بيانات" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "تبرع" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "سابق" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1373,94 +1415,94 @@ msgid "Next" msgstr "التالي" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "مجموع كلي" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "يناير" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "فبراير" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "مارس" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "أبريل" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "مايو" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "يونيو" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "يوليو" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "أغسطس" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "سبتمبر" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "أكتوبر" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "نوفمبر" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1468,174 +1510,174 @@ msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "ديسمبر" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "الأحد" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "الإثنين" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "الثلاثاء" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "الأربعاء" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "الخميس" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "الجمعة" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "السبت" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "الأحد" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "الإثنين" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "الثلاثاء" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "الأربعاء" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "الخميس" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "الجمعة" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "السبت" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "الأسبوع" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "الساعة" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "الدقيقة" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "الثانية" @@ -1859,8 +1901,8 @@ msgstr "أهلا بك في %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1997,7 +2039,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "جداول" @@ -2130,7 +2172,7 @@ msgid "Documentation" msgstr "مستندات وثائقية" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "استعلام-SQL" @@ -2159,7 +2201,7 @@ msgid "Create PHP Code" msgstr "أنشئ كود PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "حدث" @@ -4801,8 +4843,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4822,7 +4864,7 @@ msgstr "الضغط" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "لا شيء" @@ -5073,7 +5115,7 @@ msgid "The row has been deleted" msgstr "لقد تم حذف الصف" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "إبطال" @@ -5163,7 +5205,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "وضع InnoDB" @@ -5506,8 +5548,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5632,7 +5674,7 @@ msgstr "أنواع MIME المتوفرة" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "المزود" @@ -6323,13 +6365,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "متغير" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "القيمة" @@ -6569,12 +6611,12 @@ msgid "Synchronize" msgstr "تزامن" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "سجل ثنائي" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "متغيرات" @@ -6866,7 +6908,7 @@ msgstr "" msgid "+ Add a new value" msgstr "أضف مستخدم جديد" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "وقت" @@ -7072,7 +7114,7 @@ msgid "Protocol version" msgstr "نسخة البروتوكول" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "المستخدم" @@ -7176,8 +7218,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" -"s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" +"%s." #: main.php:314 msgid "" @@ -7524,17 +7566,17 @@ msgstr "الجدول \"%s\" غير موجود!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "الملفات" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "احذف الاستعلامات المعروضة" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "اعرض الاستعلامات كاملة" @@ -7926,8 +7968,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL " "مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " @@ -8056,7 +8098,7 @@ msgstr "تم إعادة قراءة الصلاحيات بنجاح." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8193,263 +8235,253 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "تم إيقاف العمليّة %s بنجاح." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "بيانات التشغيل" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "اختيار الخادم" -#: server_status.php:372 -#, fuzzy -#| msgid "Databases statistics" -msgid "Query statistics" -msgstr "إحصائيات قواعد البيانات" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "حدث" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "الثانية" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "الثانية" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "الدقيقة" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "لاتغير كلمة السر" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show tables" msgid "Show only alert values" msgstr "شاهد الجدول" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "الروابط" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "لكل ساعة" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "لكل دقيقة" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "لكل ثانية" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "نوع الاستعلام" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "مضى على عمل خادم MySQL مدة %s. بدأ العمل في %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "بيانات سير" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "استلم" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "أرسل" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "اتصالات" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "محاولات أخفقت" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "ألغي" -#: server_status.php:784 -msgid "Processes" -msgstr "معالَجات" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "رقم" -#: server_status.php:846 +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8457,78 +8489,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8536,7 +8568,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8544,42 +8576,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8587,33 +8619,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8622,227 +8654,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8850,99 +8882,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8950,18 +8982,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8969,7 +9001,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9092,7 +9124,7 @@ msgstr "متغيرات وإعدادات الخادم" msgid "Session value" msgstr "قيمة الجلسة" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "قيمة عامة" @@ -10170,8 +10202,8 @@ msgstr "أعد تسمية العرض الـ" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %" -#~ "sهنا%s." +#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط " +#~ "%sهنا%s." #~ msgid "Execute bookmarked query" #~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية" diff --git a/po/az.po b/po/az.po index fb34468cc5..b68f146bb0 100644 --- a/po/az.po +++ b/po/az.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -43,7 +43,7 @@ msgstr "Axtarış" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -80,7 +80,7 @@ msgstr "Açar söz" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Haqqında" @@ -162,7 +162,7 @@ msgstr "Tip" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -191,7 +191,7 @@ msgstr "Links to" msgid "Comments" msgstr "Qısa İzahatlar" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,7 +207,7 @@ msgstr "Qısa İzahatlar" msgid "No" msgstr "Xeyir" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -269,7 +269,7 @@ msgstr "%s cedveli %s - e kopyalandı." msgid "Rename database to" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Komanda Tipi" @@ -381,7 +381,7 @@ msgstr "Sıra sayı" msgid "Size" msgstr "Boy" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "istifadede" @@ -407,7 +407,7 @@ msgstr "En son yenilenme" msgid "Last check" msgstr "En son yoxlama" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -600,64 +600,64 @@ msgstr "Inside table(s):" msgid "Inside column:" msgstr "Inside table(s):" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Me'lumat bazasında cedvel yoxdur." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "%s cedveli boşaldıldı" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s sahesi leğv edildi" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "%s cedveli leğv edildi" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 #, fuzzy msgid "Replication" msgstr "Relations" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Cemi" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -665,23 +665,23 @@ msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur." msgid "With selected:" msgstr "Seçilenleri:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Hamısını Seç" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Heç Birini Seçme" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -689,58 +689,58 @@ msgstr "" msgid "Export" msgstr "Eksport" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Çap görüntüsü" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Boşalt" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Leğv et" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Cedveli yoxla" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Cedveli optimallaşdır" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Cedveli te'mir et" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Cedveli analiz et" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Replace table data with file" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Replace table data with file" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Me'lumat lüğeti" @@ -755,7 +755,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -774,7 +774,7 @@ msgstr "Qur" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -878,8 +878,8 @@ msgstr "Sxem %s faylına qeyd edildi." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1076,171 +1076,7 @@ msgstr "Remove selected users" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Quraşdırılmış Serverler" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL sorğusu" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Cemi" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Yerli" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Prosesler" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "Müveffeqiyyetle" - -#: js/messages.php:91 -#, fuzzy -msgid "Renaming Databases" -msgstr "Cedveli yeniden adlandır" - -#: js/messages.php:92 -#, fuzzy -msgid "Reload Database" -msgstr "Cedveli yeniden adlandır" - -#: js/messages.php:93 -#, fuzzy -msgid "Copying Database" -msgstr "Baza seçilmemişdir ve ya mövcud deyildir." - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Charset" - -#: js/messages.php:95 -#, fuzzy -#| msgid "You have to choose at least one column to display" -msgid "Table must have at least one column" -msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz" - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "Yeni Sehife qur" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Use Tables" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Axtarış" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL sorğusu" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL sorğusu" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "İçindekiler" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "%s silinir" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL sorğusu" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL sorğusu" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Motorlar" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1249,7 +1085,213 @@ msgstr "Motorlar" msgid "Edit" msgstr "Deyişdir" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Quraşdırılmış Serverler" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL sorğusu" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Cemi" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Quraşdırılmış Serverler" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Prosesler" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Elaqeler" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL sorğusu" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Sıra Statistikası" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Yerli" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Prosesler" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "Müveffeqiyyetle" + +#: js/messages.php:104 +#, fuzzy +msgid "Renaming Databases" +msgstr "Cedveli yeniden adlandır" + +#: js/messages.php:105 +#, fuzzy +msgid "Reload Database" +msgstr "Cedveli yeniden adlandır" + +#: js/messages.php:106 +#, fuzzy +msgid "Copying Database" +msgstr "Baza seçilmemişdir ve ya mövcud deyildir." + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Charset" + +#: js/messages.php:108 +#, fuzzy +#| msgid "You have to choose at least one column to display" +msgid "Table must have at least one column" +msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz" + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "Yeni Sehife qur" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Use Tables" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Axtarış" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL sorğusu" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL sorğusu" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "İçindekiler" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s silinir" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL sorğusu" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL sorğusu" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Motorlar" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1257,78 +1299,78 @@ msgstr "Deyişdir" msgid "Save" msgstr "Qeyd Et" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL sorğusu" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL sorğusu" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Diqqete Alma" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Gösterilecek Saheni Seç" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Parolu Deyişdir" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Qurucu" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Parolu Deyişdir" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Baz Ert" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1336,31 +1378,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "Heç biri" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Evvelki" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1368,96 +1410,96 @@ msgid "Next" msgstr "Sonrakı" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Cemi" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binary" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "May" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "İyun" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "İyul" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avq" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1465,176 +1507,176 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dek" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Baz" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Baz Ert" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Çerş Axş" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cüme" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Şen" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Baz" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Baz Ert" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Çerş Axş" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çerş" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cüme Axş" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cüme" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şen" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "istifadede" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1860,8 +1902,8 @@ msgstr "%s - e Xoş Gelmişsiniz!" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1996,7 +2038,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Cedveller" @@ -2130,7 +2172,7 @@ msgid "Documentation" msgstr "Dokumentasiya" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL sorğusu" @@ -2159,7 +2201,7 @@ msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4824,8 +4866,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4845,7 +4887,7 @@ msgstr "Sıxışdırma" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Heç biri" @@ -5094,7 +5136,7 @@ msgid "The row has been deleted" msgstr "Setir silindi" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Söndür" @@ -5185,7 +5227,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5531,8 +5573,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5654,7 +5696,7 @@ msgstr "Mövcud olan MIME-tipleri" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Host" @@ -6356,13 +6398,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Deyişen" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Deyer" @@ -6604,13 +6646,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Binary" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Deyişenler" @@ -6908,7 +6950,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Yeni İstifadeçi elave Et" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Müddet" @@ -7118,7 +7160,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "İstifadeçi" @@ -7577,18 +7619,18 @@ msgstr "\"%s\" cedveli mövcud deyil!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "Sahe sayı" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Emrleri Tam Olaraq Göster" @@ -7990,8 +8032,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler " "cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin " @@ -8121,7 +8163,7 @@ msgstr "The privileges were reloaded successfully." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8260,12 +8302,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s uğurla söndürüldü (killed)." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8273,253 +8315,244 @@ msgstr "" "phpMyAdmin %s emeliyyat thread-ini söndüre (kill) bilmedi. Böyük ehtimal " "artıq söndürülmüşdür." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 #, fuzzy msgid "Query cache" msgstr "Sorğu tipi" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "Genişletilmiş girişli" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "Cedvelleri göster" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Runtime Me'lumatı" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Quraşdırılmış Serverler" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Sıra Statistikası" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy msgid "Refresh rate" msgstr "Qurucu" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "saniyede" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "saniyede" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "istifadede" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Parolu deyişdirme" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "Cedvelleri göster" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "saatda" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "deqiqede" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "saniyede" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Sorğu tipi" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Bu MySQL server %sdir işlemektedir. Server %s-de açılmışdır." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Neqliyyat" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Alındı" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Gönderildi" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Elaqeler" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Uğursuz Cehdler" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Dayandırılmış Elaqeler" -#: server_status.php:784 -msgid "Processes" -msgstr "Prosesler" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "Nömre" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8527,78 +8560,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8606,7 +8639,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8614,42 +8647,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8657,33 +8690,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8692,227 +8725,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8920,99 +8953,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9020,18 +9053,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9039,7 +9072,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9162,7 +9195,7 @@ msgstr "Server Deyişenleri Ve Variantları" msgid "Session value" msgstr "Sessiya deyeri" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Qlobal deyer" diff --git a/po/be.po b/po/be.po index 1be89b4c1f..d2c4fbf723 100644 --- a/po/be.po +++ b/po/be.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -46,7 +46,7 @@ msgstr "Пошук" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -83,7 +83,7 @@ msgstr "Імя ключа" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Апісаньне" @@ -167,7 +167,7 @@ msgstr "Тып" msgid "Null" msgstr "Нуль" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -196,7 +196,7 @@ msgstr "Зьвязаная з" msgid "Comments" msgstr "Камэнтары" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -212,7 +212,7 @@ msgstr "Камэнтары" msgid "No" msgstr "Не" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -272,7 +272,7 @@ msgstr "База дадзеных %s была скапіяваная ў %s" msgid "Rename database to" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Каманда" @@ -382,7 +382,7 @@ msgstr "Радкі" msgid "Size" msgstr "Памер" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "выкарыстоўваецца" @@ -408,7 +408,7 @@ msgstr "Апошняе абнаўленьне" msgid "Last check" msgstr "Апошняя праверка" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -601,67 +601,67 @@ msgstr "У табліцы(ах):" msgid "Inside column:" msgstr "Унутры поля:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "У базе дадзеных табліц ня выяўлена." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Табліца %s была ачышчаная" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Выгляд %s быў выдалены" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Табліца %s была выдаленая" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %" -"sдакумэнтацыі%s." +"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да " +"%sдакумэнтацыі%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Выгляд" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Рэплікацыя" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Усяго" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s зьяўляецца машынай захаваньня дадзеных па змоўчаньні на гэтым MySQL-" "сэрвэры." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -669,23 +669,23 @@ msgstr "" msgid "With selected:" msgstr "З адзначанымі:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Адзначыць усё" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Зьняць усе адзнакі" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -693,59 +693,59 @@ msgstr "Адзначыць тыя, што патрабуюць аптыміза msgid "Export" msgstr "Экспарт" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Вэрсія для друку" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Ачысьціць" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Выдаліць" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Праверыць табліцу" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Аптымізаваць табліцу" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Рамантаваць табліцу" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Аналізаваць табліцу" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy msgid "Add prefix to table" msgstr "Базы дадзеных адсутнічаюць" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Слоўнік дадзеных" @@ -761,7 +761,7 @@ msgstr "Праверыць табліцу" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -781,7 +781,7 @@ msgstr "Стварыць" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Стан" @@ -886,8 +886,8 @@ msgstr "Дамп захаваны ў файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, " "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " @@ -906,8 +906,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%" -"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " +"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца " +"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." #: import.php:336 @@ -1099,175 +1099,7 @@ msgstr "Выдаліць выбраных карыстальнікаў" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Выбар сэрвэра" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL-запыт" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Агулам" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Скасаваць" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Лякальны" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Працэсы" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Перайменаваць базу дадзеных у" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Перайменаваць базу дадзеных у" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Капіяваць базу дадзеных у" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Кадыроўка" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Табліца мусіць мець прынамсі адно поле." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Стварыць табліцу" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Выкарыстоўваць табліцы" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Пошук" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL-запыт" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL-запыт" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Прагляд" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Выдаленьне %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL-запыт" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL-запыт" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Машыны" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1276,7 +1108,217 @@ msgstr "Машыны" msgid "Edit" msgstr "Рэдагаваць" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Выбар сэрвэра" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL-запыт" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Агулам" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Выбар сэрвэра" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Працэсы" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Падлучэньні" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL-запыт" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Статыстыка радку" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Скасаваць" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Лякальны" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Працэсы" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Перайменаваць базу дадзеных у" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Перайменаваць базу дадзеных у" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Капіяваць базу дадзеных у" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Кадыроўка" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Табліца мусіць мець прынамсі адно поле." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Стварыць табліцу" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Выкарыстоўваць табліцы" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Пошук" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL-запыт" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL-запыт" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Прагляд" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Выдаленьне %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL-запыт" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL-запыт" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Машыны" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1284,77 +1326,77 @@ msgstr "Рэдагаваць" msgid "Save" msgstr "Захаваць" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Схаваць" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL-запыт" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL-запыт" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ігнараваць" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Выберыце спасылкавы ключ" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Выберыце зьнешні ключ" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Выберыце поле для адлюстраваньня" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Згенэраваць пароль" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Згенэраваць" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Зьмяніць пароль" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пан" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1362,31 +1404,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy msgid ", latest stable version:" msgstr "Стварыць сувязь" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Базы дадзеных адсутнічаюць" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy msgid "Done" msgstr "Дадзеныя" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Папярэдняя старонка" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1394,96 +1436,96 @@ msgid "Next" msgstr "Наступная старонка" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Агулам" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двайковы" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Сак" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Кра" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Тра" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чэр" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Ліп" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Жні" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Кас" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1491,178 +1533,178 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Сьн" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ндз" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пан" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Аўт" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пят" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ндз" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пан" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Аўт" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сер" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Цач" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пят" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "выкарыстоўваецца" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1900,8 +1942,8 @@ msgstr "Запрашаем у %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго " "стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s." @@ -2046,7 +2088,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Табліц" @@ -2184,7 +2226,7 @@ msgid "Documentation" msgstr "Дакумэнтацыя" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-запыт" @@ -2213,7 +2255,7 @@ msgid "Create PHP Code" msgstr "Стварыць PHP-код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Абнавіць" @@ -4924,8 +4966,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна " "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " @@ -4948,7 +4990,7 @@ msgstr "Сьціск" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Няма" @@ -5210,7 +5252,7 @@ msgid "The row has been deleted" msgstr "Радок быў выдалены" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Спыніць" @@ -5303,7 +5345,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Пул буфэру" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Стан InnoDB" @@ -5702,8 +5744,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5829,7 +5871,7 @@ msgstr "Даступныя MIME-тыпы" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Хост" @@ -6534,13 +6576,13 @@ msgid "Slave status" msgstr "Паказаць стан залежных сэрвэраў" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Зьменная" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Значэньне" @@ -6783,12 +6825,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Двайковы лог" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Зьменныя" @@ -7091,7 +7133,7 @@ msgstr "Азначэньне PARTITION" msgid "+ Add a new value" msgstr "Дадаць новага карыстальніка" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Час" @@ -7336,7 +7378,7 @@ msgid "Protocol version" msgstr "Вэрсія пратаколу" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Карыстальнік" @@ -7817,17 +7859,17 @@ msgstr "Табліцы \"%s\" не існуе!" msgid "Select binary log to view" msgstr "Вылучыце двайковы лог для прагляду" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Файлы" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Абразаць паказаныя запыты" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Паказаць поўныя запыты" @@ -8229,8 +8271,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц " "прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " @@ -8364,7 +8406,7 @@ msgstr "Прывілеі былі пасьпяхова перазагружан msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 #, fuzzy msgid "Show master status" msgstr "Паказаць стан залежных сэрвэраў" @@ -8505,205 +8547,200 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Паток %s быў пасьпяхова спынены." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Апрацоўнік" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Кэш запытаў" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Патокі" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Часовыя дадзеныя" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Адкладзеныя ўстаўкі" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Кэш ключоў" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Аб'яднаньні" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Сартаваньне" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Каардынатар перакладу" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Скінуць (закрыць) усе табліцы" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Паказаць адкрытыя табліцы" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Паказаць залежныя сэрвэры" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Паказаць стан залежных сэрвэраў" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Скінуць кэш запытаў" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Бягучая інфармацыя" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Выбар сэрвэра" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Статыстыка радку" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Абнавіць" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "у сэкунду" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "у сэкунду" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "выкарыстоўваецца" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Не зьмяняць пароль" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Паказаць адкрытыя табліцы" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Сувязі" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "у гадзіну" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "у хвіліну" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "у сэкунду" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Тып запыту" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Гэты сэрвэр MySQL працуе %s. Ён быў запушчаны %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 #, fuzzy msgid "Replication status" msgstr "Рэплікацыя" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Трафік" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8711,45 +8748,41 @@ msgstr "" "На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму " "статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Атрымана" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Адпраўлена" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Падлучэньні" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "максымум адначасовых злучэньняў" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Няўдалых спробаў" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Спынена" -#: server_status.php:784 -msgid "Processes" -msgstr "Працэсы" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8759,17 +8792,17 @@ msgstr "" "якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для " "захоўваньня выразаў транзакцыі." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8781,11 +8814,11 @@ msgstr "" "павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў " "памяці, а не на дыску." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Колькасьць часовых файлаў, створаных mysqld." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8793,7 +8826,7 @@ msgstr "" "Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна " "створаныя сэрвэрам падчас выкананьня выразаў." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8801,7 +8834,7 @@ msgstr "" "Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя " "памылкі (пэўна, дубляваныя ключы)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8810,23 +8843,23 @@ msgstr "" "Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны " "паток." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Колькасьць запісаных INSERT DELAYED радкоў." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Колькасьць выкананых FLUSH-выразаў." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Колькасьць унутраных COMMIT-выразаў." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Колькасьць разоў выдаленьня радка з табліцы." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8836,7 +8869,7 @@ msgstr "" "яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. " "Handler_discover паказвае колькасьць высьвятленьняў табліц." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8847,7 +8880,7 @@ msgstr "" "сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 " "індэксаваная." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8855,7 +8888,7 @@ msgstr "" "Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна " "вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8865,7 +8898,7 @@ msgstr "" "павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам " "абмежаваньняў або калі адбываецца сканаваньне індэксаў." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8873,7 +8906,7 @@ msgstr "" "Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад " "чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8885,7 +8918,7 @@ msgstr "" "прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам " "або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8897,37 +8930,37 @@ msgstr "" "што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб " "выкарыстоўваць перавагі індэксаў." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Колькасьць унутраных выразаў ROLLBACK." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Колькасьць запытаў устаўкі радка ў табліцу." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Колькасьць зьмененых старонак." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Колькасьць вольных старонак." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8937,7 +8970,7 @@ msgstr "" "старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць " "быць скінутыя ці выдаленыя з-за пэўнай прычыны." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8950,11 +8983,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Агульны памер буфэрнага пулу, у старонках." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8963,7 +8996,7 @@ msgstr "" "адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым " "парадку." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8971,11 +9004,11 @@ msgstr "" "Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта " "адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8983,7 +9016,7 @@ msgstr "" "Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага " "пулу, а таму зрабіла аднастаронкавае чытаньне." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8997,55 +9030,55 @@ msgstr "" "падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны " "правільна, гэтае значэньне мусіць быць маленькім." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Колькасьць апэрацыяў fsync() на бягучы момант." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Агульная колькасьць чытаньняў дадзеных." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Агульная колькасьць запісаў дадзеных." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9053,35 +9086,35 @@ msgstr "" "Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і " "таму давялося чакаць, пакуль ён не ачысьціцца." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Колькасьць запісаў у лог." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Колькасьць фізычна выкананых запісаў у лог-файл." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Колькасьць байтаў, запісаных у лог-файл." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Колькасьць створаных старонак." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9089,55 +9122,55 @@ msgstr "" "Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні " "вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Колькасьць прачытаных старонак." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Колькасьць запісаных старонак." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" "Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у " "мілісэкундах." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Колькась радкоў, прачытаных з табліц InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9145,7 +9178,7 @@ msgstr "" "Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі " "скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9153,7 +9186,7 @@ msgstr "" "Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна " "выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9163,11 +9196,11 @@ msgstr "" "ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць " "блёкаў, якія выкарастоўваліся адначасова." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9177,15 +9210,15 @@ msgstr "" "вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць " "промахаў у кэш можна вылічыць як Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9196,17 +9229,17 @@ msgstr "" "Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў " "зкампіляваны." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9214,39 +9247,39 @@ msgstr "" "Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, " "значэньне кэшу табліц імаверна вельмі малое." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Колькасьць адкрытых файлаў." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Колькасьць адкрытых табліц." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Колькасьць вольнай памяці для кэшу запытаў." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Колькасьць зваротаў да кэшу." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Колькасьць запытаў, якія былі даданыя ў кэш." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9259,7 +9292,7 @@ msgstr "" "выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з " "кэшу." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9267,19 +9300,19 @@ msgstr "" "Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за " "значэньня дырэктывы query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Агульная колькасьць блёкаў у кэшы запытыў." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9287,13 +9320,13 @@ msgstr "" "Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае " "значэньне ня роўнае 0, варта праверыць індэксы ў табліцах." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай " "табліцы." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9302,7 +9335,7 @@ msgstr "" "ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта " "праверыць індэксы ў табліцах.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9310,17 +9343,17 @@ msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай " "табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-" "патокам." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9328,13 +9361,13 @@ msgstr "" "Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі " "паўтараў транзакцыі." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным " "да сэрвэра, які яго кантралюе." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9342,14 +9375,14 @@ msgstr "" "Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для " "стварэньня." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым " "long_query_time сэкундаў." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9359,25 +9392,25 @@ msgstr "" "значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай " "зьменнай sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" "Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх " "слупкоў." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Колькасьць адсартаваных радкоў." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9389,7 +9422,7 @@ msgstr "" "існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а " "пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9399,11 +9432,11 @@ msgstr "" "вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае " "ў чырвоны колер, варта павялічыць значэньне thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Колькасьць адкрытых на бягучы момант злучэньняў." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9415,7 +9448,7 @@ msgstr "" "thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага " "павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." @@ -9540,7 +9573,7 @@ msgstr "Налады і зьменныя сэрвэра" msgid "Session value" msgstr "Значэньне сэсіі" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Глябальнае значэньне" diff --git a/po/be@latin.po b/po/be@latin.po index 39dc4d9c59..b35234329a 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" +"Language: be@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: be@latin\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -48,7 +48,7 @@ msgstr "Pošuk" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "Imia kluča" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Apisańnie" @@ -169,7 +169,7 @@ msgstr "Typ" msgid "Null" msgstr "Nul" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -198,7 +198,7 @@ msgstr "Źviazanaja z" msgid "Comments" msgstr "Kamentary" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -214,7 +214,7 @@ msgstr "Kamentary" msgid "No" msgstr "Nie" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -274,7 +274,7 @@ msgstr "Baza dadzienych %s była skapijavanaja ŭ %s" msgid "Rename database to" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Kamanda" @@ -385,7 +385,7 @@ msgstr "Radki" msgid "Size" msgstr "Pamier" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "vykarystoŭvajecca" @@ -411,7 +411,7 @@ msgstr "Apošniaje abnaŭleńnie" msgid "Last check" msgstr "Apošniaja pravierka" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -607,67 +607,67 @@ msgstr "U tablicy(ach):" msgid "Inside column:" msgstr "Unutry pola:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "U bazie dadzienych tablic nia vyjaŭlena." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s była ačyščanaja" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Vyhlad %s byŭ vydaleny" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s była vydalenaja" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %" -"sdakumentacyi%s." +"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da " +"%sdakumentacyi%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Vyhlad" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikacyja" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Usiaho" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s źjaŭlajecca mašynaj zachavańnia dadzienych pa zmoŭčańni na hetym MySQL-" "servery." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -675,23 +675,23 @@ msgstr "" msgid "With selected:" msgstr "Z adznačanymi:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Adznačyć usio" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Źniać usie adznaki" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -699,58 +699,58 @@ msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" msgid "Export" msgstr "Ekspart" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Versija dla druku" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Ačyścić" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Vydalić" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Pravieryć tablicu" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Aptymizavać tablicu" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Ramantavać tablicu" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analizavać tablicu" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Słoŭnik dadzienych" @@ -765,7 +765,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -783,7 +783,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stan" @@ -883,8 +883,8 @@ msgstr "Damp zachavany ŭ fajł %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, " "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " @@ -903,8 +903,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%" -"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " +"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca " +"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." #: import.php:336 @@ -1096,179 +1096,7 @@ msgstr "Vydalić vybranych karystalnikaŭ" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Vybar servera" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Showing SQL query" -msgid "Live query chart" -msgstr "U vyhladzie SQL-zapytu" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Ahułam" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Skasavać" - -#: js/messages.php:83 -msgid "Loading" -msgstr "" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Pracesy" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Pierajmienavać bazu dadzienych u" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Pierajmienavać bazu dadzienych u" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Kapijavać bazu dadzienych u" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Kadyroŭka" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Tablica musić mieć prynamsi adno pole." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Stvaryć tablicu" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Vykarystoŭvać tablicy" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Pošuk" - -#: js/messages.php:105 -#, fuzzy -#| msgid "in query" -msgid "Hide search results" -msgstr "pa zapytu" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Showing SQL query" -msgid "Show search results" -msgstr "U vyhladzie SQL-zapytu" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Prahlad" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Vydaleńnie %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -#| msgid "in query" -msgid "Hide query box" -msgstr "pa zapytu" - -#: js/messages.php:115 -#, fuzzy -#| msgid "Showing SQL query" -msgid "Show query box" -msgstr "U vyhladzie SQL-zapytu" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Mašyny" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1277,7 +1105,221 @@ msgstr "Mašyny" msgid "Edit" msgstr "Redagavać" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Vybar servera" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Showing SQL query" +msgid "Live query chart" +msgstr "U vyhladzie SQL-zapytu" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Ahułam" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Vybar servera" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Pracesy" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Padłučeńni" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +msgid "Issued queries" +msgstr "" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +#| msgid "Databases statistics" +msgid "Query statistics" +msgstr "Statystyka bazaŭ dadzienych" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Skasavać" + +#: js/messages.php:96 +msgid "Loading" +msgstr "" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Pracesy" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Pierajmienavać bazu dadzienych u" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Pierajmienavać bazu dadzienych u" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Kapijavać bazu dadzienych u" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Kadyroŭka" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Tablica musić mieć prynamsi adno pole." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Stvaryć tablicu" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Vykarystoŭvać tablicy" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Pošuk" + +#: js/messages.php:118 +#, fuzzy +#| msgid "in query" +msgid "Hide search results" +msgstr "pa zapytu" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Showing SQL query" +msgid "Show search results" +msgstr "U vyhladzie SQL-zapytu" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Prahlad" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Vydaleńnie %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +#| msgid "in query" +msgid "Hide query box" +msgstr "pa zapytu" + +#: js/messages.php:128 +#, fuzzy +#| msgid "Showing SQL query" +msgid "Show query box" +msgstr "U vyhladzie SQL-zapytu" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Mašyny" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1285,79 +1327,79 @@ msgstr "Redagavać" msgid "Save" msgstr "Zachavać" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Schavać" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "pa zapytu" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignaravać" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Vybierycie spasyłkavy kluč" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Vybierycie źniešni kluč" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vybierycie pole dla adlustravańnia" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Zgieneravać parol" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Zgieneravać" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Źmianić parol" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pan" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1365,32 +1407,32 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "Bazy dadzienych adsutničajuć" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nijakaja" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Papiaredniaja staronka" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1398,96 +1440,96 @@ msgid "Next" msgstr "Nastupnaja staronka" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ahułam" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Dvajkovy" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Sak" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kra" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Tra" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Čer" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Žni" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Kas" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1495,178 +1537,178 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Śn" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ndz" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pan" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Aŭt" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Piat" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ndz" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pan" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Aŭt" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sier" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cač" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Piat" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "vykarystoŭvajecca" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1905,8 +1947,8 @@ msgstr "Zaprašajem u %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab " "jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s." @@ -2052,7 +2094,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tablic" @@ -2192,7 +2234,7 @@ msgid "Documentation" msgstr "Dakumentacyja" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-zapyt" @@ -2221,7 +2263,7 @@ msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Abnavić" @@ -4897,8 +4939,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu " "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " @@ -4921,7 +4963,7 @@ msgstr "Ścisk" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Nijakaja" @@ -5184,7 +5226,7 @@ msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Spynić" @@ -5278,7 +5320,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Puł buferu" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Stan InnoDB" @@ -5680,8 +5722,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5808,7 +5850,7 @@ msgstr "Dastupnyja MIME-typy" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Chost" @@ -6508,13 +6550,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Źmiennaja" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Značeńnie" @@ -6757,12 +6799,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Dvajkovy łog" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Źmiennyja" @@ -6925,8 +6967,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci " -"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %" -"sdakumentacyi%s." +"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ " +"%sdakumentacyi%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7063,7 +7105,7 @@ msgstr "Aznačeńnie PARTITION" msgid "+ Add a new value" msgstr "Dadać novaha karystalnika" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Čas" @@ -7138,8 +7180,8 @@ msgstr "" "dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar " "vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar " "vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo " -"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U " -"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " +"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). " +"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " "parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), " "a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()." @@ -7311,7 +7353,7 @@ msgid "Protocol version" msgstr "Versija pratakołu" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Karystalnik" @@ -7791,17 +7833,17 @@ msgstr "Tablicy \"%s\" nie isnuje!" msgid "Select binary log to view" msgstr "Vyłučycie dvajkovy łog dla prahladu" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Fajły" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Abrazać pakazanyja zapyty" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Pakazać poŭnyja zapyty" @@ -8204,8 +8246,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic " "pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, " @@ -8339,7 +8381,7 @@ msgstr "Pryvilei byli paśpiachova pierazahružanyja." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 #, fuzzy msgid "Show master status" msgstr "Pakazać stan zaležnych serveraŭ" @@ -8477,205 +8519,199 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Patok %s byŭ paśpiachova spynieny." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nia moža spynić praces %s. Napeŭna, jon užo spynieny." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Apracoŭnik" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Keš zapytaŭ" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Patoki" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Časovyja dadzienyja" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Adkładzienyja ŭstaŭki" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Keš klučoŭ" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Ab'jadnańni" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Sartavańnie" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Kaardynatar pierakładu" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Skinuć (zakryć) usie tablicy" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Pakazać adkrytyja tablicy" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Pakazać zaležnyja servery" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Pakazać stan zaležnych serveraŭ" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Skinuć keš zapytaŭ" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Biahučaja infarmacyja" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Vybar servera" -#: server_status.php:372 -#, fuzzy -#| msgid "Databases statistics" -msgid "Query statistics" -msgstr "Statystyka bazaŭ dadzienych" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Abnavić" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "u sekundu" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "u sekundu" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "vykarystoŭvajecca" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nie źmianiać parol" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Pakazać adkrytyja tablicy" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Suviazi" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "u hadzinu" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "u chvilinu" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "u sekundu" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Typ zapytu" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Hety server MySQL pracuje %s. Jon byŭ zapuščany %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Trafik" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8683,45 +8719,41 @@ msgstr "" "Na zahružanym servery bajtavyja ličylniki mohuć pieraskokvać koła, tamu " "statystyka, jakuju pakazvaje MySQL-server, moža być niapravilnaj." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Atrymana" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Adpraŭlena" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Padłučeńni" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "maksymum adnačasovych złučeńniaŭ" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Niaŭdałych sprobaŭ" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Spyniena" -#: server_status.php:784 -msgid "Processes" -msgstr "Pracesy" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8731,17 +8763,17 @@ msgstr "" "jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł " "dla zachoŭvańnia vyrazaŭ tranzakcyi." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Kolkaść tranzakcyjaŭ, jakija vykarystoŭvali časovy dvajkovy keš zapytaŭ." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8753,11 +8785,11 @@ msgstr "" "pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ " "pamiaci, a nie na dysku." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8765,7 +8797,7 @@ msgstr "" "Kolkaść časovych tablic, raźmieščanych u pamiaci, jakija byli aŭtamatyčna " "stvoranyja serveram padčas vykanańnia vyrazaŭ." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8773,7 +8805,7 @@ msgstr "" "Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja " "pamyłki (peŭna, dublavanyja klučy)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8782,23 +8814,23 @@ msgstr "" "Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj " "ułasny patok." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Kolkaść vykananych FLUSH-vyrazaŭ." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Kolkaść unutranych COMMIT-vyrazaŭ." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8808,7 +8840,7 @@ msgstr "" "viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. " "Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8819,7 +8851,7 @@ msgstr "" "skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 " "indeksavanaja." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8828,7 +8860,7 @@ msgstr "" "vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra " "indeksavanyja." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8838,7 +8870,7 @@ msgstr "" "pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham " "abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8846,7 +8878,7 @@ msgstr "" "Kolkaść zapytaŭ čytańnia papiaredni radok u klučavym paradku. Hety metad " "čytańnia vykarystoŭvajecca pieravažna dla aptymizacyi ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8859,7 +8891,7 @@ msgstr "" "całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć " "klučy." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8871,37 +8903,37 @@ msgstr "" "aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja " "tak, kab vykarystoŭvać pieravahi indeksaŭ." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo " "niaźmienienych)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Kolkaść źmienienych staronak." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Kolkaść staronak bufernaha pułu, na jakija byŭ atrymany zapyt na skid." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Kolkaść volnych staronak." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8911,7 +8943,7 @@ msgstr "" "staronki, jakija ŭ biahučy momant čytajucca ci zapisvajucca abo jakija nia " "mohuć być skinutyja ci vydalenyja z-za peŭnaj pryčyny." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8924,11 +8956,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Ahulny pamier bufernaha pułu, u staronkach." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8937,7 +8969,7 @@ msgstr "" "adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym " "paradku." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8945,11 +8977,11 @@ msgstr "" "Kolkaść paśladoŭnych papiarednich čytańniaŭ, zroblenych InnoDB. Heta " "adbyvajecca, kali InnoDB vykonvaje paśladoŭny poŭny prahlad tablicy." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8957,7 +8989,7 @@ msgstr "" "Kolkaść lagičnych čytańniaŭ, jakija InnoDB nie zmahła adnavić z bufernaha " "pułu, a tamu zrabiła adnastaronkavaje čytańnie." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8971,55 +9003,55 @@ msgstr "" "kamputar padličvaje kolkaść takich čakańniaŭ. Kali pamier buferu byŭ " "vyznačany pravilna, hetaje značeńnie musić być maleńkim." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Ahulnaja kolkaść zapisaŭ dadzienych." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9027,35 +9059,35 @@ msgstr "" "Kolkaść vypadkaŭ čakańnia z-za taho, što bufer łogu byŭ zanadta mały, i tamu " "daviałosia čakać, pakul jon nie ačyścicca." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Kolkaść zapisaŭ u łog." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Kolkaść stvoranych staronak." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9064,54 +9096,54 @@ msgstr "" "vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho " "ŭ bajty." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Kolkaść pračytanych staronak." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Kolkaść zapisanych staronak." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" "Kolkaść blakavańniaŭ radkoŭ, čakańnie jakich adbyvajecca na biahučy momant." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Siaredni čas atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ahulny čas čakańnia atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Maksymalny čas atramańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Kolkaść razoŭ, kali davodziłasia čakać blakavańnie radku." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9119,7 +9151,7 @@ msgstr "" "Kolkaść blokaŭ u kešy klučoŭ, jakija byli źmienienyja, ale jašče nie byli " "skinutyja na dysk. Vykarystoŭvajecca jak značeńnie Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9127,7 +9159,7 @@ msgstr "" "Kolkaść niavykarystanych blokaŭ u kešy klučoŭ. Hetaje značeńnie možna " "vykarystoŭvać dla vyznačeńnia stupieni vykarystańnia kešu klučoŭ." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9137,11 +9169,11 @@ msgstr "" "stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, " "jakija vykarastoŭvalisia adnačasova." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Kolkaść zapytaŭ na čytańnie bloku klučoŭ z kešu." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9151,15 +9183,15 @@ msgstr "" "vialikaje, značeńnie key_buffer_size, vidać, vielmi małoje. Kolkaść " "promachaŭ u keš možna vyličyć jak Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Kolkaść zapytaŭ na zapis bloku klučoŭ u keš." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Kolkaść fizyčnych zapisaŭ bloku klučoŭ na dysk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9170,17 +9202,17 @@ msgstr "" "Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ " "zkampilavany." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Kolkaść radkoŭ dla zapisu, adkładzienych zapytami INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9188,39 +9220,39 @@ msgstr "" "Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, " "značeńnie kešu tablic imavierna vielmi małoje." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Kolkaść adkrytych fajłaŭ." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Kolkaść adkrytych patokaŭ (vykarystoŭvajucca pieravažna dla łahavańnia)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Kolkaść adkrytych tablic." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Kolkaść zvarotaŭ da kešu." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9233,7 +9265,7 @@ msgstr "" "vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać " "z kešu." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9241,19 +9273,19 @@ msgstr "" "Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za " "značeńnia dyrektyvy query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9261,13 +9293,13 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija nie vykarystoŭviajuć indeksy. Kali hetaje " "značeńnie nia roŭnaje 0, varta pravieryć indeksy ŭ tablicach." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali pošuk pa mascy ŭ metavaj " "tablicy." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9276,7 +9308,7 @@ msgstr "" "kluča paśla kožnaha radka. (Kali hetaje značeńnie nia roŭnaje 0, varta " "pravieryć indeksy ŭ tablicach.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9284,17 +9316,17 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali spałučeńni paloŭ u pieršaj " "tablicy. (Zvyčajna nie krytyčna, navat kali hetaje značeńnie vialikaje.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Kolkaść ab'jadnańniaŭ, jakija praviali poŭny prahlad pieršaj tablicy." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Kolkaść časovych tablic, jakija ŭ biahučy momant adkrytyja zaležnym SQL-" "patokam." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9302,13 +9334,13 @@ msgstr "" "Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi " "paŭtaraŭ tranzakcyi." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Hetaje značeńnie roŭnaje \"ON\", kali server źjaŭlajecca zaležnym i " "padłučanym da servera, jaki jaho kantraluje." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9316,14 +9348,14 @@ msgstr "" "Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla " "stvareńnia." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Kolkaść zapytaŭ, na vykanantnie jakich spatrebiłasia bolš, čym " "long_query_time sekundaŭ." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9333,25 +9365,25 @@ msgstr "" "hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia " "systemnaj źmiennaj sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" "Kolkaść sartavańniaŭ, jakija byli zroblenyja z vykarystańniem niekalkich " "słupkoŭ." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Kolkaść adsartavanych radkoŭ." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Kolkaść sartavańniaŭ, jakija byli zroblenyja padčas prahladu tablicy." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Kolkaść razoŭ, kali blakavańnie tablicy było zroblenaje imhnienna." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9363,7 +9395,7 @@ msgstr "" "prablemy z pradukcyjnaściu, varta spačatku aptymizavać zapyty, a paśla abo " "padzialić tablicu abo tablicy, abo vykarystoŭvać replikacyju." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9373,11 +9405,11 @@ msgstr "" "jak Threads_created/Connections. Kali hetaje značeńnie pafarbavanaje ŭ " "čyrvony koler, varta pavialičyć značeńnie thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9389,7 +9421,7 @@ msgstr "" "thread_cache_size. (Zvyčajna, heta nie daje jakoha-niebudź zaŭvažnaha " "pavieličeńnia pradukcyjnaści, kali prysutničaje dobraja realizacyja patokaŭ.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." @@ -9512,7 +9544,7 @@ msgstr "Nałady i źmiennyja servera" msgid "Session value" msgstr "Značeńnie sesii" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Hlabalnaje značeńnie" diff --git a/po/bg.po b/po/bg.po index 4daaf54226..fbbf9d9610 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-14 08:31+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "Търсене" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Име на ключ" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Описание" @@ -166,7 +166,7 @@ msgstr "Тип" msgid "Null" msgstr "Празно" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Свързана към" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Коментари" msgid "No" msgstr "Не" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "БД %s беше копирана като %s" msgid "Rename database to" msgstr "Преименуване БД на" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Команда" @@ -373,7 +373,7 @@ msgstr "Редове" msgid "Size" msgstr "Размер" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "зает" @@ -399,7 +399,7 @@ msgstr "Последно обновление" msgid "Last check" msgstr "Последна проверка" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -582,61 +582,61 @@ msgstr "В таблицата(ите):" msgid "Inside column:" msgstr "В колона:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "В БД няма таблици" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Таблицата %s беше изчистена" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Изглед %s беше изтрит" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Таблицата %s беше изтрита" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Проследяването е активно." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Проследяването е неактивно." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Изглед" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Репликация" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Сума" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -644,23 +644,23 @@ msgstr "%s е хранилището на данни по подразбиран msgid "With selected:" msgstr "Когато има отметка:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Маркиране всички" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Отмаркиране всички" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -668,54 +668,54 @@ msgstr "Маркиране на таблиците със загубено мя msgid "Export" msgstr "Експорт" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Преглед за печат" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Изчистване" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Унищожаване" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Проверка на таблицата" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Оптимизация на таблицата" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Поправяне на таблицата" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Анализиране на таблицата" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Добавяне представка към таблица" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Замяна на представката на таблица" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Копиране на таблицата с представка" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Речник на данните" @@ -730,7 +730,7 @@ msgstr "Следени таблици" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -748,7 +748,7 @@ msgstr "Създаден" msgid "Updated" msgstr "Съвременен" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Състояние" @@ -849,8 +849,8 @@ msgstr "Схемата беше записана във файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sdдокументацията%s за да намерите начин да избегнете това ограничение." @@ -1046,147 +1046,7 @@ msgstr "Изтриване на маркираните потребители" msgid "Close" msgstr "Затваряне" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Избор на сървър" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Hide query box" -msgid "Live query chart" -msgstr "Скриване формата за заявки" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Общо" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Отмяна" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Зареждане" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Обработка на заявката" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Грешка при обработка на заявката" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Изтриване на колона" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Добавяне на първичен ключ" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Преименуване БД" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Презареждане БД" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Копиране БД" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Промяна знаков набор" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Таблицата трябва да има поне една колона" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Създаване таблица" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "Вмъкване на таблица" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Търсене" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Скриване резултати от търсенето" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Показване резултати от търсенето" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Прелистване" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Изтриване" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "Заб.: Ако файлът съдържа няколко таблици, те ще бъдат обединени." - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Скриване формата за заявки" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Показване формата за заявки" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Бърза редакция" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1195,7 +1055,189 @@ msgstr "Бърза редакция" msgid "Edit" msgstr "Редакция" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Избор на сървър" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Hide query box" +msgid "Live query chart" +msgstr "Скриване формата за заявки" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Общо" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Избор на сървър" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Процеси" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Конекции" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL заявки" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Статистика за заявките" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Отмяна" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Зареждане" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Обработка на заявката" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Грешка при обработка на заявката" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Изтриване на колона" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Добавяне на първичен ключ" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Преименуване БД" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Презареждане БД" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Копиране БД" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Промяна знаков набор" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Таблицата трябва да има поне една колона" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Създаване таблица" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "Вмъкване на таблица" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Търсене" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Скриване резултати от търсенето" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Показване резултати от търсенето" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Прелистване" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Изтриване" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "Заб.: Ако файлът съдържа няколко таблици, те ще бъдат обединени." + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Скриване формата за заявки" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Показване формата за заявки" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Бърза редакция" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1203,67 +1245,67 @@ msgstr "Редакция" msgid "Save" msgstr "Зпазване" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Скриване" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Скриване критерий за търсене" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Показване критерий за търсене" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Игнориране" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Избор външен ключ" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Изберете първичен или уникален ключ" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Изберете колона за показване" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Добавяне опция към колона " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Генериране парола" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Генериране" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Смяна парола" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Още" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1273,26 +1315,26 @@ msgstr "" "версия е %s, излязла на %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", актуална стабилна версия:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "актуално" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Готово" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Преден" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1300,231 +1342,231 @@ msgid "Next" msgstr "Следващ" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Днес" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "януари" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "февруари" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "март" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "април" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "май" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "юни" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "юли" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "август" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "септември" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "октомври" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "ноември" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "декември" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "яну" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "фев" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "септ" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "ное" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "дек" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "неделя" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "понеделник" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "вторник" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "сряда" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "четвъртък" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "петък" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "събота" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "сб" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "нд" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "пн" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "вт" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "ср" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "чт" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "пт" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Сед" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Час" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "минута" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "секунда" @@ -1752,8 +1794,8 @@ msgstr "Добре дошли в %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Изглежда не се създали конфигурационен файл. Вероятно ще искате да " "използвате %1$sскрипта за настройки%2$s, за да го създадете" @@ -1893,7 +1935,7 @@ msgstr "споделен" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Таблици" @@ -2025,7 +2067,7 @@ msgid "Documentation" msgstr "Документация" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL заявка" @@ -2054,7 +2096,7 @@ msgid "Create PHP Code" msgstr "Създаване на PHP код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Презареждане" @@ -4587,8 +4629,8 @@ msgstr ", @TABLE@ ще стане името на таблицата" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4606,7 +4648,7 @@ msgstr "Компресия:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Няма" @@ -4831,7 +4873,7 @@ msgid "The row has been deleted" msgstr "Редът беше изтрит" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Спиране" @@ -4917,7 +4959,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB Състояние" @@ -5258,8 +5300,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5358,7 +5400,7 @@ msgstr "Показване MIME типове" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Хост" @@ -6038,13 +6080,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Стойност" @@ -6269,12 +6311,12 @@ msgid "Synchronize" msgstr "Синхронизиране" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Двоичен дневник" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Променливи" @@ -6433,8 +6475,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL валидаторът не може да бъде инициализиран. Моля проверете дали са " -"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%" -"s." +"инсталирани необходимите PHP разширения, както е описано в %sдокументацията" +"%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -6559,7 +6601,7 @@ msgstr "" msgid "+ Add a new value" msgstr "+ Добавяне на нова стойност" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Време" @@ -6740,7 +6782,7 @@ msgid "Protocol version" msgstr "Версия на протокола" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Потребител" @@ -7120,8 +7162,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %" -"sскрипта за настройки%s." +"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез " +"%sскрипта за настройки%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -7161,17 +7203,17 @@ msgstr "Файлът не съществува" msgid "Select binary log to view" msgstr "Изберете двоичен журнал за преглед" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Файлове" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Съкращаване на показаните заявки" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Показване на пълните заявки" @@ -7571,8 +7613,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Забележка: phpMyAdmin взема потребителските права директно от таблицата с " "правата на MySQL. Съдържанието на тази таблица може да се различава от " @@ -7698,7 +7740,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -7831,241 +7873,233 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Нишка %s беше успешно спряна." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Кеш на заявките" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Нишки" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Временни данни" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Забавени вмъквания" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Кеш на ключове" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Сортиране" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Координатор на транзакциите" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Показване на отворените теблици" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Информация за състоянието на MySQL сървъра" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Избор на сървър" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Статистика за заявките" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Презареждане" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "секунда" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "секунда" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "минута" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Да не се сменя паролата" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Показване на отворените теблици" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Релации" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "на час" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "на минута" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "на секунда" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Тип на заявката" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Този MySQL сървър работи от %s. Стартиран е на %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Статус репликация" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Трафик" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Получени" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Изпратени" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Конекции" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "максимален брой на едновременните конекции" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Провалили се опити" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Прекъснати" -#: server_status.php:784 -msgid "Processes" -msgstr "Процеси" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Limits the number of simultaneous connections the user may have." msgid "The number of failed attempts to connect to the MySQL server." @@ -8073,23 +8107,23 @@ msgstr "" "Ограничава броя на едновременните връзки, които потребителят може да държи " "отворени." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8097,78 +8131,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Брой на създадените от mysqld временни файлове." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Брой на вмъкнатите посредством INSERT DELAYED редове." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8176,7 +8210,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8184,42 +8218,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Брой заявки за обновяване на ред в таблица." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Брой заявки за вмъкване на ред в таблица." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8227,33 +8261,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8262,227 +8296,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Броят на заявки за запис в дневника." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Броят вмъкнати редове в InnoDB таблици." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Броят обновени редове в InnoDB таблици." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Брой на отворените файлове." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "Брой на отворените потоци (използва се главно за логове)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Брой на отвотените таблици." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Броят попадения в кеш." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8490,99 +8524,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Брой временни таблици отворени от подчинена SQL нишка." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Брой на сортираните редове." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8590,18 +8624,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Брой текущо отворени връзки." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8609,7 +8643,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Броят на нишките, които не са спящи." @@ -8732,7 +8766,7 @@ msgstr "Сървърни променливи и настройки" msgid "Session value" msgstr "Сесийна стойност" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Глобална стойност" @@ -9665,8 +9699,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка %" -"s." +"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка " +"%s." #: themes.php:41 msgid "Get more themes!" diff --git a/po/bn.po b/po/bn.po index 0656635b5a..a2c93249ae 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" +"Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "খুঁজুন" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "বর্ণনা" @@ -164,7 +164,7 @@ msgstr "ধরন" msgid "Null" msgstr "খালি" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -193,7 +193,7 @@ msgstr "সংযুক্তি হবে" msgid "Comments" msgstr "মন্তব্যসমূহ" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -209,7 +209,7 @@ msgstr "মন্তব্যসমূহ" msgid "No" msgstr "না" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -269,7 +269,7 @@ msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছ msgid "Rename database to" msgstr "ডাটাবেজ রিনেম কর" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "নির্দেশ" @@ -379,7 +379,7 @@ msgstr "Rows" msgid "Size" msgstr "আকার" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "in use" @@ -405,7 +405,7 @@ msgstr "সর্বশেষ আপডেট" msgid "Last check" msgstr "Last check" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -598,63 +598,63 @@ msgstr "Inside table(s):" msgid "Inside column:" msgstr "Inside table(s):" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া যায়নি।" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "View" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replication" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "যোগফল" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -662,23 +662,23 @@ msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোর msgid "With selected:" msgstr "With selected:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "সব পরীক্ষা করুন" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Uncheck All" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -686,59 +686,59 @@ msgstr "ওভারহেড সহ টেবিল পরীক্ষা ক msgid "Export" msgstr "Export" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Print view" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "খালি" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "মুছে ফেল" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "টেবিল পরীক্ষা কর" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "টেবিল অপটিমাইজ করুন" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "টেবিল রিপেয়ার করুন" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "টেবিল বিশ্লেষণ কর" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy msgid "Add prefix to table" msgstr "কোন ডাটাবেজ নাই" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Replace table data with file" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Replace table data with file" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "ডাটা অভিধান" @@ -754,7 +754,7 @@ msgstr "টেবিল পরীক্ষা কর" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -774,7 +774,7 @@ msgstr "তৈরী করুন" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "অবস্থা" @@ -878,11 +878,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1087,174 +1087,7 @@ msgstr "Remove selected users" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Server Choice" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL query" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "মোট" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "লোকাল" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Processes" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "ঠিক আছে" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "ডাটাবেজ রিনেম কর" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "ডাটাবেজ রিনেম কর" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "ডাটাবেজ কপি করঃ" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Charset" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Table must have at least one field." - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "একটি নতুন পাতা তৈরী কর" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "টেবিল ব্যাবহারকারী" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "খুঁজুন" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL query" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL query" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "ব্রাউজ করুন" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "%s মুছে ফেলা হচ্ছে" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL query" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL query" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "ইঞ্জিনসমূহ" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1263,7 +1096,216 @@ msgstr "ইঞ্জিনসমূহ" msgid "Edit" msgstr "সম্পাদনা কর" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Server Choice" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL query" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "মোট" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Server Choice" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Processes" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "সংযোগসমূহ" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL query" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Row Statistics" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "লোকাল" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Processes" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "ঠিক আছে" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "ডাটাবেজ রিনেম কর" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "ডাটাবেজ রিনেম কর" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "ডাটাবেজ কপি করঃ" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Charset" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Table must have at least one field." + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "একটি নতুন পাতা তৈরী কর" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "টেবিল ব্যাবহারকারী" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "খুঁজুন" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL query" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL query" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "ব্রাউজ করুন" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s মুছে ফেলা হচ্ছে" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL query" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL query" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "ইঞ্জিনসমূহ" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1271,77 +1313,77 @@ msgstr "সম্পাদনা কর" msgid "Save" msgstr "সেভ করুন" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL query" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL query" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "প্রদর্শনের জন্য ক্ষেত্র পছন্দ কর" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "পাসওয়ার্ড তৈরী কর" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "তৈরী কর" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "পাসওয়ার্ড পরিবর্তন কর" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "সোমবার" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1349,31 +1391,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy msgid ", latest stable version:" msgstr "Server version" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "কোন ডাটাবেজ নাই" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy msgid "Done" msgstr "ডাটা" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "পূর্ববর্তী" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1381,96 +1423,96 @@ msgid "Next" msgstr "পরবর্তী" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "মোট" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "বাইনারী" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "মার্চ" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "এপ্রিল" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "মে" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "জুন" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "জুলাই" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "আগস্ট" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "অক্টোবর" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "জানুয়ারী" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "ফেব্রুয়ারী" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "মার্চ" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "এপ্রিল" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1478,176 +1520,176 @@ msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "জুলাই" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "আগস্ট" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "সেপ্টেমবর" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "অক্টোবর" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "নভেম্বর" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "ডিসেম্বর" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "রবিবার" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "সোমবার" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "শুক্রবার" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "রবিবার" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "সোমবার" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "মঙ্গলবার" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "বুধবার" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "বৃহস্পতিবার" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "শুক্রবার" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "শনিবার" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "রবিবার" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "সোমবার" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "মঙ্গলবার" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "বুধবার" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "বৃহস্পতিবার" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "শুক্রবার" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "শনিবার" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1880,8 +1922,8 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার " "করে একটি তৈরী করতে পারেন " @@ -2023,7 +2065,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "টেবিলসমূহ" @@ -2160,7 +2202,7 @@ msgid "Documentation" msgstr "বর্ণনা" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL query" @@ -2189,7 +2231,7 @@ msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Refresh" @@ -4888,12 +4930,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -4912,7 +4954,7 @@ msgstr "সংকোচন" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "কোনটিই নয়" @@ -5175,7 +5217,7 @@ msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Kill" @@ -5268,7 +5310,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5628,8 +5670,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5755,7 +5797,7 @@ msgstr "Available MIME types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "হোষ্ট" @@ -6460,13 +6502,13 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "চলক" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "মান" @@ -6708,12 +6750,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "বাইনারী লগ" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "চলকসমূহ" @@ -7012,7 +7054,7 @@ msgstr "" msgid "+ Add a new value" msgstr "একটি নতুন ইউজার যোগ করুন" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "সময়" @@ -7253,7 +7295,7 @@ msgid "Protocol version" msgstr "Protocol version" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "User" @@ -7726,18 +7768,18 @@ msgstr "The \"%s\" table doesn't exist!" msgid "Select binary log to view" msgstr "Select binary log to view" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "ক্ষেত্রসমূহ" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -8135,13 +8177,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -8272,7 +8314,7 @@ msgstr "The privileges were reloaded successfully." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 #, fuzzy msgid "Show master status" msgstr "Show slave status" @@ -8413,205 +8455,200 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Handler" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Query cache" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Threads" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Temporary data" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Key cache" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Joins" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "সাজাঁন" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Show open tables" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Show slave hosts" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Show slave status" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Runtime Information" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Server Choice" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Row Statistics" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Refresh" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "per second" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "per second" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "in use" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Do not change the password" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Show open tables" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "per hour" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "per minute" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "per second" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Query type" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "This MySQL server has been running for %s. It started up on %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 #, fuzzy msgid "Replication status" msgstr "Replication" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Traffic" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8619,45 +8656,41 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "গৃহীত" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Sent" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "সংযোগসমূহ" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "বাদ দেওয়া হল" -#: server_status.php:784 -msgid "Processes" -msgstr "Processes" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "আইডি" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "The number of fsyncs writes done to the log file." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8667,16 +8700,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8688,109 +8721,109 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:852 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - -#: server_status.php:853 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." - -#: server_status.php:854 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." - -#: server_status.php:855 -msgid "The number of INSERT DELAYED rows written." -msgstr "The number of INSERT DELAYED rows written." - -#: server_status.php:856 -msgid "The number of executed FLUSH statements." -msgstr "The number of executed FLUSH statements." - -#: server_status.php:857 -msgid "The number of internal COMMIT statements." -msgstr "The number of internal COMMIT statements." - -#: server_status.php:858 -msgid "The number of times a row was deleted from a table." -msgstr "The number of times a row was deleted from a table." - -#: server_status.php:859 -msgid "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." -msgstr "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." - #: server_status.php:860 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." #: server_status.php:861 msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." #: server_status.php:862 msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." #: server_status.php:863 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." +msgid "The number of INSERT DELAYED rows written." +msgstr "The number of INSERT DELAYED rows written." #: server_status.php:864 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." +msgid "The number of executed FLUSH statements." +msgstr "The number of executed FLUSH statements." #: server_status.php:865 +msgid "The number of internal COMMIT statements." +msgstr "The number of internal COMMIT statements." + +#: server_status.php:866 +msgid "The number of times a row was deleted from a table." +msgstr "The number of times a row was deleted from a table." + +#: server_status.php:867 +msgid "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." +msgstr "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." + +#: server_status.php:868 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: server_status.php:869 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: server_status.php:870 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: server_status.php:871 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + +#: server_status.php:872 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8802,36 +8835,36 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "The number of free pages." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8841,7 +8874,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8853,11 +8886,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8865,7 +8898,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8873,11 +8906,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8885,7 +8918,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8899,55 +8932,55 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8955,35 +8988,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8991,51 +9024,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9043,7 +9076,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9051,7 +9084,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9061,11 +9094,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9075,15 +9108,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9093,17 +9126,17 @@ msgstr "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAY queues." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9111,38 +9144,38 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9154,7 +9187,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9162,19 +9195,19 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9182,11 +9215,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9194,7 +9227,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9202,15 +9235,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9218,78 +9251,78 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: server_status.php:943 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." - -#: server_status.php:944 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" -"The number of queries that have taken more than long_query_time seconds." - -#: server_status.php:945 -msgid "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." -msgstr "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." - -#: server_status.php:946 -msgid "The number of sorts that were done with ranges." -msgstr "The number of sorts that were done with ranges." - -#: server_status.php:947 -msgid "The number of sorted rows." -msgstr "The number of sorted rows." - -#: server_status.php:948 -msgid "The number of sorts that were done by scanning the table." -msgstr "The number of sorts that were done by scanning the table." - -#: server_status.php:949 -msgid "The number of times that a table lock was acquired immediately." -msgstr "The number of times that a table lock was acquired immediately." - -#: server_status.php:950 -msgid "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." - #: server_status.php:951 msgid "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." msgstr "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." #: server_status.php:952 -msgid "The number of currently open connections." -msgstr "The number of currently open connections." +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"The number of queries that have taken more than long_query_time seconds." #: server_status.php:953 msgid "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." +msgstr "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." + +#: server_status.php:954 +msgid "The number of sorts that were done with ranges." +msgstr "The number of sorts that were done with ranges." + +#: server_status.php:955 +msgid "The number of sorted rows." +msgstr "The number of sorted rows." + +#: server_status.php:956 +msgid "The number of sorts that were done by scanning the table." +msgstr "The number of sorts that were done by scanning the table." + +#: server_status.php:957 +msgid "The number of times that a table lock was acquired immediately." +msgstr "The number of times that a table lock was acquired immediately." + +#: server_status.php:958 +msgid "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." + +#: server_status.php:959 +msgid "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." +msgstr "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." + +#: server_status.php:960 +msgid "The number of currently open connections." +msgstr "The number of currently open connections." + +#: server_status.php:961 +msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " "doesn't give a notable performance improvement if you have a good thread " @@ -9300,7 +9333,7 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." @@ -9424,7 +9457,7 @@ msgstr "Server variables and settings" msgid "Session value" msgstr "Session value" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Global value" diff --git a/po/bs.po b/po/bs.po index 01ff38bc63..aff3a55122 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -46,7 +46,7 @@ msgstr "Pretraživanje" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -83,7 +83,7 @@ msgstr "Ime ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Opis" @@ -165,7 +165,7 @@ msgstr "Tip" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -194,7 +194,7 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,7 +210,7 @@ msgstr "Komentari" msgid "No" msgstr "Ne" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -272,7 +272,7 @@ msgstr "Tabela %s je kopirana u %s." msgid "Rename database to" msgstr "Promjeni ime tabele u " -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Naredba" @@ -383,7 +383,7 @@ msgstr "Redova" msgid "Size" msgstr "Veličina" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "se koristi" @@ -409,7 +409,7 @@ msgstr "Posljednja izmjena" msgid "Last check" msgstr "Posljednja provjera" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -602,64 +602,64 @@ msgstr "Unutar tabela:" msgid "Inside column:" msgstr "Unutar tabela:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Tabele nisu pronađene u bazi." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Polje %s je obrisano" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 #, fuzzy msgid "Replication" msgstr "Relacije" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Ukupno" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -667,23 +667,23 @@ msgstr "" msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "nijedno" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -691,58 +691,58 @@ msgstr "" msgid "Export" msgstr "Izvoz" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Odbaci" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Provjeri tabelu" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimiziraj tabelu" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Rečnik podataka" @@ -757,7 +757,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -776,7 +776,7 @@ msgstr "Napravi" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -880,8 +880,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1072,169 +1072,7 @@ msgstr "Ukloni izabrane korisnike" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Izbor servera" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL upit" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Ukupno" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Lokalni" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Procesi" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "U redu" - -#: js/messages.php:91 -#, fuzzy -msgid "Renaming Databases" -msgstr "Promjeni ime tabele u " - -#: js/messages.php:92 -#, fuzzy -msgid "Reload Database" -msgstr "Promjeni ime tabele u " - -#: js/messages.php:93 -#, fuzzy -msgid "Copying Database" -msgstr "Baza ne postoji" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Karakter set" - -#: js/messages.php:95 -#, fuzzy -#| msgid "You have to choose at least one column to display" -msgid "Table must have at least one column" -msgstr "Morate izabrati bar jednu kolonu za prikaz" - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "Napravi novu stranu" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Koristi tabele" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Pretraživanje" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL upit" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL upit" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Pregled" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Brišem %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL upit" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL upit" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1243,7 +1081,211 @@ msgstr "" msgid "Edit" msgstr "Promeni" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Izbor servera" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL upit" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Ukupno" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Izbor servera" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Procesi" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Konekcije" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL upit" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Statistike reda" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Lokalni" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesi" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "U redu" + +#: js/messages.php:104 +#, fuzzy +msgid "Renaming Databases" +msgstr "Promjeni ime tabele u " + +#: js/messages.php:105 +#, fuzzy +msgid "Reload Database" +msgstr "Promjeni ime tabele u " + +#: js/messages.php:106 +#, fuzzy +msgid "Copying Database" +msgstr "Baza ne postoji" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Karakter set" + +#: js/messages.php:108 +#, fuzzy +#| msgid "You have to choose at least one column to display" +msgid "Table must have at least one column" +msgstr "Morate izabrati bar jednu kolonu za prikaz" + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "Napravi novu stranu" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Koristi tabele" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Pretraživanje" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL upit" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL upit" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Pregled" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Brišem %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL upit" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL upit" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1251,78 +1293,78 @@ msgstr "Promeni" msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Promeni lozinku" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Generirao" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promeni lozinku" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1330,31 +1372,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Baza ne postoji" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "nema" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1362,96 +1404,96 @@ msgid "Next" msgstr "Slijedeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "maj" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1459,176 +1501,176 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "dec" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1854,8 +1896,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1994,7 +2036,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabele" @@ -2127,7 +2169,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL upit" @@ -2156,7 +2198,7 @@ msgid "Create PHP Code" msgstr "Napravi PHP kod" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4813,8 +4855,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4834,7 +4876,7 @@ msgstr "Kompresija" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "nema" @@ -5083,7 +5125,7 @@ msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Obustavi" @@ -5174,7 +5216,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB status" @@ -5519,8 +5561,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5639,7 +5681,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Host" @@ -6339,13 +6381,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Promjenljiva" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Vrijednost" @@ -6587,13 +6629,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Binarni" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Promjenljive" @@ -6889,7 +6931,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Dodaj novog korisnika" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Vrijeme" @@ -7098,7 +7140,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Korisnik" @@ -7558,18 +7600,18 @@ msgstr "Tabela \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "Polja" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -7972,8 +8014,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " @@ -8102,7 +8144,7 @@ msgstr "Privilegije su uspešno ponovo učitane." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8241,265 +8283,256 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspješno prekinut." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin nije mogao da prekine proces %s. Vjerovatno je već zatvoren." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 #, fuzzy msgid "Query cache" msgstr "Vrsta upita" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "Prošireni INSERT" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "Prikaži tabele" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Informacije o toku rada" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Izbor servera" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Statistike reda" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy msgid "Refresh rate" msgstr "Generirao" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "u sekundi" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "u sekundi" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "se koristi" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nemoj da mijenjaš lozinku" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "Prikaži tabele" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "na sat" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "u minuti" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "u sekundi" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Vrsta upita" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Saobraćaj" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Primljeno" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Poslato" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Konekcije" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:784 -msgid "Processes" -msgstr "Procesi" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8507,78 +8540,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8586,7 +8619,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8594,42 +8627,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8637,33 +8670,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8672,227 +8705,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8900,99 +8933,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9000,18 +9033,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9019,7 +9052,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9142,7 +9175,7 @@ msgstr "Serverske promenljive i podešavanja" msgid "Session value" msgstr "Vrijednost sesije" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Globalna vrednost" diff --git a/po/ca.po b/po/ca.po index ee335c8b5c..714052d1b3 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "Cerca" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Nom de clau" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Descripció" @@ -166,7 +166,7 @@ msgstr "Tipus" msgid "Null" msgstr "Nul" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Enllaços a" msgid "Comments" msgstr "Comentaris" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Comentaris" msgid "No" msgstr "No" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "La base de dades %s s'ha copiat a %s" msgid "Rename database to" msgstr "Reanomena base de dades a" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Ordre" @@ -373,7 +373,7 @@ msgstr "Fila" msgid "Size" msgstr "Mida" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "en ús" @@ -399,7 +399,7 @@ msgstr "Darrera actualització" msgid "Last check" msgstr "Darrera comprovació" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -582,62 +582,62 @@ msgstr "Dins la/les taula(es):" msgid "Inside column:" msgstr "Dins la columna:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Base de dades sense taules" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "S'ha buidat la taula %s" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Vista %s esborrada" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "S'ha esborrat la taula %s" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "El seguiment està actiu." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "El seguiment no està actiu." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Vista" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replicació" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Suma" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -645,23 +645,23 @@ msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL." msgid "With selected:" msgstr "Amb marca:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Marcar-ho tot" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Desmarcar tot" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -669,60 +669,60 @@ msgstr "Comprova taules desfragmentades" msgid "Export" msgstr "Exporta" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Imprimeix vista" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Buida" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Elimina" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Verifica la taula" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimitza la taula" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Repara la taula" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analitza la taula" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Vés a la taula" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Canviar les dades de la taula per l'arxiu " -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Canviar les dades de la taula per l'arxiu " -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Diccionari de Dades" @@ -737,7 +737,7 @@ msgstr "Taules seguides" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Creat" msgid "Updated" msgstr "Actualitzat" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Estat" @@ -855,11 +855,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Probablement has triat d'enviar un arxiu massa gran. Consulta la %" -"sdocumentació%s per trobar formes de modificar aquest límit." +"Probablement has triat d'enviar un arxiu massa gran. Consulta la " +"%sdocumentació%s per trobar formes de modificar aquest límit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1061,157 +1061,7 @@ msgstr "Treu els usuaris triats" msgid "Close" msgstr "Tanca" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Elecció de Servidor" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Mostrar gràfic de consultes" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Total" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Cancel.lar" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Carregar" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Petició de procés" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Error a la petició de procés" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Eliminació de columna" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Afegir clau principal" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "Correcte" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Reanomenar bases de dades" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Recarregar base de dades" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Copiant base de dades" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Canvi de Joc de Caràcters" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "La taula ha de tenir al menys una columna" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Crea una taula" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Usa Taules" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Cercar" - -#: js/messages.php:105 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Hide search results" -msgstr "Amaga el criteri de cerca" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Show search criteria" -msgid "Show search results" -msgstr "Mostrar criteri de cerca" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Navega" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Esborrant %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Amagar quadre de consultes" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Mostrar quadre de consultes" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Edició en linia" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1220,7 +1070,199 @@ msgstr "Edició en linia" msgid "Edit" msgstr "Edita" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Elecció de Servidor" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query chart" +msgid "Live query chart" +msgstr "Mostrar gràfic de consultes" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Elecció de Servidor" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Processos" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Connexions" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "Consultes SQL" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Consulta d'estadístiques" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Cancel.lar" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Carregar" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Petició de procés" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Error a la petició de procés" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Eliminació de columna" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Afegir clau principal" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "Correcte" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Reanomenar bases de dades" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Recarregar base de dades" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Copiant base de dades" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Canvi de Joc de Caràcters" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "La taula ha de tenir al menys una columna" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Crea una taula" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Usa Taules" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Cercar" + +#: js/messages.php:118 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Hide search results" +msgstr "Amaga el criteri de cerca" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Show search criteria" +msgid "Show search results" +msgstr "Mostrar criteri de cerca" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Navega" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Esborrant %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Amagar quadre de consultes" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Mostrar quadre de consultes" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Edició en linia" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1228,67 +1270,67 @@ msgstr "Edita" msgid "Save" msgstr "Desa" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Amaga" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Amaga el criteri de cerca" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Mostrar criteri de cerca" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Tria la clau referenciada" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Tria una clau externa" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Tria la clau principal o una clau única" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Tria la columna a mostrar" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Afegeix una opció per a la columna" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Genera una contrasenya" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Genera" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Canvi de contrasenya" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Més" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1298,28 +1340,28 @@ msgstr "" "actualitzar-la. La nova versió és la %s, alliberada el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", darrera versió estable:" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Vés a la base de dades" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Fet" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1327,231 +1369,231 @@ msgid "Next" msgstr "Següent" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Avui" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Gener" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Febrer" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Març" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Abril" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Maig" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Juny" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Juliol" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Agost" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Setembre" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Octubre" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Novembre" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Desembre" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Des" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Diumenge" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Dilluns" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Dimarts" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Dimecres" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Dijous" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Divendres" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Dissabte" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Dis" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Dg" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Dl" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Dm" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Dc" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Dj" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Dv" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Ds" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Se" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Hora" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minut" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Segon" @@ -1788,8 +1830,8 @@ msgstr "Benvingut a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La raó més probable d'aixó és que no heu creat l'arxiu de configuració. " "Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un." @@ -1934,7 +1976,7 @@ msgstr "compartit" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Taules" @@ -2067,7 +2109,7 @@ msgid "Documentation" msgstr "Documentació" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "Consulta SQL" @@ -2096,7 +2138,7 @@ msgid "Create PHP Code" msgstr "Crea codi PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Refresca" @@ -4846,12 +4888,12 @@ msgstr ", @TABLE@ serà el nom de la taula" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les " -"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3" -"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " +"cadenes de formateig de temps. A més, es faran aquestes transformacions: " +"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " "per a més detalls." #: libraries/display_export.lib.php:275 @@ -4869,7 +4911,7 @@ msgstr "Compressió:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Res" @@ -5108,7 +5150,7 @@ msgid "The row has been deleted" msgstr "S'ha esborrat la fila" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Finalitzar" @@ -5199,7 +5241,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Grup de memòries intermitges" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Estat InnoDB" @@ -5604,8 +5646,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Pots trobar la documentació i més informació sobre PBXT a la pàgina " "principal de %sPrimeBase XT%s." @@ -5706,7 +5748,7 @@ msgstr "Mostra tipus MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Servidor" @@ -6433,13 +6475,13 @@ msgid "Slave status" msgstr "Estat de l'esclau" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -6668,12 +6710,12 @@ msgid "Synchronize" msgstr "Sincronitza" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Registre binari" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variables" @@ -6832,8 +6874,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu " -"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %" -"sdocumentació%s." +"instal·lats els mòduls de PHP necessaris tal i com s'indica a la " +"%sdocumentació%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -6957,7 +6999,7 @@ msgstr "Definició de PARTICIÓ" msgid "+ Add a new value" msgstr "+ Afegir un nou valor" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Temps" @@ -7156,7 +7198,7 @@ msgid "Protocol version" msgstr "Versió del protocol" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Usuari" @@ -7606,17 +7648,17 @@ msgstr "L'arxiu no existeix" msgid "Select binary log to view" msgstr "Tria el registre binari per veure" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Arxius" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Talla les consultes mostrades" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Mostra Consultes completes" @@ -8012,8 +8054,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de " "permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels " @@ -8146,7 +8188,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Aquest servidor s'ha configurat com a mestre en un procés de replicació." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Mostra l'estat del mestre -show master status-" @@ -8295,177 +8337,173 @@ msgstr "" "Aquest servidor no està configurat com a esclau en un procés de replicació. " "Vols configurar-lo ?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Fil %s cancel.lat correctament." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin no pot cancel.lar el fil %s. Probablement, ja és tancat." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Gestor" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Memòria cau de consultes" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Fils" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Dades temporals" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Insercions demorades" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Memòria cau de claus" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Unions" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Classificant" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Coordinador de transaccions" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Sincronitza (tanca) totes les taules" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Mostra taules obertes" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Mostra servidors esclaus" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Mostra l'estat d'esclaus" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Buida la memòria cau de consultes" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Informació d'execució" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Elecció de Servidor" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Consulta d'estadístiques" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Veure la taula d'estat de l'esclau" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Refresca" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Segon" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Segon" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Minut" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "No canviïs la contrasenya" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Mostra taules obertes" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "Enllaços relacionats" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "per hora" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "per minut" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "per segon" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Tipus de consulta" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Aquest servidor MySQL és en marxa durant %s. Es va iniciar en %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8473,19 +8511,19 @@ msgstr "" "Aquest servidor MySQL treballa com a mestre i esclau en un " "procés de replicació ." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Aquest servidor MySQL treballa com a mestre en un procés de " "replicació ." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Aquest servidor MySQL treballa com a esclau en un procés de " "replicació ." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8493,15 +8531,15 @@ msgstr "" "Per obtenir més informació sobre l'estat de replicació al servidor, visita " "la secció de replicació." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Estat de la replicació" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Tràfic" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8509,45 +8547,41 @@ msgstr "" "En un servidor ocupat, els comptadors de bytes poden excedir el seu tamany, " "llavors les estadístiques donades pel servidor MySQL poden ser incorrectes." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Rebut" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Enviat" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Connexions" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "max. connexions a la vegada" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Intents erronis" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Avortat" -#: server_status.php:784 -msgid "Processes" -msgstr "Processos" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "No es pot connectar al servidor MySQL" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8557,17 +8591,17 @@ msgstr "" "però que excedeixen el valor de binlog_cache_size i usen un arxiu temporal " "per desar elements de la transacció." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El nombre de transaccions que han fet servir el registre binari temporal." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8579,11 +8613,11 @@ msgstr "" "incrementar el valor de tmp_table_size per fer que les taules temporals " "treballin en memòria en lloc de treballar en disc." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Arxius temporals creats per mysqld." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8591,7 +8625,7 @@ msgstr "" "El nombre de taules temporals creades en memòria per el servidor mentre " "executa instruccions." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8599,7 +8633,7 @@ msgstr "" "El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat " "quelcom error (possile clau duplicada)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8607,23 +8641,23 @@ msgstr "" "El nombre de gestors de fils de INSERT DELAYED en ús. Cada taula diferent ón " "s'usa INSERT DELAYED té el seu propi fil." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "El nombre de files escrites amb INSERT DELAYED." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "El nombre d'instruccions FLUSH executades." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "El nombre d'instruccions COMMIT internes." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "El nombre de vegades que s'ha esborrat una fila d'una taula." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8633,7 +8667,7 @@ msgstr "" "coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. " "Handler_discover indica el nombre de taules descobertes." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8643,7 +8677,7 @@ msgstr "" "és alt, suggereix que el servidor està fent moltes cerques d'índex complet; " "per exemple, SELECT col1 FROM taula, assumint que col1 és indexat." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8652,7 +8686,7 @@ msgstr "" "és una bona indicació de que les consultes i taules estàn indexades " "acuradament." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8662,7 +8696,7 @@ msgstr "" "Aixó s'incrementa si s'està consultant una columna d'index amb limitació de " "rang o si s'està fent una cerca d'index." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8671,7 +8705,7 @@ msgstr "" "Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... " "DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8683,7 +8717,7 @@ msgstr "" "Probablement tens moltes consultes que fan que MySQL cerqui les taules " "senceres o bé hi ha joins que no fan servir les claus acuradament." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8695,37 +8729,37 @@ msgstr "" "taules no estàn indexades acuradament o bé les consultes no estàn fetes per " "aprofitar les avantatges dels índexos definits." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "El nombre d'instruccions ROLLBACK." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "El nombre de peticions per a actualitzar una fila en una taula." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "El nombre de peticions per a insertar una fila en una taula." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "El nombre de pàgines contenint dades (brutes o netes)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "El nombre de pàgines actualment brutes." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El nombre de pàgines a la memòria cau que s'han demanat per ser " "actualitzades." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "El nombre de pàgines lliures." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8735,7 +8769,7 @@ msgstr "" "pàgines s'estàn llegint o escrivint actualment o no es poden actualitzar o " "esborrar per qualsevol altra raó." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8747,11 +8781,11 @@ msgstr "" "Aquest valor es pot calcular com Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Tamany total de la memòria cau, en pàgines." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8759,7 +8793,7 @@ msgstr "" "El nombre de lectures aleatòries d'InnoDB iniciades. Aixó passa quan una " "consulta cerca en una gran part de una taula però en ordre aleatori." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8767,11 +8801,11 @@ msgstr "" "El nombre de lectures secuencials d'InnoDB iniciades. Aixó passa quan InnoDB " "fa una cerca secuencial a la taula sencera." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "El nombre de peticions de lectures lògiques que InnoDB ha fet." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8779,7 +8813,7 @@ msgstr "" "El nombre de peticions de lectures lògiques que InnoDB no pot satisfer de la " "memòria cau i ha de fer lectures de pàgines individuals." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8793,55 +8827,55 @@ msgstr "" "comptador mostra instàncies d'aquestes esperes. Si el tamany de la memòria " "cau és adequat, aquest valor sól ser petit." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "El nombre d'escriptures fetes a la memòria cau d'InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "El nombre d'operacions fsync() aproximades." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "El nombre actual d'operacions fsync() pendents." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "El nombre actual de lectures pendents." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "El nombre actual d'escritures pendents." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "La quantitat aproximada de dades llegides, en bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "El nombre total de dades llegides." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "El nombre total de dades escrites." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "La quantitat aproximada de dades escrites, en bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8849,35 +8883,35 @@ msgstr "" "El nombre d'esperes fetes degut al petit tamany de la memòria intermèdia del " "registre i a esperar a que s'actualitzés abans de continuar." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "El nombre de peticions d'escriptura al registre." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "El nombre d'escriptures físiques a l'arxiu de registre." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "El nombre d'escriptures fsync() fetes a l'arxiu de registre." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Escriptures pendents a l'arxiu de registre." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "El nombre de bytes escrits a l'arxiu de registre." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "El nombre de pàgines creades." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8886,51 +8920,51 @@ msgstr "" "comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment " "a bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "El nombre de pàgines llegides." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "El nombre de pàgines escrites." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "El nombre de bloquejos de files actualment en espera." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El temps promig en fer un bloqueig de fila, en milisegons." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "El temps total emprat en fer bloquejos de files, en milisegons." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El temps màxim en fer un bloqueig de fila, en milisegons." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "El nombre de vegades que un bloqueig de fila ha estat en espera." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "El nombre de files esborrades de taules InnoDB." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "El nombre de files afegides a taules InnoDB." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "El nombre de files llegides de taules InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "El nombre de files actualitzades en taules InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8939,7 +8973,7 @@ msgstr "" "però que encara no han estat actualitzades a disc. Es coneix com a " "Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8947,7 +8981,7 @@ msgstr "" "El nombre de blocs no usats a la memòria cau de les claus. Aquest valor es " "pot fer servir per saber quànta memòria cau de les claus s'utilitza." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8956,11 +8990,11 @@ msgstr "" "El nombre de blocs usats a la memòria cau de les claus. Aquest valor és la " "marca indicativa del màxim nombre de blocs usats mai a l'hora." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "El nombre de peticions de lectura d'un bloc de clau de la memòria cau." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8970,16 +9004,16 @@ msgstr "" "gran, llavors el valor de key_buffer_size probablement és massa petit. El " "rati de la memòria cau es pot calcular com Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" "El nombre de peticions d'escriptura d'un bloc de clau a la memòria cau." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "El nombre d'escriptures físiques d'un bloc de clau a disc." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8990,17 +9024,17 @@ msgstr "" "de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s'ha " "compilat cap consulta." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El nombre de files esperant a ser escrites en cues INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9008,39 +9042,39 @@ msgstr "" "El nombre de taules que han estat obertes. Si el nombre de taules obertes és " "gran, probablement el valor de memòria cau de taula és massa petit." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "El nombre d'arxius que estàn oberts." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El nombre de fluxes que estàn oberts (usats principalment per a registre)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "El nombre de taules que estàn obertes." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "La quantitat de memòria liure per a memòria cau de consultes." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "El nombre d'encerts a memòria cau." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "El nombre de consultes afegides a la memòria cau." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9053,7 +9087,7 @@ msgstr "" "l'estratègia menys recentment usada(least recently used - LRU) per decidir " "quines consultes treure de la memòria cau." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9061,19 +9095,19 @@ msgstr "" "El nombre de consultes no enviades a la memòria cau (no enviables, o no " "enviades degut al paràmetre query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "El nombre de consultes registrades a la memòria cau." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "El nombre total de blocs a la memòria cau de consultes." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'estat de la replicació a prova d'errades (no implementat encara)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9081,12 +9115,12 @@ msgstr "" "El nombre de joins que no usen indexs. Si aquest valor no és 0, s'haurien de " "comprovar acuradament els indexs de les taules." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "El nombre de joins que han usat un rang de cerca en una taula de referència." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9095,7 +9129,7 @@ msgstr "" "cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els " "indexs de les taules.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9103,16 +9137,16 @@ msgstr "" "El nombre de joins que han usat rangs a la primera taula. (Normalment no és " "crític si el valor no és molt gran.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "El nombre de joins que han fet una cerca a la primera taula sencera." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El nombre de taules temporals obertes actualment pel fil esclau de SQL." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9120,25 +9154,25 @@ msgstr "" "Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació " "de SQL ha recuperat transaccions." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Aixó és ACTIU -ON- si aquest servidor és un esclau que està connectat a un " "mestre." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "El nombre de fils que han tardat més que slow_launch_time segons a crear." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "El nombre de consultes que han tardat més que long_query_time segons." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9148,23 +9182,23 @@ msgstr "" "hagut de fer. Si aquest valor és gran, s'hauria de considerar incrementar el " "valor de la variable de sistema sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "El nombre de classificacions fetes amb rangs." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "El nombre de files classificades." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "El nombre de classificacions fetes cercant la taula." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "El nombre de vegades que un bloqueig de taula s'ha fet immediatament." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9177,7 +9211,7 @@ msgstr "" "consultes, o també dividir la taula o taules en vàries o bé utilitzar la " "replicació." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9187,11 +9221,11 @@ msgstr "" "comptar com Threads_created/Connections. Si aquest valor és vermell s'hauria " "d'augmentar el valor de thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "El nombre de connexions obertes simultàniament." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9202,7 +9236,7 @@ msgstr "" "gran, pots voler augmentar el valor de thread_cache_size. (Normalment això " "no dóna una millora de rendiment notable si es té una bona aplicació de fil.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "El nombre de fils que no estàn dormint." @@ -9328,7 +9362,7 @@ msgstr "Variables i configuracions del servidor" msgid "Session value" msgstr "Valor de sessió" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Valor global" @@ -9583,8 +9617,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%" -"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " +"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store" +"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " "igual a ell." #: setup/lib/index.lib.php:266 @@ -9612,8 +9646,8 @@ msgstr "" "Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom " "d'usuari i la contrasenya per connexions automàtiques, que es una opció no " "recomanable per a servidors actius. Qualsevol que conegui la teva URL de " -"phpMyAdmin pot accedir al teu panel directament. Estableix el %" -"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin pot accedir al teu panel directament. Estableix el " +"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/cs.po b/po/cs.po index e2a9547dd7..6b252ec721 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-07 13:35+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -50,7 +50,7 @@ msgstr "Vyhledávání" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -87,7 +87,7 @@ msgstr "Název klíče" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Popis" @@ -168,7 +168,7 @@ msgstr "Typ" msgid "Null" msgstr "Nulový" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -197,7 +197,7 @@ msgstr "Odkazuje na" msgid "Comments" msgstr "Komentáře" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -213,7 +213,7 @@ msgstr "Komentáře" msgid "No" msgstr "Ne" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -273,7 +273,7 @@ msgstr "Databáze %s byla zkopírována na %s" msgid "Rename database to" msgstr "Přejmenovat databázi na" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Příkaz" @@ -375,7 +375,7 @@ msgstr "Řádků" msgid "Size" msgstr "Velikost" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "právě se používá" @@ -401,7 +401,7 @@ msgstr "Poslední změna" msgid "Last check" msgstr "Poslední kontrola" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -587,62 +587,62 @@ msgstr "V tabulkách:" msgid "Inside column:" msgstr "Uvnitř pole:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "V databázi nebyly nalezeny žádné tabulky" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabulka %s byla vyprázdněna" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Pohled %s byl odstraněn" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabulka %s byla odstraněna" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Sledování je zapnuté." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Sledování není zapnuté." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Pohled" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikace" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Celkem" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je výchozí úložiště na tomto MySQL serveru." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -650,23 +650,23 @@ msgstr "%s je výchozí úložiště na tomto MySQL serveru." msgid "With selected:" msgstr "Zaškrtnuté:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Zaškrtnout vše" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Odškrtnout vše" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -674,54 +674,54 @@ msgstr "Zaškrtnout neoptimální" msgid "Export" msgstr "Export" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Náhled pro tisk" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Vyprázdnit" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Odstranit" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Zkontrolovat tabulku" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimalizovat tabulku" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Opravit tabulku" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analyzovat tabulku" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Přidat tabulce předponu" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Změnit tabulce předponu" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Zkopírovat tabulku s předponou" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Datový slovník" @@ -736,7 +736,7 @@ msgstr "Sledované tabulky" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -754,7 +754,7 @@ msgstr "Vytvořeno" msgid "Updated" msgstr "Aktualizováno" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stav" @@ -854,8 +854,8 @@ msgstr "Výpis byl uložen do souboru %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." @@ -1051,147 +1051,7 @@ msgstr "Odstraňuji vybrané uživatele" msgid "Close" msgstr "Ukončit" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Server" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Zobrazit graf dotazu" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Celkem" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Zrušit" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Nahrávám" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Probíhá zpracování požadavku" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Chyba při zpracování požadavku" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Odstraňuji sloupec" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Přidávám primární klíč" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Přejmenovávám databáze" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Znovu načítám databázi" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Kopíruji databázi" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Měním znakovou sadu" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Tabulka musí mít alespoň jedno pole" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Vytvořit tabulku" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "Vložit tabulku" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Vyhledávám" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Skrýt výsledky vyhledávání" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Zobrazit výsledky vyhledávání" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Procházím" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Odstraňuji" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "Poznámka: Pokud soubor obsahuje více tabulek, budou sloučeny do jedné." - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Skrýt pole pro dotaz" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Zobrazit pole pro dotaz" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Upravit zde" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1200,7 +1060,189 @@ msgstr "Upravit zde" msgid "Edit" msgstr "Upravit" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Server" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query chart" +msgid "Live query chart" +msgstr "Zobrazit graf dotazu" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Celkem" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Server" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Procesy" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Připojení" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL dotazy" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Statistika dotazů" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Zrušit" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Nahrávám" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Probíhá zpracování požadavku" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Chyba při zpracování požadavku" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Odstraňuji sloupec" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Přidávám primární klíč" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Přejmenovávám databáze" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Znovu načítám databázi" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Kopíruji databázi" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Měním znakovou sadu" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Tabulka musí mít alespoň jedno pole" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Vytvořit tabulku" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "Vložit tabulku" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Vyhledávám" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Skrýt výsledky vyhledávání" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Zobrazit výsledky vyhledávání" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Procházím" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Odstraňuji" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "Poznámka: Pokud soubor obsahuje více tabulek, budou sloučeny do jedné." + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Skrýt pole pro dotaz" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Zobrazit pole pro dotaz" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Upravit zde" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1208,41 +1250,41 @@ msgstr "Upravit" msgid "Save" msgstr "Uložit" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Skrýt" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Skrýt parametry vyhledávání" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Zobrazit parametry vyhledávání" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Zvolte odkazovaný klíč" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Zvolte cizí klíč" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Zvolte, prosím, primární nebo unikátní klíč" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Zvolte která pole zobrazit" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1250,27 +1292,27 @@ msgstr "" "Neuložili jste změny ve schématu. Pokud je neuložíte, budou ztraceny. " "Přejete si pokračovat?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Přidat paramer pro sloupec " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Vytvořit heslo" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Vytvořit" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Změnit heslo" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Více" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1280,26 +1322,26 @@ msgstr "" "je %s a byla vydána %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", poslední stabilní verze:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "aktuální" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Hotovo" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Předchozí" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1307,231 +1349,231 @@ msgid "Next" msgstr "Další" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Dnešek" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "leden" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "únor" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "březen" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "duben" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "květen" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "červen" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "červenec" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "srpen" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "září" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "říjen" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "listopad" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "pro" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Neděle" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Pondělí" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Úterý" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Středa" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Čtvrtek" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Pátek" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Čt" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Pá" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Týd" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minuty" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Sekundy" @@ -1763,8 +1805,8 @@ msgstr "Vítejte v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." @@ -1906,7 +1948,7 @@ msgstr "sdílený" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabulky" @@ -2038,7 +2080,7 @@ msgid "Documentation" msgstr "Dokumentace" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-dotaz" @@ -2067,7 +2109,7 @@ msgid "Create PHP Code" msgstr "Vytvořit PHP kód" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Obnovit" @@ -4764,8 +4806,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít " "libovolné řetězce pro formátování data a času. Dále budou provedena " @@ -4787,7 +4829,7 @@ msgstr "Komprese:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Žádná" @@ -5026,7 +5068,7 @@ msgid "The row has been deleted" msgstr "Řádek byl smazán" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Ukončit" @@ -5114,7 +5156,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Vyrovnávací paměť" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Stav InnoDB" @@ -5511,8 +5553,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." @@ -5613,7 +5655,7 @@ msgstr "Zobrazit MIME typy" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Počítač" @@ -6328,13 +6370,13 @@ msgid "Slave status" msgstr "Stav podřízeného" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Proměnná" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Hodnota" @@ -6563,12 +6605,12 @@ msgid "Synchronize" msgstr "Synchronizace" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binární log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Proměnné" @@ -6773,8 +6815,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" -"spopisy transformací%s" +"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na " +"%spopisy transformací%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -6825,8 +6867,8 @@ msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %" -"s dělá." +"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co " +"%s dělá." #: libraries/tbl_properties.inc.php:625 tbl_structure.php:636 #, php-format @@ -6850,7 +6892,7 @@ msgstr "Definice PARTITION" msgid "+ Add a new value" msgstr "+ Přidat novou hodnotu" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Čas" @@ -7044,7 +7086,7 @@ msgid "Protocol version" msgstr "Verze protokolu" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Uživatel" @@ -7448,8 +7490,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %" -"sNastavovacího skriptu%s." +"Více věcí můžete nastavit úpravou config.inc.php, např. použitím " +"%sNastavovacího skriptu%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -7488,17 +7530,17 @@ msgstr "Soubor neexistuje" msgid "Select binary log to view" msgstr "Zvolte binární log pro zobrazení" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Soubory" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Zobrazit zkrácené dotazy" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Zobrazit celé dotazy" @@ -7892,8 +7934,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " "tabulek se může lišit od oprávnění, která server právě používá, pokud byly " @@ -8021,7 +8063,7 @@ msgstr "Nadřízený server bych úspěšně změněn na %s" msgid "This server is configured as master in a replication process." msgstr "Tento server je v replikačním procesu nastavený jako nadřízený." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Zobrazit stav nadřízeného" @@ -8168,12 +8210,12 @@ msgstr "" "Tento server není nastaven jako podřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bylo úspěšně zabito." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8181,166 +8223,162 @@ msgstr "" "phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již " "skončil." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Obslužné rutiny" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Vyrovnávací paměť dotazů" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Počet vláken" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Dočasná data" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Odložené inserty" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Vyrovnávací paměť klíčů" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Použité výběry" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Řazení" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Koordinátor transakcí" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Zavřít všechny tabulky" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Zobrazit otevřené tabulky" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Zobrazit podřízené servery" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Zobrazit stav podřízených serverů" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Vyprázdnit vyrovnávací paměť dotazů" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Stav serveru" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Server" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Statistika dotazů" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Zobrazit tabulku se stavem podřízených" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Obnovit" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Sekundy" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Sekundy" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Minuty" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Neměnit heslo" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Zobrazit otevřené tabulky" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "Související odkazy" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "za hodinu" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "za minutu" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "za sekundu" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Typ dotazu" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Tento MySQL server běží %s. Čas spuštění: %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8348,17 +8386,17 @@ msgstr "" "Tento server pracuje jako nadřízený i podřízený v " "replikačním procesu." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Tento server pracuje jako nadřízený v replikačním procesu." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Tento server pracuje jako podřízený v replikačním procesu." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8366,15 +8404,15 @@ msgstr "" "Pro více informací o stavu replikace se podívejte do sekce replikace." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Stav replikace" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Provoz" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8382,45 +8420,41 @@ msgstr "" "Na hodně zatíženém serveru mohou čítače přetéct, takže statistiky MySQL " "serveru mohou být nepřesné." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Přijato" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Odesláno" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Připojení" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "Maximum současných připojení" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Nepovedených pokusů" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Přerušené" -#: server_status.php:784 -msgid "Processes" -msgstr "Procesy" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nepodařilo se připojit k MySQL serveru" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8430,16 +8464,16 @@ msgstr "" "binlog_cache_size a musely použít dočasný soubor pro uložení příkazů " "transakce." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcí, které využily dočasný binární log." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8450,18 +8484,18 @@ msgstr "" "Pokud je tato hodnota velká, můžete zvětšit parametr tmp_table_size a MySQL " "bude používat větší dočasné tabulky v paměti." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Počet vytvořených dočasných souborů." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" "Počet dočasných tabulek vytvořených serverem v paměti při provádění dotazů." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8469,7 +8503,7 @@ msgstr "" "Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba " "(pravděpodobně duplicitní klíč)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8477,23 +8511,23 @@ msgstr "" "Počet vláken používaných pro INSERT DELAYED. Každá tabulka na které je " "použit INSERT DEKAYED má přiděleno jedno vlákno." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Počet řádků zapsaných pomocí INSERT DELAYED." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Počet provedených příkazů FLUSH." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Počet interních příkazů COMMIT." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Počet požadavků na smazání řádku." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8502,7 +8536,7 @@ msgstr "" "Počet zjišťování tabulek. Tímto se nazývá dotaz NDB clusteru, jestli ví o " "tabulce daného jména." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8512,7 +8546,7 @@ msgstr "" "server provádí mnoho kompletních procházení indexu. Na příklad SELECT col1 " "FROM foo, pokud je col1 indexována." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8520,7 +8554,7 @@ msgstr "" "Počet požadavků na přečtení řádku vycházející z indexu. Vysoká hodnota " "znamená, že dotazy správně využívají indexy." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8530,7 +8564,7 @@ msgstr "" "zvětšuje pokud provádíte dotaz na indexované pole s omezením rozsahu nebo " "prohledáváte index." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8538,7 +8572,7 @@ msgstr "" "Počet požadavků na přečtení předchozího řádku z indexu. Používané pro " "optimalizaci dotazů ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8550,7 +8584,7 @@ msgstr "" "Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky " "nebo používáte spojení tabulek, která nevyužívají indexů." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8561,35 +8595,35 @@ msgstr "" "pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné " "indexy." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Počet interních příkazů ROLLBACK." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Počet požadavků na aktualizaci řádku." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Počet požadavků na vložení řádku." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránek obsahujících data (změněné i nezměněné)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Počet změněných stránek." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránek, na které je požadavek na vyprázdnění." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Počet volných stránek." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8598,7 +8632,7 @@ msgstr "" "Počet zamčených stránek, tzn. stránek, které jsou právě zapisovány nebo " "čteny nebo nemohou být odstraněny z jakéhokoliv důvodu." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8610,11 +8644,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Celková velikost InnoDB bufferů, ve stránkách." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8622,7 +8656,7 @@ msgstr "" "Počet provedených „náhodných“ dopředných čtení. Tato situace nastává pokud " "dotaz prochází velkou část tabulky v náhodném pořadí." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8630,11 +8664,11 @@ msgstr "" "Počet provedených sekvenčních dopředných čtení. Toto nastává pokud InnoDB " "musí procházet celou tabulku." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Počet provedených logických čtení." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8642,7 +8676,7 @@ msgstr "" "Počet logických čtení, které nemohly být uspokojeny z bufferu, ale bylo " "nutné přečíst stránku ze souboru." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8655,55 +8689,55 @@ msgstr "" "k dispozici, musí se čekat. Pokud je velikost bufferů nastavena správně, " "měla by tato hodnota být malá." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisů provedených do InnoDB bufferu." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Počet provedených synchronizací fsync()." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Počet nevyřízených synchronizací fsync()." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Počet nevyřízených čtení." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Počet nevyřízených zápisů." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Velikost přečtených dat, v bajtech." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Počet provedených čtení dat." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Počet provedených zápisů dat." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Velikost zapsaných dat, v bajtech." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8711,35 +8745,35 @@ msgstr "" "Počet čekání kvůli plnému bufferu logu, který musel být vyprázdněn před " "pokračováním." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Počet požadavků na zápis do logovacího souboru." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Počet skutečných zápisů do logovacího souboru." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Počet synchronizací fsync() provedených na logovacích souborech." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Počet nevyřízených synchronizací logovacích souborů." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Počet nevyřízených zápisů do logovacích souborů." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Počet bajtů zapsaných do logovacího souboru." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Počet vytvořených stránek." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8747,51 +8781,51 @@ msgstr "" "Zakompilovaná velikost stránky InnoDB (výchozí je 16 kB). Mnoho hodnot je " "uváděno ve stránkách, pomocí této hodnoty je můžete přepočítat na velikost." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Počet přečtených stránek." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Počet zapsaných stránek." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Počet zámků řádku, na které se v současné době čeká." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Průměrný čas potřebný pro získání zámku řádku, v milisekundách." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas strávený čekáním na zámek řádku, v milisekundách." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximální čas potřebný pro získání zámku řádku, v milisekundách." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Kolikrát se muselo čekat na zámek řádku." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet řádků odstraněných z InnoDB tabulek." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet řádků vložených do InnoDB tabulek." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Počet řádků přečtených z InnoDB tabulek." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Počet řádků aktualizovaných v InnoDB tabulkách." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8799,7 +8833,7 @@ msgstr "" "Počet bloků ve vyrovnávací paměti klíčů, které byly změněny, ale nebyly " "zapsány na disk. Dříve se tato hodnota jmenovala Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8807,7 +8841,7 @@ msgstr "" "Počet nepoužitých bloků ve vyrovnávací paměti klíčů. Pomocí této hodnoty " "poznáte jak moc je vyrovnávací paměť využitá." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8816,11 +8850,11 @@ msgstr "" "Počet použitých bloků ve vyrovnávací paměti klíčů. Tato hodnota určuje " "maximum bloků, které kdy byly obsazeny najednou." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Počet požadavků na přečtení klíče z vyrovnávací paměti." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8830,15 +8864,15 @@ msgstr "" "pravděpodobně máte malou vyrovnávací paměť (key_buffer_size). Úspěšnost " "vyrovnávací paměti můžete spočítat jako Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Počet požadavků na zápis bloku klíče na disk." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Počet skutečných zápisů bloku klíče na disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8848,17 +8882,17 @@ msgstr "" "dotazů. Užitečné pro porovnání různých dotazů. Výchozí hodnota 0 znamená, že " "žádný dotaz ještě nebyl kompilován." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet řádků čekajících na zapsání ve frontě INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8866,38 +8900,38 @@ msgstr "" "Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, " "pravděpodobně máte malou vyrovnávací paměť pro tabulky." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Počet otevřených souborů." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otevřených streamů (používané převážně pro logování)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Počet aktuálně otevřených tabulek." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Velikost volné paměti ve vyrovnávací paměti dotazů." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Počet zásahů vyrovnávací paměti dotazů." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Počet dotazů přidaných do vyrovnávací paměti dotazů." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8909,7 +8943,7 @@ msgstr "" "Vyrovnávací paměť používá strategii LRU (nejdéle nepoužité) pro vyřazování " "dotazů z vyrovnávací paměti." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8917,19 +8951,19 @@ msgstr "" "Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli " "nastavení query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Počet dotazů ve vyrovnávací paměti dotazů." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Celkový počet bloků ve vyrovnávací paměti dotazů." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikace." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8937,12 +8971,12 @@ msgstr "" "Počet spojení, které nevyužívaly indexy. Pokud tato hodnota není 0, měli " "byste zkontrolovat indexy tabulek." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, které používaly intervalové vyhledávání na referenční tabulce." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8950,7 +8984,7 @@ msgstr "" "Počet spojení bez klíčů, které kontrolovaly použití klíčů po každém řádku. " "(Pokud tato hodnota není 0, měli byste zkontrolovat indexy tabulek.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8958,38 +8992,38 @@ msgstr "" "Počet spojení, které používaly intervalové vyhledávání na první tabulce. " "(Tato hodnota obvykle není kritická i když je vysoká.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, které prováděly kompletní procházení první tabulky." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Počet dočasných tabulek v současné době otevřených podřízeným serverem." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "Celkový počet, kolikrát musel podřízený server opakovat transakce." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Tato položka je zapnutá, pokud server pracuje jako podřízený." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Počet vláken jejichž vytvoření trvalo déle než slow_launch_time sekund." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Počet dotazů, které trvaly déle než long_query_time sekund." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8998,23 +9032,23 @@ msgstr "" "Počet průchodů slučování, které musel provést řadicí algoritmus. Při příliš " "vysoké hodnotě zvažte zvýšení sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Počet řazení, které byly omezeny rozsahem." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Počet řazených řádek." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Počet řazení provedených procházením tabulky." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet okamžitých získání zámku tabulky." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9025,7 +9059,7 @@ msgstr "" "problémy s výkonem, měli byste optimalizovat dotazy a případně rozdělit " "tabulky nebo použít replikaci." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9035,11 +9069,11 @@ msgstr "" "spočítána jako Threads_created/Connections. Pokud je tato hodnota červená, " "měli byste zvýšit thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Počet aktuálně otevřených připojení." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9050,7 +9084,7 @@ msgstr "" "velká, můžete zvětšit parametr thread_cache_size. (Na platformách, které " "mají dobrou implementaci vláken však toto nemá příliš velký vliv.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Počet vláken, která nespí." @@ -9173,7 +9207,7 @@ msgstr "Proměnné a nastavení serveru" msgid "Session value" msgstr "Hodnota sezení" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Globální hodnota" @@ -9429,8 +9463,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%" -"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " +"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie" +"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " "hodnotu než je tato." #: setup/lib/index.lib.php:266 @@ -9441,8 +9475,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %" -"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " +"Pokud to považujete za nutné, použijte další možnosti zabezpečení - " +"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " "založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa " "dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli." diff --git a/po/cy.po b/po/cy.po index 1e2825e1fe..e3d1604586 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-05-19 21:21+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" +"Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cy\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.0.5\n" @@ -50,7 +50,7 @@ msgstr "Chwilio" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -87,7 +87,7 @@ msgstr "Enw allweddol" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Disgrifiad" @@ -169,7 +169,7 @@ msgstr "Math" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -198,7 +198,7 @@ msgstr "Cysylltu i" msgid "Comments" msgstr "Sylwadau" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -214,7 +214,7 @@ msgstr "Sylwadau" msgid "No" msgstr "Na" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -274,7 +274,7 @@ msgstr "Cafodd y gronfa ddata %s ei chopïo i %s" msgid "Rename database to" msgstr "Ailenwch y gronfa ddata i" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Gorchymyn" @@ -376,7 +376,7 @@ msgstr "Rhesi" msgid "Size" msgstr "Maint" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "ar ddefnydd" @@ -402,7 +402,7 @@ msgstr "Diweddariad diwethaf" msgid "Last check" msgstr "Gwiriad diwethaf" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -586,62 +586,62 @@ msgstr "Tu fewn tabl(au):" msgid "Inside column:" msgstr "Tu fewn colofn:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Cafodd tabl %s ei wagu" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Cafodd golwg %s ei ollwng" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Cafodd tabl %s ei ollwng" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Mae tracio'n weithredol" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Nid yw tracio'n weithredol" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Dangos" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Dyblygiad" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Swm" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s yw'r peiriant storio diofyn ar y gweinydd MySQL hwn." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -649,23 +649,23 @@ msgstr "%s yw'r peiriant storio diofyn ar y gweinydd MySQL hwn." msgid "With selected:" msgstr "Gyda'r dewis:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Dewis Pob" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Dad-ddewis Pob" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -673,56 +673,56 @@ msgstr "Gwiriwch dablau â gorbenion" msgid "Export" msgstr "Allforio" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Argraffu golwg" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Gwagu" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Gollwng" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Gwirio tabl" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimeiddio tabl" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Trwsio tabl" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Dadansoddi tabl" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Rename table to" msgid "Replace table prefix" msgstr "Ailenwi tabl i" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Geiriadur Data" @@ -737,7 +737,7 @@ msgstr "Tablau a draciwyd" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Crëwyd" msgid "Updated" msgstr "Diweddarwyd" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Statws" @@ -855,8 +855,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth" "%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn." @@ -1061,181 +1061,7 @@ msgstr "" msgid "Close" msgstr "Cau" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Dewis Gweinydd" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show insert query" -msgid "Live query chart" -msgstr "Dangos ymholiad mewnosod" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Cyfanswm" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Diddymu" - -#: js/messages.php:83 -#, fuzzy -#| msgid "Load" -msgid "Loading" -msgstr "llwytho" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Prosesau" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Ailenwch y gronfa ddata i" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Ailenwch y gronfa ddata i" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Copïwch y gronfa ddata i" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Set nodau" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one column." -msgid "Table must have at least one column" -msgstr "Mae'n rhaid i'r tabl gael o leiaf un golofn." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Crëwch dabl" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Defnyddiwch Dablau" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Chwilio" - -#: js/messages.php:105 -#, fuzzy -#| msgid "in query" -msgid "Hide search results" -msgstr "mewn ymholiad" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Show insert query" -msgid "Show search results" -msgstr "Dangos ymholiad mewnosod" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Porwch" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Delete" -msgid "Deleting" -msgstr "Dileu" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -#| msgid "in query" -msgid "Hide query box" -msgstr "mewn ymholiad" - -#: js/messages.php:115 -#, fuzzy -#| msgid "Show insert query" -msgid "Show query box" -msgstr "Dangos ymholiad mewnosod" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Inline" -msgid "Inline Edit" -msgstr "Mewnol" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1244,7 +1070,221 @@ msgstr "Mewnol" msgid "Edit" msgstr "Golygu" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Dewis Gweinydd" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show insert query" +msgid "Live query chart" +msgstr "Dangos ymholiad mewnosod" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Cyfanswm" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Dewis Gweinydd" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Prosesau" + +#: js/messages.php:85 +msgid "Connections / Processes" +msgstr "" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +msgid "Issued queries" +msgstr "" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "Dangos ystadegau" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Diddymu" + +#: js/messages.php:96 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "llwytho" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Prosesau" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Ailenwch y gronfa ddata i" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Ailenwch y gronfa ddata i" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Copïwch y gronfa ddata i" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Set nodau" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one column." +msgid "Table must have at least one column" +msgstr "Mae'n rhaid i'r tabl gael o leiaf un golofn." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Crëwch dabl" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Defnyddiwch Dablau" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Chwilio" + +#: js/messages.php:118 +#, fuzzy +#| msgid "in query" +msgid "Hide search results" +msgstr "mewn ymholiad" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Show insert query" +msgid "Show search results" +msgstr "Dangos ymholiad mewnosod" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Porwch" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "Dileu" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +#| msgid "in query" +msgid "Hide query box" +msgstr "mewn ymholiad" + +#: js/messages.php:128 +#, fuzzy +#| msgid "Show insert query" +msgid "Show query box" +msgstr "Dangos ymholiad mewnosod" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Inline" +msgid "Inline Edit" +msgstr "Mewnol" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1252,77 +1292,77 @@ msgstr "Golygu" msgid "Save" msgstr "Cadw" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Cuddio" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "mewn ymholiad" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy #| msgid "Show insert query" msgid "Show search criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Dewis Allwedd Estron" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Dewis colofn i'w dangos" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generadu Cyfrinair" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generadu" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Newid cyfrinair" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mo" msgid "More" msgstr "Llu" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1330,30 +1370,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Gwiriwch y fersiwn diweddaraf" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Neidiwch i'r gronfa ddata" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Gorffen" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Cynt" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1361,231 +1401,231 @@ msgid "Next" msgstr "Nesaf" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Heddiw" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Ionawr" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Chwefror" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Mawrth" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Ebrill" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mai" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Mehefin" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Gorffennaf" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Awst" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Medi" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Hydref" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Tachwedd" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Rhag" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Dydd Sul" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Dydd Llun" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Dydd Mawrth" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "DYdd Mercher" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Dydd Iau" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Dydd Gwener" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Dydd Sadwrn" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Llu" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Ia" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Gw" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Wy" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Awr" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Munud" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Eiliad" @@ -1814,11 +1854,11 @@ msgstr "Croeso i %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1" -"$sgript gosod%2$s er mwyn ei chreu." +"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r " +"%1$sgript gosod%2$s er mwyn ei chreu." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -1963,7 +2003,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tablau" @@ -2090,7 +2130,7 @@ msgid "Documentation" msgstr "Dogfennaeth" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "Ymholiad SQL" @@ -2121,7 +2161,7 @@ msgid "Create PHP Code" msgstr "Creu Cod PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Adfywio" @@ -4769,8 +4809,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4790,7 +4830,7 @@ msgstr "Cywasgiad" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Dim" @@ -5041,7 +5081,7 @@ msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Lladd" @@ -5131,7 +5171,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Pwll Byffer" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Statws InnoDB" @@ -5478,8 +5518,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5600,7 +5640,7 @@ msgstr "Mathau MIME ar gael" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Gwesteiwr" @@ -6288,13 +6328,13 @@ msgid "Slave status" msgstr "Statws y caeth" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Newidyn" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Gwerth" @@ -6529,12 +6569,12 @@ msgid "Synchronize" msgstr "Cydamseru" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Log deuaidd" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Newidynnau" @@ -6791,7 +6831,7 @@ msgstr "Diffiniad PARTITION" msgid "+ Add a new value" msgstr "Ychwanegwch weinydd newydd" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Amser" @@ -6952,7 +6992,7 @@ msgid "Protocol version" msgstr "Fersiwn protocol" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Defnyddiwr" @@ -7398,17 +7438,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Ffeiliau" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "" @@ -7790,8 +7830,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7913,7 +7953,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8050,263 +8090,253 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Dewis Gweinydd" -#: server_status.php:372 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "Dangos ystadegau" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Adfywio" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Eiliad" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Eiliad" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Munud" -#: server_status.php:446 +#: server_status.php:460 msgid "Containing the word:" msgstr "" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show only listed databases" msgid "Show only alert values" msgstr "Dangoswch gronfeydd data a restrir yn unig" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Perthnasau" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "" -#: server_status.php:784 -msgid "Processes" -msgstr "Prosesau" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8314,78 +8344,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8393,7 +8423,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8401,42 +8431,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8444,33 +8474,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8479,227 +8509,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8707,99 +8737,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8807,18 +8837,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8826,7 +8856,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -8947,7 +8977,7 @@ msgstr "" msgid "Session value" msgstr "" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "" diff --git a/po/da.po b/po/da.po index d44994e28d..638ff2389a 100644 --- a/po/da.po +++ b/po/da.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-03-07 01:17+0200\n" "Last-Translator: \n" "Language-Team: danish \n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "Søg" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Nøglenavn" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Beskrivelse" @@ -164,7 +164,7 @@ msgstr "Datatype" msgid "Null" msgstr "Nulværdi" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -193,7 +193,7 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -209,7 +209,7 @@ msgstr "Kommentarer" msgid "No" msgstr "Nej" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -269,7 +269,7 @@ msgstr "Database %s er blevet kopieret til %s" msgid "Rename database to" msgstr "Omdøb database til" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Kommando" @@ -374,7 +374,7 @@ msgstr "Rækker" msgid "Size" msgstr "Størrelse" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "i brug" @@ -400,7 +400,7 @@ msgstr "Sidste opdatering" msgid "Last check" msgstr "Sidste check" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -587,63 +587,63 @@ msgstr "Indeni tabel(ler):" msgid "Inside column:" msgstr "Indeni tabel(ler):" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Ingen tabeller fundet i databasen." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s er tømt" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Visning %s er blevet droppet" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s er slettet" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Visning" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikering" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Sum" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard datalageret på denne MySQL-server." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -651,23 +651,23 @@ msgstr "%s er standard datalageret på denne MySQL-server." msgid "With selected:" msgstr "Med det markerede:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Afmærk alt" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Fjern alle mærker" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -675,58 +675,58 @@ msgstr "Check tabeller der har overhead" msgid "Export" msgstr "Eksport" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Vis (udskriftvenlig)" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Tøm" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Slet" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Tjek tabel" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimer tabel" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Reparer tabel" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analysér tabel" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Erstat data i tabellen med filens data" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Erstat data i tabellen med filens data" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -741,7 +741,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -759,7 +759,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -859,11 +859,11 @@ msgstr "Dump er blevet gemt i filen %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %" -"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " +"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst " +"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " "begrænsning." #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1072,179 +1072,7 @@ msgstr "Fjern valgte brugere" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Server valg" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Showing SQL query" -msgid "Live query chart" -msgstr "Viser SQL-forespørgsel" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Total" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Annuller" - -#: js/messages.php:83 -msgid "Loading" -msgstr "" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Processer" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Omdøb database til" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Omdøb database til" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Kopiér database til" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Tegnsæt" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Tabellen skal indeholde mindst ét felt." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Opret tabel" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Benyt tabeller" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Søg" - -#: js/messages.php:105 -#, fuzzy -#| msgid "in query" -msgid "Hide search results" -msgstr "i forespørgsel" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Showing SQL query" -msgid "Show search results" -msgstr "Viser SQL-forespørgsel" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Vis" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Sletter %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -#| msgid "in query" -msgid "Hide query box" -msgstr "i forespørgsel" - -#: js/messages.php:115 -#, fuzzy -#| msgid "Showing SQL query" -msgid "Show query box" -msgstr "Viser SQL-forespørgsel" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Lagre" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1253,7 +1081,221 @@ msgstr "Lagre" msgid "Edit" msgstr "Ret" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Server valg" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Showing SQL query" +msgid "Live query chart" +msgstr "Viser SQL-forespørgsel" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Server valg" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Processer" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Forbindelser" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +msgid "Issued queries" +msgstr "" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +#| msgid "Databases statistics" +msgid "Query statistics" +msgstr "Databasestatistik" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Annuller" + +#: js/messages.php:96 +msgid "Loading" +msgstr "" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Processer" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Omdøb database til" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Omdøb database til" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Kopiér database til" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Tegnsæt" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Tabellen skal indeholde mindst ét felt." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Opret tabel" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Benyt tabeller" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Søg" + +#: js/messages.php:118 +#, fuzzy +#| msgid "in query" +msgid "Hide search results" +msgstr "i forespørgsel" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Showing SQL query" +msgid "Show search results" +msgstr "Viser SQL-forespørgsel" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Vis" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Sletter %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +#| msgid "in query" +msgid "Hide query box" +msgstr "i forespørgsel" + +#: js/messages.php:128 +#, fuzzy +#| msgid "Showing SQL query" +msgid "Show query box" +msgstr "Viser SQL-forespørgsel" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Lagre" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1261,79 +1303,79 @@ msgstr "Ret" msgid "Save" msgstr "Gem" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Skjul" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "i forespørgsel" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "Viser SQL-forespørgsel" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Vælg refereret nøgle" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Vælg fremmednøgle" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Vælg venligst den primære nøgle eller en unik nøgle" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vælg felt der skal vises" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generér Kodeord" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generér" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ændre kodeord" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "man" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1341,32 +1383,32 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "Ingen databaser" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "Ingen" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1374,96 +1416,96 @@ msgid "Next" msgstr "Næste" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binært " -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "maj" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1471,176 +1513,176 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "dec" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "søn" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "man" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "tir" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "fre" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "lør" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "søn" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "man" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "tir" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ons" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "tor" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "fre" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "i brug" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1874,8 +1916,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. " "Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en." @@ -2018,7 +2060,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabeller" @@ -2156,7 +2198,7 @@ msgid "Documentation" msgstr "Dokumentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-forespørgsel" @@ -2185,7 +2227,7 @@ msgid "Create PHP Code" msgstr "Fremstil PHP-kode" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Opdatér" @@ -4842,8 +4884,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede " "strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst " @@ -4866,7 +4908,7 @@ msgstr "Komprimering" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Ingen" @@ -5129,7 +5171,7 @@ msgid "The row has been deleted" msgstr "Rækken er slettet!" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Dræb (Kill)" @@ -5223,7 +5265,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB status" @@ -5580,8 +5622,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5704,7 +5746,7 @@ msgstr "Tilgængelige MIME-typer" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Vært" @@ -6402,13 +6444,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Værdi" @@ -6649,12 +6691,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binær log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variabler" @@ -6953,7 +6995,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Tilføj en ny bruger" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Tid" @@ -7195,7 +7237,7 @@ msgid "Protocol version" msgstr "Protokolversion" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Bruger" @@ -7672,17 +7714,17 @@ msgstr "Tabellen \"%s\" findes ikke!" msgid "Select binary log to view" msgstr "Vælg binærlog til gennemsyn" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Filer" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Trunkér viste forespørgsler" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Vis fuldstændige forespørgsler" @@ -8080,14 +8122,14 @@ msgstr "Drop databaser der har samme navne som brugernes." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs " "privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra " "privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle " -"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%" -"s før du fortsætter." +"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" +"%s før du fortsætter." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -8215,7 +8257,7 @@ msgstr "Privilegierne blev korrekt genindlæst." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8352,206 +8394,200 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s blev stoppet." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke dræbe tråden %s. Den er sandsynligvis allerede lukket." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Handler" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Forespørgsel-mellemlager" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Tråde" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Midlertidige data" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Forsinkede inserts" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Nøglemellemlager (key cache)" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Joins" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Sortering" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Transaktionskoordinator" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Flush (luk) alle tabeller" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Vis åbne tabeller" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Vis slaveværter" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Vis slavestatus" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Flush forespørgsel-mellemlager (query cache)" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Runtime-information" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Server valg" -#: server_status.php:372 -#, fuzzy -#| msgid "Databases statistics" -msgid "Query statistics" -msgstr "Databasestatistik" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Opdatér" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "pr. sekund" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "pr. sekund" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "i brug" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Kodeord må ikke ændres" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Vis åbne tabeller" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relationer" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "pr. time" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "pr. minut" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "pr. sekund" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Forespørgselstype" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Denne MySQL-server har kørt i %s. Den startede op den %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Trafik" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8559,45 +8595,41 @@ msgstr "" "På en travl server er der risiko for at bytetællerne løber over, så disse " "statistikker som rapporteret af MySQL-serveren kan være forkerte." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Modtaget" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Sendt" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Forbindelser" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "maks. samtidige forbindelser" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Mislykkede forsøg" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Afbrudt" -#: server_status.php:784 -msgid "Processes" -msgstr "Processer" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Antallet af fsyncs skrivninger lavet til log filen." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8607,17 +8639,17 @@ msgstr "" "overskred værdien for binlog_cache_size og brugte en midlertidig fil til at " "gemme statements fra transaktionen." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antal transaktioner der brugte det midlertidige binære log mellemlager." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8629,11 +8661,11 @@ msgstr "" "overveje at forøge tmp_table_size værdien for at gøre midlertidige tabeller " "hukommelses-baserede i stedet for disk-baserede." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Hvor mange midlertidige filer mysqld har oprettet." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8641,7 +8673,7 @@ msgstr "" "Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren " "under udførelse af statements." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8649,7 +8681,7 @@ msgstr "" "Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke " "der opstod fejl (sandsynligvis dublerede nøgler)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8657,23 +8689,23 @@ msgstr "" "Antallet af INSERT DELAYED handler-tråde i brug. Hver forskellig tabel " "hvorpå en bruger INSERT DELAYED får sin egen tråd." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Antallet af INSERT DELAYED rækker skrevet." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Antallet af udførte FLUSH statements." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Antallet af interne COMMIT statements." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Antallet af gange en række blev slettet fra en tabel." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8683,7 +8715,7 @@ msgstr "" "tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer " "antallet af gange tabeller er blevet opdaget." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8693,7 +8725,7 @@ msgstr "" "antyder det at serveren laver mange fulde indeks scans; for eksempel, SELECT " "col1 FROM foo, antagende at col1 er indekseret." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8702,7 +8734,7 @@ msgstr "" "er høj, er det en god indikation af at dine forespørgsler og tabeller er " "ordentligt indekserede." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8712,7 +8744,7 @@ msgstr "" "hvis du forespørger på en indekskolonne med en range-begrænsning eller hvis " "du udfører et indeks scan." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8720,7 +8752,7 @@ msgstr "" "Antallet af anmodninger om at læse foregående række i nøgleorden. Denne " "læsemetode bruges hovedsageligt til at optimere ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8732,7 +8764,7 @@ msgstr "" "resultatet. Du har sandsynligvis mange forespørgsler der forlanger at MySQL " "scanner hele tabeller eller du har joins der ikke bruger nøgler ordentligt." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8744,35 +8776,35 @@ msgstr "" "enten ikke er ordentligt indekserede eller at dine forespørgsler ikke er " "skrevet til at drage fordel af de indeks du har." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Antallet af interne ROLLBACK statements." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Antallet af anmodninger om at opdatere en række i en tabel." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Antallet af anmodninger om at indsætte en række i en tabel." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Antallet af sider der indeholder data (beskidte eller rene)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Antallet af såkaldt beskidte sider." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antallet af buffer pool sider der er anmodet om at skulle flushes." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Antallet af frie sider." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8782,7 +8814,7 @@ msgstr "" "sider der i øjeblikket læses eller skrives eller som ikke kan flushes eller " "fjernes af andre årsager." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8794,11 +8826,11 @@ msgstr "" "også beregnes som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på buffer pool, i sider." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8807,7 +8839,7 @@ msgstr "" "forespørgsel skal scanne en større del af en tabel men i tilfældig " "rækkefølge." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8815,11 +8847,11 @@ msgstr "" "Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når " "InnoDB laver en sekventiel fuld tabelscanning." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Antallet af logiske read anmodninger InnoDB har lavet." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8827,7 +8859,7 @@ msgstr "" "Antallet af logiske reads som InnoDB ikke kunne tilfredsstille fra buffer " "pool og måtte lave en enkelt-side read." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8841,55 +8873,55 @@ msgstr "" "sider først. Denne tæller tæller hvor mange gange det er sket. Hvis buffer " "pool størrelsen er sat ordentligt, skulle denne værdi være lille." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antallet af skrivninger til InnoDB buffer poolen." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Antallet af fsync() operationer indtil nu." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Nuværende antal ventende fsync() operationer." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Nuværende antal af ventende reads." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Nuværende antal af ventende writes." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Mængden af data læst indtil nu, i bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Det totale antal af data reads." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Det totale antal af data writes." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Mængden af data skrevet indtil nu, i bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8897,35 +8929,35 @@ msgstr "" "Antallet af waits vi har haft fordi log buffer var for lille og vi skulle " "vente på at den blev flushed før vi kunne fortsætte." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Antallet af log write anmodninger." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Antallet af fysiske skrivninger til log filen." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Antallet af fsyncs skrivninger lavet til log filen." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Antallet af ventende log fil fsyncs." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Ventende log fil skrivninger." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Antallet af bytes skrevet til log filen." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Antallet af sider oprettet." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8933,51 +8965,51 @@ msgstr "" "Den indkompilerede InnoDB sidestørrelse (standard 16KB). Mange værdier " "tælles i sider; sidestørrelsen gør at man let kan omregne dem til bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Antallet af sider læst." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Antallet af sider skrevet." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Antallet af rækkelåse der ventes på i øjeblikket." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gennemsnitstiden for at få en rækkelås, i millisekunder." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brugt på at hente rækkelåse, i millisekunder." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimale tid for at hente en rækkelås, i millisekunder." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Antallet af gange der skulle ventes på en rækkelås." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Antallet af rækker slettet fra InnoDB tabeller." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Antallet af rækker indsat i InnoDB tabeller." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Antallet af rækker læst fra InnoDB tables." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Antallet af rækker opdateret i InnoDB tabeller." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8986,7 +9018,7 @@ msgstr "" "endnu ikke er blevet flushet til disk. Det hed tidligere " "Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8994,7 +9026,7 @@ msgstr "" "Antallet af ubrugte blokke i nøglemellemlageret. Du kan bruge denne værdi " "til at fastslå hvor meget af nøglemellemlagere der er i brug." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9004,11 +9036,11 @@ msgstr "" "mærke der indikerer det maksimale antal blokke der på noget tidspunkt har " "været i brug på en gang." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Antallet af anmodninger om at læse en nøgleblok fra mellemlageret." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9018,15 +9050,15 @@ msgstr "" "stor, er din key_buffer_size værdi sandsynligvis for lille. Mellemlager miss " "raten kan beregnes som Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Antallet af anmodninger om at skrive en nøgleblok til mellemlageret." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Antallet af fysiske skrivninger af en nøgleblok til disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9038,18 +9070,18 @@ msgstr "" "standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler " "endnu." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Antallet af rækker der venter på at blive skrevet i INSERT DELAYED køer." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9057,38 +9089,38 @@ msgstr "" "Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er " "dit tabelmellemlager sandsynligvis for lille." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Antallet af filer der er åbne." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antallet af streams der er åbne (bruges hovedsageligt til logning)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Antallet af tabeller der er åbne." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Antallet af mellemlager hits." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Antallet af forespørgsler tilføjet til mellemlageret." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9101,7 +9133,7 @@ msgstr "" "Forespørgselsmellemlageret bruger en mindst nyligt brugt (LRU) strategi til " "at afgøre hvilke forespørgsler der skal fjernes fra mellemlageret." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9109,19 +9141,19 @@ msgstr "" "Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre " "eller ikke mellemlagret grundet query_cache_type indstillingen)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Antallet af forespørgsler registreret i mellemlageret." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Totalt antal blokke i forespørgsels-mellemlageret." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status på failsafe replikering (endnu ikke implementeret)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9129,11 +9161,11 @@ msgstr "" "Antallet af joins der ikke bruger indeks. Hvis denne værdi ikke er 0, bør du " "nøje tjekke indeksene på dine tabeller." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "Antallet af joins der brugte en range søgning på en reference tabel." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9141,7 +9173,7 @@ msgstr "" "Antallet af joins uden nøgler der tjekker for nøglebrug efter hver række. " "(Hvis denne ikke er 0, bør du nøje tjekke indeks på dine tabeller.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9149,15 +9181,15 @@ msgstr "" "Antallet af joins der brugte ranges på den første tabel. (Normalt ikke " "kritisk selvom tallet er stort.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Antallet af joins som lavede en fuld scan af den første tabel." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antallet af midlertidige tabeller i øjeblikket åbne af SQL tråden." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9165,12 +9197,12 @@ msgstr "" "Totalt (siden opstart) antal gange replikeringsslave SQL tråden har gen-" "forsøgt transaktioner." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dette er TIL hvis denne server er en slave der er forbundet til en master." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9178,13 +9210,13 @@ msgstr "" "Antallet af tråde der har taget mere end slow_launch_time sekunder at " "oprette." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Antallet af forespørgsler der har taget mere end long_query_time sekunder." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9194,23 +9226,23 @@ msgstr "" "denne værdi er høj, bør du overveje at forøge værdien af sort_buffer_size " "systemvariablen." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Antallet af sorteringer lavet med ranges." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Antallet af sorterede rækker." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Antallet af sorteringer udført ved scanning af tabellen." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Antallet af gange en tabellås blev givet øjeblikkeligt." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9222,7 +9254,7 @@ msgstr "" "optimere dine forespørgsler, og derefter enten opdele din tabel eller " "tabeller, eller bruge replikering." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9232,11 +9264,11 @@ msgstr "" "som Threads_created/Forbindelser. Hvis denne værdi er rød bør du forøge din " "thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Antallet af i øjeblikket åbne forbindelser." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9248,7 +9280,7 @@ msgstr "" "(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god " "tråd-implementering.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Antallet af tråde der ikke sover." @@ -9371,7 +9403,7 @@ msgstr "Server-variabler og indstillinger" msgid "Session value" msgstr "Sessionsværdi" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Global værdi" diff --git a/po/de.po b/po/de.po index 361db3b9a8..09adecc6b0 100644 --- a/po/de.po +++ b/po/de.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-04-23 04:28+0200\n" "Last-Translator: Dominik Geyer \n" "Language-Team: german \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "Suche" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Schlüsselname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Beschreibung" @@ -166,7 +166,7 @@ msgstr "Typ" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Verweise" msgid "Comments" msgstr "Kommentare" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Kommentare" msgid "No" msgstr "Nein" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Datenbank %s wurde nach %s kopiert" msgid "Rename database to" msgstr "Datenbank umbenennen in" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Befehl" @@ -344,8 +344,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%" -"s um herauszufinden warum." +"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier" +"%s um herauszufinden warum." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -373,7 +373,7 @@ msgstr "Zeilen" msgid "Size" msgstr "Größe" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "in Benutzung" @@ -399,7 +399,7 @@ msgstr "Aktualisiert am" msgid "Last check" msgstr "Letzter Check am" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -582,63 +582,63 @@ msgstr "In der / den Tabelle(n):" msgid "Inside column:" msgstr "In Spalte:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Diese Datenbank enthält keine Tabellen." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Die Tabelle %s wurde geleert." -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Die Ansicht %s wurde gelöscht" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Die Tabelle %s wurde gelöscht." -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Tracking ist aktiviert." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Tracking ist nicht aktiviert." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die %" -"sDokumentation%s." +"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die " +"%sDokumentation%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Ansicht" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikation" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Gesamt" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -646,23 +646,23 @@ msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt." msgid "With selected:" msgstr "markierte:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Alle auswählen" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Auswahl entfernen" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Tabellen m. Überhang ausw." -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -670,60 +670,60 @@ msgstr "Tabellen m. Überhang ausw." msgid "Export" msgstr "Exportieren" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Druckansicht" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Leeren" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Löschen" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Überprüfe Tabelle" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimiere Tabelle" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Repariere Tabelle" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analysiere Tabelle" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Gehe zur Tabelle" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Tabelleninhalt ersetzen" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Tabelleninhalt ersetzen" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Strukturverzeichnis" @@ -738,7 +738,7 @@ msgstr "Verfolgte Tabellen" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -756,7 +756,7 @@ msgstr "Erstellt" msgid "Updated" msgstr "Aktualisiert" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -856,11 +856,11 @@ msgstr "Dump (Schema) wurde in Datei %s gespeichert." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %" -"sDokumentation%s zur Lösung diese Problems." +"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die " +"%sDokumentation%s zur Lösung diese Problems." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1063,157 +1063,7 @@ msgstr "Die ausgewählten Benutzer werden gelöscht" msgid "Close" msgstr "Schliesse" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Server Auswählen" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Abfragediagramm anzeigen" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Insgesamt" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Abbrechen" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Laden" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Bearbeite Anfrage" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Fehler beim Bearbeiten der Anfrage" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Spalte wird gelöscht" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Primärschlüssel wird hinzugefügt" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Datenbanken werden umbenannt." - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Lade Datenbank neu" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Datenbank wird kopiert" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Zeichensatz wird geändert" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Die Tabelle muss mindestens eine Spalte haben" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Erzeuge Tabelle" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Verwendete Tabellen" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Suche" - -#: js/messages.php:105 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Hide search results" -msgstr "Suchkriterien ausblenden" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Show search criteria" -msgid "Show search results" -msgstr "Suchkriterien anzeigen" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Anzeigen" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Lösche %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "SQL-Querybox ausblenden" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "SQL-Querybox anzeigen" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Direkt bearbeiten" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1222,7 +1072,199 @@ msgstr "Direkt bearbeiten" msgid "Edit" msgstr "Bearbeiten" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Server Auswählen" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query chart" +msgid "Live query chart" +msgstr "Abfragediagramm anzeigen" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Insgesamt" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Server Auswählen" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Prozesse" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Verbindungen" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL-Abfragen" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Statistiken abfragen" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Abbrechen" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Laden" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Bearbeite Anfrage" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Fehler beim Bearbeiten der Anfrage" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Spalte wird gelöscht" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Primärschlüssel wird hinzugefügt" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Datenbanken werden umbenannt." + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Lade Datenbank neu" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Datenbank wird kopiert" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Zeichensatz wird geändert" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Die Tabelle muss mindestens eine Spalte haben" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Erzeuge Tabelle" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Verwendete Tabellen" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Suche" + +#: js/messages.php:118 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Hide search results" +msgstr "Suchkriterien ausblenden" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Show search criteria" +msgid "Show search results" +msgstr "Suchkriterien anzeigen" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Anzeigen" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Lösche %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "SQL-Querybox ausblenden" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "SQL-Querybox anzeigen" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Direkt bearbeiten" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1231,67 +1273,67 @@ msgid "Save" msgstr "Speichern" # Hide heist im deutschen in der EDV ausblenden -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Verstecken" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Suchkriterien ausblenden" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Suchkriterien anzeigen" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Wählen Sie den referenzierten Schlüssel" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Wähle Fremdschlüssel" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Anzuzeigende Spalte auswählen" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Option hinzufügen zu Spalte " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Passwort generieren" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generieren" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Passwort ändern" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Mehr" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1301,28 +1343,28 @@ msgstr "" "sollten. Die neuste Version ist %s, erschienen am %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", aktuellste stabile Version:" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Springe zu Datenbank" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Fertig" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Vorherige" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1330,231 +1372,231 @@ msgid "Next" msgstr "Nächste" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Heute" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Januar" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Februar" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "März" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "April" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mai" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Juni" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Juli" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "August" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "September" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Oktober" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "November" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mrz" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dez" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Sonntag" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Montag" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Dienstag" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Mittwoch" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Donnerstag" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Freitag" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Wo" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Stunde" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minute" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Sekunde" @@ -1791,8 +1833,8 @@ msgstr "Willkommen bei %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt " "haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine " @@ -1941,7 +1983,7 @@ msgstr "freigegeben" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabellen" @@ -2075,7 +2117,7 @@ msgid "Documentation" msgstr "Dokumentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-Befehl" @@ -2104,7 +2146,7 @@ msgid "Create PHP Code" msgstr "PHP-Code erzeugen" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Aktualisieren" @@ -4848,8 +4890,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter " "für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen " @@ -4871,7 +4913,7 @@ msgstr "Komprimierung:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "keine" @@ -5112,7 +5154,7 @@ msgid "The row has been deleted" msgstr "Die Zeile wurde gelöscht." #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Beenden" @@ -5202,7 +5244,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Puffer-Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB-Status" @@ -5601,8 +5643,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase " "XT-Website%s verfügbar." @@ -5703,7 +5745,7 @@ msgstr "MIME-Typen anzeigen" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Host" @@ -6438,13 +6480,13 @@ msgid "Slave status" msgstr "Slave-Status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Wert" @@ -6673,12 +6715,12 @@ msgid "Synchronize" msgstr "Gleiche ab" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binäres Protokoll" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variablen" @@ -6941,8 +6983,8 @@ msgid "" "author what %s does." msgstr "" "Für diese Umwandlung ist keine Beschreibung verfügbar.
Für weitere " -"Informationen wenden Sie sich bitte an den Autoren der Funktion "%" -"s"." +"Informationen wenden Sie sich bitte an den Autoren der Funktion "" +"%s"." #: libraries/tbl_properties.inc.php:625 tbl_structure.php:636 #, php-format @@ -6966,7 +7008,7 @@ msgstr "PARTITION Definition" msgid "+ Add a new value" msgstr "+ Neuen Wert hinzufügen" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Dauer" @@ -7172,7 +7214,7 @@ msgid "Protocol version" msgstr "Protokoll-Version" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Benutzer" @@ -7625,17 +7667,17 @@ msgstr "Datei existiert nicht" msgid "Select binary log to view" msgstr "Binäres Protokoll zur Anzeige auswählen" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Dateien" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Zeige die SQL-Abfragen verkürzt an" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Zeige die SQL-Abfragen vollständig an" @@ -8037,8 +8079,8 @@ msgstr "Die gleichnamigen Datenbanken löschen." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-" "Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, " @@ -8171,7 +8213,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Dieser Server ist als Master in einem Replikations-Prozess konfiguriert." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Zeige den Master-Status" @@ -8322,12 +8364,12 @@ msgstr "" "Dieser Server ist nicht als Slave in einem Replikationsprozess konfiguriert. " "Möchten Sie ihn konfigurieren ?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Der Prozess %s wurde erfolgreich abgebrochen." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8335,166 +8377,162 @@ msgstr "" "phpMyAdmin konnte den Prozess %s nicht abbrechen. Er wurde wahrscheinlich " "bereits geschlossen." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Handler" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Abfragen-Cache" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Prozesse" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Temporäre Daten" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Verzögertes Einfügen (delayed inserts)" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Schlüssel-Cache" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Tabellenverknüpfungen (joins)" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Sortierung" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Transaktions-Koordinator" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Alle Tabellen aktualisieren und schließen." -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Zeige alle offenen Tabellen" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Zeige alle Slave-Hosts" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Zeige den Slave-Status" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Den Abfragen-Cache leeren. (FLUSH)" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Laufzeit-Informationen" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Server Auswählen" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Statistiken abfragen" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Die Slave Statustabelle sehen" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Aktualisieren" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Sekunde" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Sekunde" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Minute" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Passwort nicht verändert" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Zeige alle offenen Tabellen" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "Weiterführende Links" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "pro Stunde" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "pro Minute" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "pro Sekunde" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Abfrageart" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Dieser MySQL-Server läuft bereits %s. Er wurde am %s gestartet." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8502,17 +8540,17 @@ msgstr "" "Dieser MySQL Server arbeitet als Master und Slave im " "Replikations-Prozess." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Dieser MySQL Server arbeitet als Master im Replikations-Prozess." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Dieser MySQL Server arbeitet als Slave im Replikations-Prozess." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8520,15 +8558,15 @@ msgstr "" "Für weitere Informationen über den Replikations-Status auf dem Server siehe " "Abschnitt Replikation." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Replikations-Status" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Netzwerkverkehr" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8537,45 +8575,41 @@ msgstr "" "\" (wieder bei 0 beginnen), deshalb können diese Werte, wie sie vom MySQL " "Server ausgegeben werden, falsch sein." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Empfangen" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Gesendet" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Verbindungen" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "max. gleichzeitige Verbindungen" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Fehlversuche" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Abgebrochen" -#: server_status.php:784 -msgid "Processes" -msgstr "Prozesse" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." msgstr "SSL für die MySQL Serververbindung aktivieren." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8585,17 +8619,17 @@ msgstr "" "des Binarylog-Caches (binlog_cache_size) überschritten und eine temporäre " "Datei verwendet haben um die Statements der Transaktion zu speichern." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Anzahl der Transaktionen, die den temporären Binarylog-Cache verwendet haben." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8607,11 +8641,11 @@ msgstr "" "Sie eventuell die Variable tmp_table_size herauf setzen, damit temporäre " "Tabellen im Speicher erzeugt werden statt auf der Festplatte." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8619,7 +8653,7 @@ msgstr "" "Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei " "der Ausführung von Statements." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8627,7 +8661,7 @@ msgstr "" "Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden, und bei denen " "ein Fehler auftrat (z. B. duplicate key)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8635,23 +8669,23 @@ msgstr "" "Anzahl der verzögerten Insert-Handler-Prozesse in Benutzung. Jede einzelne " "Tabelle mit verzögerten Inserts bekommt einen eigenen Prozess." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Anzahl der ausgeführten FLUSH-Befehle." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Anzahl der Zeilen, die aus Tabellen gelöscht wurden." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8661,7 +8695,7 @@ msgstr "" "kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle " "kennt. Dieser Vorgang wird "discovery" genannt." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8672,7 +8706,7 @@ msgstr "" "Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert " "ist)." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8681,7 +8715,7 @@ msgstr "" "dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und " "Tabellen korrekt indiziert sind." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8692,7 +8726,7 @@ msgstr "" "Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, " "wenn Sie einen Index-Scan durchführen." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8701,7 +8735,7 @@ msgstr "" "Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung " "von ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8714,7 +8748,7 @@ msgstr "" "haben Sie wahrscheinlich viele Anfragen, die MySQL zwingen, ganze Tabellen " "zu scannen, oder Sie haben Joins, die Schlüssel nicht richtig benutzen." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8727,36 +8761,36 @@ msgstr "" "sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile " "aus den Indexen ziehen, die Sie haben." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in einer Tabelle zu aktualisieren." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in eine Tabelle einzufügen." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Anzahl der als "dirty" markierten Seiten." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Anzahl der Seiten im Puffer-Pool, die zurückgeschrieben werden müssen." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Anzahl der unbenutzten Seiten." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8766,7 +8800,7 @@ msgstr "" "beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder " "entfernt werden können." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8778,11 +8812,11 @@ msgstr "" "aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Die Größe des Puffer-Pools in Seiten." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8790,7 +8824,7 @@ msgstr "" "Anzahl \"random\" read-aheads durch InnoDB. Dies geschieht wenn eine Abfrage " "einen großen Teil einer Tabelle durchsucht aber in zufälliger Reihenfolge." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8798,11 +8832,11 @@ msgstr "" "Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB " "eine Tabelle komplett sequentiell durchsucht." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8810,7 +8844,7 @@ msgstr "" "Anzahl an Lesevorgängen die InnoDB nicht aus dem Zwischenspeicher bedienen " "konnte und deshalb einen Einzel-Seiten-Lesevorgang starten musste." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8825,55 +8859,55 @@ msgstr "" "geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist " "sollte dieser Wert klein sein." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Bisher ausgeführte fsync()-Operationen." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Momentan anstehende fsync()-Operationen." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Momentan anstehende Lesezugriffe." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Momentan anstehende Schreizugriffe." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Wieviel Daten bisher gelesen wurden, in Byte." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Wie oft Daten gelesen wurden." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Wie oft Daten geschrieben wurden." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Anzahl der ausgeführten \"doublewrite\" Schreibzugriffe und die Anzahl der " "Seiten die dafür geschrieben wurden." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Anzahl der ausgeführten \"doublewrite\" Schreibzugriffe und die Anzahl der " "Seiten die dafür geschrieben wurden." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8881,35 +8915,35 @@ msgstr "" "Wie oft gewartet werden musste weil der Protokoll-Zwischenspeicher zu klein " "war und deshalb gewartet wurde das er geleert wird." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Getätigte fsyncs Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Anstehende \"fsyncs\" für die Protokoll-Datei." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Anzahl erstellter Seiten." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8918,55 +8952,55 @@ msgstr "" "werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte " "umzurechnen." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Anzahl gelesener Seiten." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Anzahl geschriebener Seiten." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Momentan anstehende Zeilen-Sperren." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Durchschnittliche Wartezeite um eine Zeilen-Sperre zu bekommen, in " "Millisekunden." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Summe aller Wartezeiten um Zeilen-Sperren zu bekommen, in Millisekunden." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Längste Wartezeite um eine Zeilen-Sperre zu bekommen, in Millisekunden." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Wie oft auf ein Zeilen-Sperre gewartet werden musste." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Anzahl gelöschter Zeilen aller InnoDB Tabellen." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Anzahl der eingefügten Zeilen in alle InnoDB Tabellen." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Anzahl der Zeilen, die aus InnoDB-Tabellen gelesen wurden." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Anzahl der Zeilen, die in InnoDB-Tabellen aktualisiert wurden." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8975,7 +9009,7 @@ msgstr "" "auf die Platte zurück geschrieben (flush) wurden; auch bekannt als " "Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8983,7 +9017,7 @@ msgstr "" "Die Anzahl der unbenutzten Schlüssel-Blöcke im Schlüssel-Cache. Dieser Wert " "kann dazu dienen die Auslastung des Schlüssel-Cache zu bestimmen." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8991,11 +9025,11 @@ msgid "" msgstr "" "Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-Cache." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Cache zu lesen." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9006,17 +9040,17 @@ msgstr "" "Die Cache-Zugriffsrate kann mit key_reads / key_read_requests berechnet " "werden." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block in den Cache zu schreiben." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" "Die Anzahl physikalischer Schreibvorgänge eines Schlüssel-Blocks auf Platte." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9026,19 +9060,19 @@ msgstr "" "berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu " "vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Anzahl der Zeilen, die in INSERT-DELAYED-Warteschleifen darauf warten, " "geschrieben zu werden." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9046,39 +9080,39 @@ msgstr "" "Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist " "Ihre table_cache-Variable wahrscheinlich zu niedrig." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Anzahl der geöffneten Dateien." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Anzahl der geöffneten Streams (hauptsächlich zum Protokollieren benutzt)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Anzahl der geöffneten Tabellen." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Freier Speicher im Abfragen-Cache." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Abfrage-Cache-Zugriffsrate." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Die Anzahl der Abfragen die dem Cache hinzugefügt wurden." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9091,7 +9125,7 @@ msgstr "" "recently used), d. h. es wird stets die Abfrage gelöscht, die am " "längsten unbenutzt im Cache lag." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9099,19 +9133,19 @@ msgstr "" "Die Anzahl der nicht im Cache eingetragenen Abfragen (nicht möglich, oder " "aufgrund der query_cache_type Einstellung)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Die Anzahl der Abfragen im Cache." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Cache." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Der Status der ausfallsicheren Replikation." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9119,13 +9153,13 @@ msgstr "" "Anzahl der Joins ohne Schlüssel. Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Anzahl der Joins, bei denen eine Bereichssuche auf die Referenztabelle statt " "fand." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9134,7 +9168,7 @@ msgstr "" "Schlüsselbenutzung geprüft wurde. Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden." -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9142,16 +9176,16 @@ msgstr "" "Anzahl der Joins, bei denen Bereiche auf die erste Tabelle benutzt wurden. " "(Es ist normalerweise unkritisch, wenn dieser Wert hoch ist.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Anzahl der Joins, bei denen die erste Tabelle gescannt wurde." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Anzahl der temporären Tabellen, die momentan vom Slave-Prozess geöffnet sind." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9159,13 +9193,13 @@ msgstr "" "Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread " "wiederversuchten Transaktionen." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dieser Wert steht auf ON wenn dieser Server ein Slave ist und mit dem Master " "verbunden ist." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9173,12 +9207,12 @@ msgstr "" "Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " "verbinden." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Anzahl der Anfragen, die länger als long_query_time benötigten." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9188,25 +9222,25 @@ msgstr "" "wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, " "sort_buffer herauf zu setzen." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Anzahl der sortierten Zeilen." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" "Anzahl der Sortiervorgänge, die durchgeführt wurden, indem die Tabelle " "gescannt wurde." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Wie oft eine Tabellensperre sofort erlangt wurde." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9218,7 +9252,7 @@ msgstr "" "sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle" "(n) zerteilen oder Replikation benutzen." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9228,11 +9262,11 @@ msgstr "" "Threads_created / Connections berechnet werden. Wenn dieser Wert rot ist, " "sollte der thread_cache_size erhöht werden." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Anzahl der momentan offenen Verbindungen." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9244,7 +9278,7 @@ msgstr "" "Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare " "Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Anzahl der Prozesse, die nicht schlafen." @@ -9367,7 +9401,7 @@ msgstr "Servervariablen und -einstellungen" msgid "Session value" msgstr "Wert für diese Sitzung" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Globaler Wert" @@ -9657,8 +9691,8 @@ msgstr "" "Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen " "Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im " "Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder " -"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %" -"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." +"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den " +"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/el.po b/po/el.po index 212d745a20..0f6a0ca86b 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-16 12:17+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" @@ -47,7 +47,7 @@ msgstr "Αναζήτηση" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Όνομα κλειδιού" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Περιγραφή" @@ -166,7 +166,7 @@ msgstr "Τύπος" msgid "Null" msgstr "Κενό" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Σύνδεση με" msgid "Comments" msgstr "Σχόλια" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Σχόλια" msgid "No" msgstr "Όχι" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s" msgid "Rename database to" msgstr "Μετονομασία βάσης δεδομένων σε" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Εντολή" @@ -373,7 +373,7 @@ msgstr "Εγγραφές" msgid "Size" msgstr "Μέγεθος" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "σε χρήση" @@ -399,7 +399,7 @@ msgstr "Τελευταία ενημέρωση" msgid "Last check" msgstr "Tελευταίος έλεγχος" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -582,64 +582,64 @@ msgstr "Μέσα στους πίνακες:" msgid "Inside column:" msgstr "Εσωτερικό πεδίο:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Δεν βρέθηκαν Πίνακες στη βάση δεδομένων." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Ο Πίνακας %s άδειασε" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Η προβολή %s διαγράφτηκε" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Ο Πίνακας %s διεγράφη" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Η παρακολούθηση είναι ενεργοποιημένη." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %" -"sτεκμηρίωση%s." +"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην " +"%sτεκμηρίωση%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Προβολή" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Αναπαραγωγή" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Σύνολο" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -647,23 +647,23 @@ msgstr "" msgid "With selected:" msgstr "Με τους επιλεγμένους:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Επιλογή όλων" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Απεπιλογή όλων" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -671,54 +671,54 @@ msgstr "Επιλογή πινάκων με περίσσεια" msgid "Export" msgstr "Εξαγωγή" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Άδειασμα" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Διαγραφή" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Έλεγχος πίνακα" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Βελτιστοποίηση Πίνακα" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Επιδιόρθωση πίνακα" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Ανάλυση Πίνακα" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Προσθήκη προθέματος στον πίνακα" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Αντικατάσταση προθέματος πίνακα" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Αντιγραφή πίνακα με πρόθεμα" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Περιληπτικός πίνακας δεδομένων" @@ -733,7 +733,7 @@ msgstr "Παρακολουθούμενοι πίνακες" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -751,7 +751,7 @@ msgstr "Δημιουργήθηκε" msgid "Updated" msgstr "Ενημερώθηκε" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Κατάσταση" @@ -851,11 +851,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %" -"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." +"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " +"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1013,7 +1013,6 @@ msgstr "Αυτό δεν είναι αριθμός!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#| msgid "Log file count" msgid "Total count" msgstr "Συνολικό πλήθος" @@ -1035,7 +1034,6 @@ msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" #: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#| msgid "Any user" msgid "Add user" msgstr "Προσθήκη χρήστη" @@ -1052,146 +1050,7 @@ msgstr "Διαγραφή των επιλεγμένων χρηστών" msgid "Close" msgstr "Κλείσιμο" -#: js/messages.php:64 server_status.php:397 -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Διάγραμμα τρέχουσας κυκλοφορίας" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "Διάγραμμα τρέχουσας σύνδεσης/διαδικασίας" - -#: js/messages.php:66 server_status.php:429 -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Διάγραμμα τρέχοντος ερωτήματος" - -#: js/messages.php:68 -msgid "Static data" -msgstr "Στατικά δεδομένα" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Σύνολο" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "Άλλα" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Άκυρο" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Φόρτωση" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Προώθηση Αιτήματος" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Σφάλμα στην Προώθηση του Αιτημάτος" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Διαγραφή Στήλης" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Προσθήκη Πρωτεύοντος Κλειδιού" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "Εντάξει" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Μετονομασία βάσεων δεδομένων" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Επαναφόρτωση βάσεων δεδομένων" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Αντιγραφή βάσης δεδομένων" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Αλλαγή Συνόλου χαρακτήρων" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Ο πίνακας πρέπει να έχει τουλάχιστον μια στήλη" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Δημιουργία Πίνακα" - -#: js/messages.php:101 -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Εισαγωγή Πίνακα" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Αναζήτηση" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Απόκρυψη αποτελεσμάτων αναζήτησης" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Προβολή αποτελεσμάτων αναζήτησης" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Αναζήτηση" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Διαγραφή" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "Σημείωση: Αν το αρχείο περιέχει πολλούς πίνακες, θα ενωθουν σε έναν" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Απόκρυψη παραθύρου ερωτήματος SQL" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Προβολή παραθύρου ερωτήματος SQL" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Εσωτερική Επεξεργασία" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1200,7 +1059,185 @@ msgstr "Εσωτερική Επεξεργασία" msgid "Edit" msgstr "Επεξεργασία" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "Διάγραμμα τρέχουσας κυκλοφορίας" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "Διάγραμμα τρέχουσας σύνδεσης/διαδικασίας" + +#: js/messages.php:68 server_status.php:443 +msgid "Live query chart" +msgstr "Διάγραμμα τρέχοντος ερωτήματος" + +#: js/messages.php:70 +msgid "Static data" +msgstr "Στατικά δεδομένα" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Σύνολο" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "Άλλα" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server traffic" +msgid "Server traffic (in kB)" +msgstr "Κυκλοφορία Διακομιστή" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Διεργασίες" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Συνδέσεις" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "Ερωτήματα SQL" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Στατιστικά ερωτήματος" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Άκυρο" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Φόρτωση" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Προώθηση Αιτήματος" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Σφάλμα στην Προώθηση του Αιτημάτος" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Διαγραφή Στήλης" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Προσθήκη Πρωτεύοντος Κλειδιού" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "Εντάξει" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Μετονομασία βάσεων δεδομένων" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Επαναφόρτωση βάσεων δεδομένων" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Αντιγραφή βάσης δεδομένων" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Αλλαγή Συνόλου χαρακτήρων" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Ο πίνακας πρέπει να έχει τουλάχιστον μια στήλη" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Δημιουργία Πίνακα" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "Εισαγωγή Πίνακα" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Αναζήτηση" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Απόκρυψη αποτελεσμάτων αναζήτησης" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Προβολή αποτελεσμάτων αναζήτησης" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Αναζήτηση" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Διαγραφή" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "Σημείωση: Αν το αρχείο περιέχει πολλούς πίνακες, θα ενωθουν σε έναν" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Απόκρυψη παραθύρου ερωτήματος SQL" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Προβολή παραθύρου ερωτήματος SQL" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Εσωτερική Επεξεργασία" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1208,41 +1245,41 @@ msgstr "Επεξεργασία" msgid "Save" msgstr "Αποθήκευση" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Απόκρυψη" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Απόκρυψη κριτηρίων αναζήτησης" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Προβολή κριτηρίων αναζήτησης" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Επιλέξτε αναφερθέν κλειδί" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Επιλέξτε Μη Διακριτό Κλειδί" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Επιλέξτε στήλη για εμφάνιση" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1250,27 +1287,27 @@ msgstr "" "Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. " "Θέλετε να συνεχίσετε;" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Προσθήκη επιλογής για τη στήλη " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Δημιουργία Κωδικού Πρόσβασης" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Παραγωγή" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Αλλαγή Κωδικού Πρόσβασης" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Περισσότερα" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1280,26 +1317,26 @@ msgstr "" "εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ". τελευταία έκδοση:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "ενημερωμένο" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Ολοκληρώθηκε" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Προηγούμενο" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1307,231 +1344,231 @@ msgid "Next" msgstr "Επόμενο" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Σήμερα" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Ιανουαρίου" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Φεβρουαρίου" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Μαρτίου" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Απριλίου" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Μαΐου" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Ιουνίου" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Ιουλίου" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Αυγούστου" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Σεπτεμβρίου" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Οκτωβρίου" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Νοεμβρίου" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Δεκεμβρίου" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Νοε" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Δεκ" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Κυριακή" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Δευτέρα" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Τρίτη" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Τετάρτη" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Πέμπτη" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Παρασκευή" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Σάββατο" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Σάβ" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Κυ" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Δε" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Τρ" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Τε" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Πε" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Πα" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Σα" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Wiki" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Ώρα" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Λεπτό" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Δευτερόλεπτο" @@ -1763,8 +1800,8 @@ msgstr "Καλωσήρθατε στο %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε " "να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα." @@ -1846,7 +1883,6 @@ msgid "Wrong username/password. Access denied." msgstr "Λανθασμένο όνομα χρήστη/κωδικός πρόσβασης. Άρνηση πρόσβασης." #: libraries/auth/signon.auth.lib.php:87 -#| msgid "Config authentication" msgid "Can not find signon authentication script:" msgstr "Αδύνατη η εύρεση του κώδικα πιστοποίησης σύνδεσης:" @@ -1911,7 +1947,7 @@ msgstr "κοινόχρηστο" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Πίνακες" @@ -2045,7 +2081,7 @@ msgid "Documentation" msgstr "Τεκμηρίωση" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "Εντολή SQL" @@ -2074,7 +2110,7 @@ msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Ανανέωση" @@ -2605,7 +2641,6 @@ msgstr "" "βελτιστοποίηση ή επισκευή των επιλεγμένων πινάκων μιας βάσης δεδομένων." #: libraries/config/messages.inc.php:61 -#| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Απενεργοποίηση συντήρησης πολλαπλών πινάκων" @@ -4827,8 +4862,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι " "μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν " @@ -4850,7 +4885,7 @@ msgstr "Συμπίεση" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Καμία" @@ -4987,7 +5022,6 @@ msgid "Language" msgstr "Γλώσσα" #: libraries/display_tbl.lib.php:397 -#| msgid "Textarea columns" msgid "Restore column order" msgstr "Επαναφορά κατανομής στηλών" @@ -4996,7 +5030,6 @@ msgid "Drag to reorder" msgstr "Σύρτε για ανακατανομή" #: libraries/display_tbl.lib.php:412 -#| msgid "Click to select" msgid "Click to sort" msgstr "Πατήστε για ταξινόμηση" @@ -5090,7 +5123,7 @@ msgid "The row has been deleted" msgstr "Η Εγγραφή έχει διαγραφεί" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Τερματισμός" @@ -5181,7 +5214,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Κατάσταση InnoDB" @@ -5419,8 +5452,8 @@ msgid "" "Documentation and further information about PBMS can be found on %sThe " "PrimeBase Media Streaming home page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην %" -"sΙστοσελίδα του PrimeBase Media Streaming%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην " +"%sΙστοσελίδα του PrimeBase Media Streaming%s." #: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127 msgid "Related Links" @@ -5589,11 +5622,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %" -"sΙστοσελίδα του PrimeBase XT%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην " +"%sΙστοσελίδα του PrimeBase XT%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -5691,7 +5724,7 @@ msgstr "Διαθέσιμοι τύποι MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Φιλοξενητής" @@ -6414,13 +6447,13 @@ msgid "Slave status" msgstr "Κατάσταση δευτερεύοντος" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Μεταβλητή" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Τιμή" @@ -6649,12 +6682,12 @@ msgid "Synchronize" msgstr "Συγχρονισμός" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Μεταβλητές" @@ -6937,7 +6970,7 @@ msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)" msgid "+ Add a new value" msgstr "+ Προσθήκη νέας τιμής" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Χρόνος" @@ -7140,7 +7173,7 @@ msgid "Protocol version" msgstr "Έκδοση πρωτοκόλλου" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Χρήστης" @@ -7263,8 +7296,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά " -"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %" -"sεδώ%s." +"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε " +"%sεδώ%s." #: main.php:314 msgid "" @@ -7595,17 +7628,17 @@ msgstr "Το αρχείο δεν υπάρχει" msgid "Select binary log to view" msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για προβολή" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Αρχεία" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Πλήρης εμφάνιση ερωτημάτων" @@ -8007,8 +8040,8 @@ msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδ msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από " "τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί " @@ -8108,7 +8141,6 @@ msgid "wildcard" msgstr "μπαλαντέρ" #: server_privileges.php:2295 -#| msgid "View %s has been dropped" msgid "User has been added." msgstr "Ο χρήστης προστέθηκε." @@ -8143,7 +8175,7 @@ msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική " "διαδικασία." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Προβολή κατάστασης πρωτεύοντος" @@ -8295,12 +8327,12 @@ msgstr "" "Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Η λειτουργία %s διεκόπη." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8308,157 +8340,144 @@ msgstr "" "Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη " "σταματήσει." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Χειριστής" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Λανθάνουσα μνήμη ερωτήματος" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Διεργασίες" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Προσωρινά δεδομένα" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Καθυστερημένες εισαγωγές" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Λανθάνουσα μνήμη κλειδιού" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Ενώσεις" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Ταξινόμηση" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Συντονιστής κινήσεων" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Εμφάνιση ανοιχτών πινάκων" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Εμφάνιση δευτερευόντων διακομιστών" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Εμφάνιση κατάστασης δευτερεύοντος" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Πληροφορίες εκτέλεσης" -#: server_status.php:371 -#| msgid "Server Choice" +#: server_status.php:385 msgid "Server traffic" msgstr "Κυκλοφορία Διακομιστή" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Στατιστικά ερωτήματος" - -#: server_status.php:373 -#| msgid "See slave status table" +#: server_status.php:387 msgid "All status variables" msgstr "Όλες οι μεταβλητές κατάστασης" -#: server_status.php:383 server_status.php:416 -#| msgid "Refresh" +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "Ρυθμός ανανέωσης" -#: server_status.php:384 server_status.php:417 -#| msgid "Second" +#: server_status.php:398 server_status.php:431 msgid "second" msgstr "δευτερόλεπτο" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 -#| msgid "Second" +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 msgid "seconds" msgstr "δευτερόλεπτα" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 -#| msgid "Minute" +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 msgid "minutes" msgstr "λεπτά" -#: server_status.php:446 -#| msgid "Do not change the password" +#: server_status.php:460 msgid "Containing the word:" msgstr "Να περιλαμβάνει τη λέξη:" -#: server_status.php:451 -#| msgid "Show open tables" +#: server_status.php:465 msgid "Show only alert values" msgstr "Εμφάνιση μόνο τιμών ειδοποίησης" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "Φιλτράρισμα ανά κατηγορία..." -#: server_status.php:468 -#| msgid "Related Links" +#: server_status.php:482 msgid "Related links:" msgstr "Σχετικοί σύνδεσμοι:" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "ανά ώρα" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "ανά λεπτό" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "ανά δευτερόλεπτο" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Τύπος ερωτήματος" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "#" -#: server_status.php:615 +#: server_status.php:623 #, php-format msgid "Network traffic since startup: %s" msgstr "Κυκλοφορία δικτύου από την εκκίνηση: %s" -#: server_status.php:623 +#: server_status.php:631 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Αυτός ο διακομιστής MySQL λειτουργεί για %s. Ξεκίνησε στις %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8466,19 +8485,19 @@ msgstr "" "Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε " "μια αναπαραγωγική διαδικασία." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική διαδικασία." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια " "αναπαραγωγική διαδικασία." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8486,15 +8505,15 @@ msgstr "" "Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, " "επισκεφτείτε τον τομέα αναπαραγωγής." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Κατάσταση αναπαραγωγής" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Κίνηση" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8503,45 +8522,40 @@ msgstr "" "έτσι αυτές οι στατιστικές όπως αναφέρονται από τον διακομιστή μπορεί να " "είναι εσφαλμένες." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Ελήφθησαν" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Εστάλησαν" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Συνδέσεις" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Αποτυχημένες προσπάθειες" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Ακυρωμένες συνδέσεις" -#: server_status.php:784 -msgid "Processes" -msgstr "Διεργασίες" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "Κωδικός" -#: server_status.php:846 -#| msgid "Whether to enable SSL for connection to MySQL server." +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8551,20 +8565,20 @@ msgstr "" "μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν " "ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα " "μνήμη καταγραφής." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή " "MySQL." -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8576,11 +8590,11 @@ msgstr "" "είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι " "προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8588,7 +8602,7 @@ msgstr "" "Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από " "τον διακομιστή κατά την εκτέλεσε δηλώσεων." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8596,7 +8610,7 @@ msgstr "" "Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις " "οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8605,25 +8619,25 @@ msgstr "" "διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT " "DELAYED χρησιμοποιεί της δική του διεργασία." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ο αριθμός των ΚΑΘΥΣΤΕΡΗΜΕΝΑ ΕΙΣΕΡΧΟΜΕΝΩΝ (INSERT DELAYED) γραμμών που " "εγγράφτηκαν." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων ΕΚΚΑΘΑΡΙΣΗΣ (FLUSH)." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΠΑΡΑΠΟΜΠΗΣ (COMMIT)." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8634,7 +8648,7 @@ msgstr "" "ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που " "βρέθηκαν." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8645,7 +8659,7 @@ msgstr "" "ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει " "ευρετήριο." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8654,7 +8668,7 @@ msgstr "" "είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές " "σας έχουν κάνει σωστά ευρετήρια." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8664,7 +8678,7 @@ msgstr "" "κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα " "περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8673,7 +8687,7 @@ msgstr "" "η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής " "ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8686,7 +8700,7 @@ msgstr "" "σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα " "κλειδιά." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8698,37 +8712,37 @@ msgstr "" "ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν " "έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΕΠΙΣΤΡΟΦΗΣ (ROLLBACK)." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Ο αριθμός των μη καθαρώ σελίδων." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για " "εκκαθάριση." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Ο αριθμός των ελεύθερων σελίδων." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8738,7 +8752,7 @@ msgstr "" "σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να " "εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8750,11 +8764,11 @@ msgstr "" "τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8763,7 +8777,7 @@ msgstr "" "συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά " "με τυχαία σειρά." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8771,11 +8785,11 @@ msgstr "" "Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " "συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8783,7 +8797,7 @@ msgstr "" "Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει " "από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8798,55 +8812,55 @@ msgstr "" "αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή " "πρέπει να είναι μικρή." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8854,36 +8868,36 @@ msgstr "" "Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer " "καταγραφής και και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" "Ο αριθμός των εγγραφών fsyncs() που ολοκληρώθηκαν στο αρχείο καταγραφής." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Ο αριθμός των δημιουργηθέντων σελίδων." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8892,56 +8906,56 @@ msgstr "" "υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη " "μετατροπή σε bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Ο αριθμός των αναγνωσμένων σελίδων." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Ο αριθμός των εγεγγραμμένων σελίδων." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα.." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8950,7 +8964,7 @@ msgstr "" "αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως " "Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8959,7 +8973,7 @@ msgstr "" "Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση " "λανθάνουσα μνήμη κλειδιού χρησιμοποιείται." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8969,12 +8983,12 @@ msgstr "" "τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι " "σε χρήση με μια φορά." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" "Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8985,16 +8999,16 @@ msgstr "" "μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως " "Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" "Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9005,7 +9019,7 @@ msgstr "" "διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 " "σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -9013,13 +9027,13 @@ msgstr "" "Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση " "του διακομιστή." -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές ΚΑΘΥΣΤΕΡΗΜΕΝΩΝ " "ΕΙΣΑΓΩΓΩΝ (INSERT DELAYED)." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9027,21 +9041,21 @@ msgstr "" "Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι " "μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για " "καταγραφή)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -9051,19 +9065,19 @@ msgstr "" "ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας " "την εντολή FLUSH QUERY CACHE." -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9077,7 +9091,7 @@ msgstr "" "χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να " "απομακρύνει από τη λανθάνουσα μνήμη." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9085,19 +9099,19 @@ msgstr "" "Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν " "απομνημονεύονται λόγω της ρύθμισης query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9105,13 +9119,13 @@ msgstr "" "Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, " "πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα " "παραπομπής." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9120,7 +9134,7 @@ msgstr "" "κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα " "ευρετήρια των πινάκων σας.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9128,17 +9142,17 @@ msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά " "δεν είναι κρίσιμος αν δεν είναι μεγάλος.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα " "συνεργασία SQL." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9146,13 +9160,13 @@ msgstr "" "Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας " "αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε " "πρωτεύωντα." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9160,14 +9174,14 @@ msgstr "" "Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time " "δευτερόλεπτα να δημιουργηθούν." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time " "δευτερόλεπτα." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9177,23 +9191,23 @@ msgstr "" "ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της " "μεταβλητής συστήματος sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Ο αριθμός των ταξινομημένων γραμμών." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα.." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9205,7 +9219,7 @@ msgstr "" "απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον " "πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9215,11 +9229,11 @@ msgstr "" "λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν " "η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9231,7 +9245,7 @@ msgstr "" "thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης " "αν έχετε μια καλή εφαρμογή διεργασίας.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη." @@ -9359,7 +9373,7 @@ msgstr "Ρυθμίσεις και μεταβλητές του διακομιστ msgid "Session value" msgstr "Τιμή Συνεδρίας" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Προεπιλεγμένη τιμή" @@ -9599,8 +9613,8 @@ msgid "" "(currently %d)." msgstr "" "Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα " -"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%" -"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." +"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime" +"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." #: setup/lib/index.lib.php:262 #, php-format @@ -9808,7 +9822,6 @@ msgid "Line" msgstr "Γραμμή" #: tbl_chart.php:88 -#| msgid "Inline" msgid "Spline" msgstr "Καμπύλη γραμμή" @@ -9821,7 +9834,6 @@ msgid "Stacked" msgstr "Σταθεροποιημένο" #: tbl_chart.php:94 -#| msgid "Report title:" msgid "Chart title" msgstr "Τίτλος διαγράμματος" @@ -9830,32 +9842,26 @@ msgid "X-Axis:" msgstr "Άξονας Χ:" #: tbl_chart.php:113 -#| msgid "SQL queries" msgid "Series:" msgstr "Σειρές:" #: tbl_chart.php:115 -#| msgid "Textarea columns" msgid "The remaining columns" msgstr "Οι απομένουσες στήλες" #: tbl_chart.php:128 -#| msgid "X Axis label" msgid "X-Axis label:" msgstr "Ετικέτα άξονα Χ:" #: tbl_chart.php:128 -#| msgid "Value" msgid "X Values" msgstr "Τιμές Χ" #: tbl_chart.php:129 -#| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Ετικέτα άξονα Υ:" #: tbl_chart.php:129 -#| msgid "Value" msgid "Y Values" msgstr "Τιμές Υ" diff --git a/po/en_GB.po b/po/en_GB.po index ce8c8c8cd5..190c7bd3c6 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-15 16:58+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" @@ -47,7 +47,7 @@ msgstr "Search" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Description" @@ -166,7 +166,7 @@ msgstr "Type" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Links to" msgid "Comments" msgstr "Comments" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Comments" msgid "No" msgstr "No" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Database %s has been copied to %s" msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Command" @@ -373,7 +373,7 @@ msgstr "Rows" msgid "Size" msgstr "Size" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "in use" @@ -399,7 +399,7 @@ msgstr "Last update" msgid "Last check" msgstr "Last check" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -582,63 +582,63 @@ msgstr "Inside table(s):" msgid "Inside column:" msgstr "Inside column:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "No tables found in database." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Tracking is active." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Tracking is not active." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "View" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replication" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Sum" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -646,23 +646,23 @@ msgstr "%s is the default storage engine on this MySQL server." msgid "With selected:" msgstr "With selected:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Check All" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Uncheck All" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -670,54 +670,54 @@ msgstr "Check tables having overhead" msgid "Export" msgstr "Export" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Print view" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Empty" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Drop" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Check table" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimise table" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Repair table" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analyse table" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Add prefix to table" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Replace table prefix" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Copy table with prefix" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -732,7 +732,7 @@ msgstr "Tracked tables" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -750,7 +750,7 @@ msgstr "Created" msgid "Updated" msgstr "Updated" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -849,11 +849,11 @@ msgstr "Dump has been saved to file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1042,144 +1042,7 @@ msgstr "Removing Selected Users" msgid "Close" msgstr "Close" -#: js/messages.php:64 server_status.php:397 -msgid "Live traffic chart" -msgstr "Live traffic chart" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "Live conn./process chart" - -#: js/messages.php:66 server_status.php:429 -msgid "Live query chart" -msgstr "Live query chart" - -#: js/messages.php:68 -msgid "Static data" -msgstr "Static data" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Total" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "Other" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Cancel" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Loading" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Processing Request" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Error in Processing Request" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Dropping Column" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Adding Primary Key" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Renaming Databases" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Reload Database" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Copying Database" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Changing Charset" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Table must have at least one column" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Create Table" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "Insert Table" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Searching" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Hide search results" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Show search results" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Browsing" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Deleting" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" -"Note: If the file contains multiple tables, they will be combined into one" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Hide query box" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Show query box" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Inline Edit" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1188,7 +1051,186 @@ msgstr "Inline Edit" msgid "Edit" msgstr "Edit" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "Live traffic chart" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "Live conn./process chart" + +#: js/messages.php:68 server_status.php:443 +msgid "Live query chart" +msgstr "Live query chart" + +#: js/messages.php:70 +msgid "Static data" +msgstr "Static data" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "Other" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server traffic" +msgid "Server traffic (in kB)" +msgstr "Server traffic" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Processes" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Connections" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL queries" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Query statistics" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Cancel" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Loading" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Processing Request" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Error in Processing Request" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Dropping Column" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Adding Primary Key" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Renaming Databases" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Reload Database" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Copying Database" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Changing Charset" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Table must have at least one column" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Create Table" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "Insert Table" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Searching" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Hide search results" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Show search results" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Browsing" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Deleting" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" +"Note: If the file contains multiple tables, they will be combined into one" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Hide query box" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Show query box" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Inline Edit" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1196,41 +1238,41 @@ msgstr "Edit" msgid "Save" msgstr "Save" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Hide" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Hide search criteria" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Show search criteria" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Choose column to display" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1238,27 +1280,27 @@ msgstr "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Add an option for column " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Generate password" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generate" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Change Password" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "More" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1268,26 +1310,26 @@ msgstr "" "upgrading. The newest version is %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", latest stable version:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "up to date" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Done" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Prev" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1295,231 +1337,231 @@ msgid "Next" msgstr "Next" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Today" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "January" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "February" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "March" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "April" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "May" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "June" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "July" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "August" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "September" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "October" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "November" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dec" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Sunday" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Monday" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Tuesday" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Wednesday" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Thursday" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Friday" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Tu" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "We" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Th" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Wk" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Hour" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minute" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Second" @@ -1749,11 +1791,11 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -1891,7 +1933,7 @@ msgstr "shared" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tables" @@ -2023,7 +2065,7 @@ msgid "Documentation" msgstr "Documentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL query" @@ -2052,7 +2094,7 @@ msgid "Create PHP Code" msgstr "Create PHP Code" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Refresh" @@ -4745,12 +4787,12 @@ msgstr ", @TABLE@ will become the table name" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -4767,7 +4809,7 @@ msgstr "Compression:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "None" @@ -4900,7 +4942,6 @@ msgid "Language" msgstr "Language" #: libraries/display_tbl.lib.php:397 -#| msgid "Textarea columns" msgid "Restore column order" msgstr "Restore column order" @@ -4909,7 +4950,6 @@ msgid "Drag to reorder" msgstr "Drag to reorder" #: libraries/display_tbl.lib.php:412 -#| msgid "Click to select" msgid "Click to sort" msgstr "Click to sort" @@ -5003,7 +5043,7 @@ msgid "The row has been deleted" msgstr "The row has been deleted" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Kill" @@ -5093,7 +5133,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5490,11 +5530,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -5592,7 +5632,7 @@ msgstr "Display MIME types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Host" @@ -6308,13 +6348,13 @@ msgid "Slave status" msgstr "Slave status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Value" @@ -6543,12 +6583,12 @@ msgid "Synchronize" msgstr "Synchronise" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binary log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variables" @@ -6830,7 +6870,7 @@ msgstr "PARTITION definition" msgid "+ Add a new value" msgstr "+ Add a new value" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Time" @@ -7028,7 +7068,7 @@ msgid "Protocol version" msgstr "Protocol version" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "User" @@ -7473,17 +7513,17 @@ msgstr "File doesn't exist" msgid "Select binary log to view" msgstr "Select binary log to view" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Files" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -7874,13 +7914,13 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -8003,7 +8043,7 @@ msgstr "Master server changed successfully to %s" msgid "This server is configured as master in a replication process." msgstr "This server is configured as master in a replication process." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Show master status" @@ -8151,160 +8191,156 @@ msgstr "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Handler" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Query cache" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Threads" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Temporary data" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Key cache" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Joins" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Sorting" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Show open tables" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Show slave hosts" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Show slave status" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Runtime Information" -#: server_status.php:371 +#: server_status.php:385 msgid "Server traffic" msgstr "Server traffic" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Query statistics" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "All status variables" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "Refresh rate" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 msgid "second" msgstr "second" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 msgid "seconds" msgstr "seconds" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 msgid "minutes" msgstr "minutes" -#: server_status.php:446 +#: server_status.php:460 msgid "Containing the word:" msgstr "Containing the word:" -#: server_status.php:451 +#: server_status.php:465 msgid "Show only alert values" msgstr "Show only alert values" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "Filter by category..." -#: server_status.php:468 +#: server_status.php:482 msgid "Related links:" msgstr "Related links:" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "per hour" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "per minute" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "per second" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Query type" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "#" -#: server_status.php:615 +#: server_status.php:623 #, php-format msgid "Network traffic since startup: %s" msgstr "Network traffic since startup: %s" -#: server_status.php:623 +#: server_status.php:631 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "This MySQL server has been running for %s. It started up on %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8312,16 +8348,16 @@ msgstr "" "This MySQL server works as master and slave in replication process." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "This MySQL server works as master in replication process." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "This MySQL server works as slave in replication process." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8329,15 +8365,15 @@ msgstr "" "For further information about replication status on the server, please visit " "the replication section." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Replication status" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Traffic" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8345,43 +8381,39 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Received" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Sent" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Connections" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Failed attempts" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Aborted" -#: server_status.php:784 -msgid "Processes" -msgstr "Processes" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "The number of failed attempts to connect to the MySQL server." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8391,17 +8423,17 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "The number of connection attempts (successful or not) to the MySQL server." -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8413,79 +8445,79 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:852 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - -#: server_status.php:853 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." - -#: server_status.php:854 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." - -#: server_status.php:855 -msgid "The number of INSERT DELAYED rows written." -msgstr "The number of INSERT DELAYED rows written." - -#: server_status.php:856 -msgid "The number of executed FLUSH statements." -msgstr "The number of executed FLUSH statements." - -#: server_status.php:857 -msgid "The number of internal COMMIT statements." -msgstr "The number of internal COMMIT statements." - -#: server_status.php:858 -msgid "The number of times a row was deleted from a table." -msgstr "The number of times a row was deleted from a table." - -#: server_status.php:859 -msgid "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." -msgstr "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." - #: server_status.php:860 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." #: server_status.php:861 msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." + +#: server_status.php:862 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." + +#: server_status.php:863 +msgid "The number of INSERT DELAYED rows written." +msgstr "The number of INSERT DELAYED rows written." + +#: server_status.php:864 +msgid "The number of executed FLUSH statements." +msgstr "The number of executed FLUSH statements." + +#: server_status.php:865 +msgid "The number of internal COMMIT statements." +msgstr "The number of internal COMMIT statements." + +#: server_status.php:866 +msgid "The number of times a row was deleted from a table." +msgstr "The number of times a row was deleted from a table." + +#: server_status.php:867 +msgid "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." +msgstr "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." + +#: server_status.php:868 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: server_status.php:869 +msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8495,7 +8527,7 @@ msgstr "" "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8503,7 +8535,7 @@ msgstr "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimise ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8515,7 +8547,7 @@ msgstr "" "probably have a lot of queries that require MySQL to scan whole tables or " "you have joins that don't use keys properly." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8527,36 +8559,36 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "The number of free pages." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8566,7 +8598,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8578,11 +8610,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8590,7 +8622,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8598,11 +8630,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8610,7 +8642,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8624,51 +8656,51 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "The number of pages that have been written for doublewrite operations." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8676,35 +8708,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsync() writes done to the log file." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8712,51 +8744,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8764,7 +8796,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8772,7 +8804,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8782,11 +8814,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8796,15 +8828,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8814,7 +8846,7 @@ msgstr "" "optimiser. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -8822,11 +8854,11 @@ msgstr "" "The maximum number of connections that have been in use simultaneously since " "the server started." -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8834,19 +8866,19 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -8856,19 +8888,19 @@ msgstr "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8880,7 +8912,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8888,19 +8920,19 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8908,11 +8940,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8920,7 +8952,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8928,15 +8960,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8944,11 +8976,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8956,13 +8988,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "The number of queries that have taken more than long_query_time seconds." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8972,23 +9004,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9000,7 +9032,7 @@ msgstr "" "should first optimise your queries, and then either split your table or " "tables or use replication." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9010,11 +9042,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9026,7 +9058,7 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." @@ -9149,7 +9181,7 @@ msgstr "Server variables and settings" msgid "Session value" msgstr "Session value" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Global value" diff --git a/po/es.po b/po/es.po index 4d2b8d3a5f..338ec1613c 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-15 23:05+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" @@ -47,7 +47,7 @@ msgstr "Buscar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Nombre de la clave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Descripción" @@ -166,7 +166,7 @@ msgstr "Tipo" msgid "Null" msgstr "Nulo" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Enlaces a" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Comentarios" msgid "No" msgstr "No" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "La base de datos %s ha sido copiada a %s" msgid "Rename database to" msgstr "Renombrar la base de datos a" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Comando" @@ -373,7 +373,7 @@ msgstr "Filas" msgid "Size" msgstr "Tamaño" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "en uso" @@ -401,7 +401,7 @@ msgstr "Última revisión" # singular: tabla # plural: tablas -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -586,64 +586,64 @@ msgstr "En la(s) tabla(s):" msgid "Inside column:" msgstr "Dentro de la columna:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "No se han encontrado tablas en la base de datos." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Se ha vaciado la tabla %s" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Se descartó el modo de visualización %s" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Se ha eliminado la tabla %s" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "El seguimiento está activo." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "El seguimiento no está activo." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta vista tiene al menos este número de filas. Por favor refiérase a la %" -"sdocumentation%s." +"Esta vista tiene al menos este número de filas. Por favor refiérase a la " +"%sdocumentation%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Visualizar" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replicación" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Número de filas" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s es el motor de almacenamiento predeterminado en este servidor MySQL." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -651,23 +651,23 @@ msgstr "" msgid "With selected:" msgstr "Para los elementos que están marcados:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Desmarcar todos" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -675,54 +675,54 @@ msgstr "Marcar las tablas con residuo a depurar" msgid "Export" msgstr "Exportar" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Vista de impresión" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Vaciar" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Eliminar" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Revisar la tabla" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimizar la tabla" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Reparar la tabla" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analizar la tabla" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Agregar prefijo a la tabla" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Reemplazar prefijo de la tabla" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Copiar tabla con prefijo" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Diccionario de datos" @@ -737,7 +737,7 @@ msgstr "Tablas con seguimiento" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Creado/a" msgid "Updated" msgstr "Actualizado" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Estado actual" @@ -855,8 +855,8 @@ msgstr "El volcado ha sido guardado al archivo %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Usted probablemente intentó cargar un archivo demasiado grande. Por favor, " "refiérase a %sla documentation%s para hallar modos de superar esta " @@ -1018,7 +1018,6 @@ msgstr "¡Ésto no es un número!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#| msgid "Log file count" msgid "Total count" msgstr "Cantidad total" @@ -1056,146 +1055,7 @@ msgstr "Eliminando los usuarios seleccionados" msgid "Close" msgstr "Cerrar" -#: js/messages.php:64 server_status.php:397 -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Gráfico de tráfico en vivo" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "Gráfico de procesos/conexiones en vivo" - -#: js/messages.php:66 server_status.php:429 -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Gráfico de consultas en vivo" - -#: js/messages.php:68 -msgid "Static data" -msgstr "Datos estáticos" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Total" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "Otro" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Cancelar" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Cargando" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Procesando Petición" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Error al Procesar la Petición" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Eliminando Columna" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Añadiendo Clave Primaria" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Renombrando Bases de Datos" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Recargar Base de Datos" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Copiando Base de Datos" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Cambiando el Juego de caracteres" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "La tabla debe tener al menos una columna" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Crear tabla" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "Insertar tablas" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Buscando" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Ocultar resultados de búsqueda" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Mostrar resultados de búsqueda" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Examinando" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Borrando" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" -"Nota: si la fila contiene múltiples tablas, van a ser combinadas en una" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Ocultar ventana de consultas SQL" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Mostrar ventana de consultas SQL" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Editar en línea" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1204,7 +1064,186 @@ msgstr "Editar en línea" msgid "Edit" msgstr "Editar" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "Gráfico de tráfico en vivo" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "Gráfico de procesos/conexiones en vivo" + +#: js/messages.php:68 server_status.php:443 +msgid "Live query chart" +msgstr "Gráfico de consultas en vivo" + +#: js/messages.php:70 +msgid "Static data" +msgstr "Datos estáticos" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "Otro" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server traffic" +msgid "Server traffic (in kB)" +msgstr "Tráfico del servidor" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Procesos" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Conexiones" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "Consultas SQL" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Estadísticas de Consulta" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Cancelar" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Cargando" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Procesando Petición" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Error al Procesar la Petición" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Eliminando Columna" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Añadiendo Clave Primaria" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Renombrando Bases de Datos" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Recargar Base de Datos" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Copiando Base de Datos" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Cambiando el Juego de caracteres" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "La tabla debe tener al menos una columna" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Crear tabla" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "Insertar tablas" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Buscando" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Ocultar resultados de búsqueda" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Mostrar resultados de búsqueda" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Examinando" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Borrando" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" +"Nota: si la fila contiene múltiples tablas, van a ser combinadas en una" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Ocultar ventana de consultas SQL" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Mostrar ventana de consultas SQL" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Editar en línea" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1212,41 +1251,41 @@ msgstr "Editar" msgid "Save" msgstr "Guardar" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Ocultar" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Ocultar criterio de búsqueda" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Mostrar criterio de búsqueda" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Seleccione la clave referenciada" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Seleccione la clave foránea" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Por favor seleccione la clave primaria o una clave única" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Elegir la columna a mostrar" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1254,27 +1293,27 @@ msgstr "" "No se guardaron los cambios en la disposición. Serán perdidos si no los " "guardas. ¿Deseas continuar?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Añadir una opción para la columna" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Generar contraseña" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generar" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Cambar contraseña" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Más" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1284,26 +1323,26 @@ msgstr "" "la obtenga. La versión más reciente es %s, y existe desde el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", versión estable más reciente:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "actualizada" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Terminado" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Previo" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1311,231 +1350,231 @@ msgid "Next" msgstr "Siguiente" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Hoy" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Enero" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Febrero" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Marzo" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Abril" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mayo" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Junio" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Julio" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Agosto" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Septiembre" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Octubre" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Noviembre" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Diciembre" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dic" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Lunes" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Miércoles" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Jueves" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Viernes" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Ju" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Sem" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Hora" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minuto" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Segundo" @@ -1768,8 +1807,8 @@ msgstr "Bienvenido a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La razón más probable es que usted no haya creado un archivo de " "configuración. Utilice el %1$sscript de configuración%2$s para crear uno." @@ -1916,7 +1955,7 @@ msgstr "compartido" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tablas" @@ -2050,7 +2089,7 @@ msgid "Documentation" msgstr "Documentación" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "consulta SQL" @@ -2079,7 +2118,7 @@ msgid "Create PHP Code" msgstr "Crear código PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Actualizar" @@ -4845,8 +4884,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar " "cadenas para formatear el tiempo. Además sucederán las siguientes " @@ -4868,7 +4907,7 @@ msgstr "Compresión:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Ninguna" @@ -5004,7 +5043,6 @@ msgid "Language" msgstr "Idioma" #: libraries/display_tbl.lib.php:397 -#| msgid "Textarea columns" msgid "Restore column order" msgstr "Restaurar orden de las columnas" @@ -5013,7 +5051,6 @@ msgid "Drag to reorder" msgstr "Arrastrar para reordenar" #: libraries/display_tbl.lib.php:412 -#| msgid "Click to select" msgid "Click to sort" msgstr "Pulsar para ordenar" @@ -5109,7 +5146,7 @@ msgid "The row has been deleted" msgstr "La fila se ha borrado" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Matar el proceso" @@ -5201,7 +5238,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Reserva de búfers" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Estado del InnoDB" @@ -5615,8 +5652,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Se puede encontrar documentación y más información sobre PBXT en la %spágina " "inicial de PrimeBase XT%s." @@ -5718,7 +5755,7 @@ msgstr "Tipos MIME disponibles" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Servidor" @@ -6448,13 +6485,13 @@ msgid "Slave status" msgstr "Estado del esclavo" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -6684,12 +6721,12 @@ msgid "Synchronize" msgstr "Sincronizar" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Registro binario" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variables" @@ -6977,7 +7014,7 @@ msgstr "definición de la PARTICIÓN" msgid "+ Add a new value" msgstr "+ Agregar un nuevo valor" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Tiempo" @@ -7180,7 +7217,7 @@ msgid "Protocol version" msgstr "Versión del protocolo" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Usuario" @@ -7303,8 +7340,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "El almacenamiento de configuración phpMyAdmin no está completamente " -"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %" -"sPulsa aquí para averiguar por qué%s." +"configurado, algunas funcionalidades extendidas fueron deshabilitadas. " +"%sPulsa aquí para averiguar por qué%s." #: main.php:314 msgid "" @@ -7639,17 +7676,17 @@ msgstr "El archivo no existe" msgid "Select binary log to view" msgstr "Seleccionar el registro binario que desea examinar" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Archivos" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Truncar las consultas que ya se han mostrado" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Mostrar las consultas enteras" @@ -8054,8 +8091,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de " "las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir " @@ -8191,7 +8228,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como maestro en un proceso de replicación." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Mostrar el estado del maestro" @@ -8343,12 +8380,12 @@ msgstr "" "Este servidor no está configurado como esclavo en un proceso de replicación. " "¿Desea configurarlo?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "El proceso %s fue destruido exitosamente." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8356,157 +8393,144 @@ msgstr "" "phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido " "cerrado." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Gestor" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Cache de consultas" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Procesos" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Datos temporales" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Caché de claves" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Vínculos (Joins)" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Ordenación" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Coordinador de transacción" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Vaciar el cache de todas las tablas" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Mostrar las tablas que están abiertas" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Mostrar los hosts esclavos" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Mostrar el estado del esclavo" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Vaciar el cache de consultas" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Información acerca del tiempo de ejecución del proceso principal" -#: server_status.php:371 -#| msgid "Server Choice" +#: server_status.php:385 msgid "Server traffic" msgstr "Tráfico del servidor" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Estadísticas de Consulta" - -#: server_status.php:373 -#| msgid "See slave status table" +#: server_status.php:387 msgid "All status variables" msgstr "Todas las variables de estado" -#: server_status.php:383 server_status.php:416 -#| msgid "Refresh" +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "Velocidad de actualización" -#: server_status.php:384 server_status.php:417 -#| msgid "Second" +#: server_status.php:398 server_status.php:431 msgid "second" msgstr "segundo" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 -#| msgid "Second" +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 msgid "seconds" msgstr "segundos" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 -#| msgid "Minute" +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 msgid "minutes" msgstr "minutos" -#: server_status.php:446 -#| msgid "Do not change the password" +#: server_status.php:460 msgid "Containing the word:" msgstr "Que contengan la palabra:" -#: server_status.php:451 -#| msgid "Show open tables" +#: server_status.php:465 msgid "Show only alert values" msgstr "Mostrar sólo valores de alerta" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "Filtrar por categoría..." -#: server_status.php:468 -#| msgid "Related Links" +#: server_status.php:482 msgid "Related links:" msgstr "Enlaces relacionados:" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "por hora" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "por minuto" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "por segundo" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Tipo de consulta" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "#" -#: server_status.php:615 +#: server_status.php:623 #, php-format msgid "Network traffic since startup: %s" msgstr "Tráfico de red desde el inicio: %s" -#: server_status.php:623 +#: server_status.php:631 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Este servidor MySQL ha estado activo durante %s. Se inició en %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8514,19 +8538,19 @@ msgstr "" "Este servidor MySQL trabaja como maestro y esclavo en un " "proceso de replicación." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Este servidor MySQL trabaja como maestro en un proceso de " "replicación." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Este servidor MySQL trabaja como esclavo en un proceso de " "replicación." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8534,15 +8558,15 @@ msgstr "" "Para más información sobre el estado de replicación en el servidor, por " "favor visita la sección sobre replicación." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Estado de replicación" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Tráfico" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8551,44 +8575,39 @@ msgstr "" "pueden excederse. Por tanto, las estadísticas reportadas por el servidor " "MySQL pueden ser incorrectas." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Recibido" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Enviado" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Conexiones" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "Número máx. de conexiones concurrentes" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Intentos fallidos" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Abortado" -#: server_status.php:784 -msgid "Processes" -msgstr "Procesos" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "Identificación" -#: server_status.php:846 -#| msgid "Whether to enable SSL for connection to MySQL server." +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Cantidad de intentos de conexión al servidor MySQL fallidos." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8598,19 +8617,19 @@ msgstr "" "binarios pero que excedieron el valor del binlog_cache_size y usaron un " "archivo temporal para almacenar las sentencias de la transacción." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El número de transacciones que usaron el cache temporal de registros " "binarios." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Cantidad de intentos de conexión al servidor MySQL (fallidos o exitosos)." -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8623,11 +8642,11 @@ msgstr "" "tmp_table_size para hacer que las tablas temporales se basen en memoria en " "lugar de basarse en disco." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "El número de archivos temporales que fueron creados por mysqld." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8635,7 +8654,7 @@ msgstr "" "El número de tablas temporales en memoria creadas automáticamente por el " "servidor mientras se ejecutaban las sentencias." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8643,7 +8662,7 @@ msgstr "" "El número de filas escritas con INSERT DELAYED en los cuales ocurrió algún " "error (probablemente una clave duplicada)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8651,23 +8670,23 @@ msgstr "" "El número de procesos gestores INSERT DELAYED en uso. Cada tabla diferente " "en la cual uno usa INSERT DELAYED recibe su propio proceso." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "El número de filas INSERT DELAYED escritas." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "El número de sentencias FLUSH ejecutadas." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "El número de sentencias COMMIT internas." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "El número de veces que una fila fue eliminada de una tabla." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8678,7 +8697,7 @@ msgstr "" "Handler_discover indica el número ocasiones que las tablas han sido " "descubiertas." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8689,7 +8708,7 @@ msgstr "" "de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, " "asumiendo que col1 está indizado." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8698,7 +8717,7 @@ msgstr "" "este valor es alto, es una buena indicación de que sus consultas y tablas " "están indexadas apropiadamente." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8708,7 +8727,7 @@ msgstr "" "clave. Este se incrementa si usted está consultando una columna índice con " "un limitante de rango o si usted está haciendo un escaneo del índice." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8717,7 +8736,7 @@ msgstr "" "clave. Este método de lectura se usa principalmente para optimizar a ORDER " "BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8730,7 +8749,7 @@ msgstr "" "requieren que MySQL escanee tablas enteras o usted debe tener vínculos " "(joins) que no usan las claves de manera apropiada." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8743,37 +8762,37 @@ msgstr "" "o que sus consultas no están escritas para tomar ventaja de los índices que " "tiene." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "El número de sentencias ROLLBACK internas." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "El número de solicitudes hechas para actualizar una fila en una tabla." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "El número de solicitudes hechas para insertar una fila en una tabla." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "El número de páginas conteniendo datos (sucias o limpias)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "El número de páginas actualmente sucias." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El número de páginas de la reserva de búfers que se ha solicitado sean " "vaciadas." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "El número de páginas libres." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8783,7 +8802,7 @@ msgstr "" "páginas en fase de lectura o escritura o que no pueden ser vaciadas o " "removidas por alguna otra razón." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8795,11 +8814,11 @@ msgstr "" "también puede ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total de la reserva de búfers, en páginas." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8808,7 +8827,7 @@ msgstr "" "una consulta va a escanear una gran porción de una tabla pero en orden " "aleatorio." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8816,11 +8835,11 @@ msgstr "" "El número de read-aheads InnoDB secuenciales iniciadas. Esto sucede cuando " "InnoDB hace un escaneo secuencial de la tabla completa." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "El número de solicitudes de lectura lógica hechas por InnoDB." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8828,7 +8847,7 @@ msgstr "" "El número de lecturas lógicas que InnoDB no pudo satisfacer la reserva de " "búfers y donde fue necesario hacer lectura de página sencilla." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8843,55 +8862,55 @@ msgstr "" "Si los parámetros del tamaño de la reserva de búfers se fijaron " "apropiadamente, este valor será pequeño." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "El número de escrituras hechas a la reserva de búfers InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "El número de operaciones fsync() hechas hasta el momento." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "El número actual de operaciones fsync() pendientes." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "El número actual de lecturas pendientes." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "El número actual de escrituras pendientess." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "El número de datos leídos hasta el momento, en bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "El número total de lectura de datos." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "El número total de escritura de datos." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "La cantidad de datos escritas hasta el momento, en bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8899,35 +8918,35 @@ msgstr "" "El número de esperas generadas porque el búfer de registro fue demasiado " "pequeño y hubo que esperar a que fuera vaciado antes de continuar." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "El número de solicitudes de escritura al registro." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "El número de escrituras físicas al archivo de registro." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "El número de escrituras fsync() hechas al archivo de registro." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "El número de fsyncs pendientes al archivo de registro." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Escrituras pendientes al archivo de registro." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "El número de bytes escritos al archivo de registro." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "El número de páginas creadas." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8936,52 +8955,52 @@ msgstr "" "son contados por páginas; el tamaño de la página permite que pueda " "convertirse fácilmente a bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "El número de páginas leídas." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "El número de páginas escritas." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "El número de row locks que actualmente están en espera." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El tiempo promedio para adquirir un row lock, en milisegundos." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "El total de tiempo invertido para adquirir los row locks, en milisegundos." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El tiempo máximo para adquirir un row lock, en milisegundos." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "El número de veces que un row lock tuvo que esperarse." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "El número de filas eliminadas de tablas InnoDB." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "El número de filas insertadas en tablas InnoDB." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "El número de filas leídas de las tablas InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "El número de filas actualizadas en tablas InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8990,7 +9009,7 @@ msgstr "" "aún no han sido volcados al disco. Antes se conocía como " "Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8998,7 +9017,7 @@ msgstr "" "El número de bloques sin usar en el caché de claves. Puede usar este valor " "para determinar cuánto del caché de claves está en uso." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9008,11 +9027,11 @@ msgstr "" "de desbordamiento que indica el número máximo de bloques que algún momento " "se llegaron a usar." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "El número de solicitudes para leer un bloque de clave desde el caché." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9023,15 +9042,15 @@ msgstr "" "demasiado pequeño. La tasa de fallos en el caché puede calcularse como " "Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "El número de solicitudes para escribir un bloque de claves a la caché." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "El número de escrituras físicas de un bloque de claves al disco." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9042,7 +9061,7 @@ msgstr "" "planes de consulta para una misma consulta. El valor por omisión de 0 " "significa que ninguna consulta ha sido compilada todavía." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -9050,11 +9069,11 @@ msgstr "" "El máximo número de conexiones que han sido utilizadas simultáneamente desde " "que inició el servidor." -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El número de filas esperando ser escritas en las colas INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9062,21 +9081,21 @@ msgstr "" "El número de tablas que han sido abiertas. Si el número de tablas abiertas " "es grande, su valor del cache de tabla probablemente es muy pequeño." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "El número de archivos que están abiertos." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El número de flujos de datos que están abiertos (usado principalmente para " "registros)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "El número de tablas que están abiertas." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -9086,19 +9105,19 @@ msgstr "" "altas pueden indicar problemas de fragmentación que pueden ser solucionados " "ejecutando la consulta FLUSH QUERY CACHE." -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "La cantidad de memoria libre para el cache de consultas." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "El número de hits al cache." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "El número de consultas añadidos al cache." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9111,7 +9130,7 @@ msgstr "" "la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben " "ser removidas del cache." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9119,20 +9138,20 @@ msgstr "" "El número de consultas que no ingresaron al cache (porque no es posible o " "porque el parámetro no está activado en query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "El número de consultas registradas en el cache." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "El número total de bloques en el cache de consultas." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "El estado de la replicación a prueba de fallos (aún no ha sido implementada)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9140,13 +9159,13 @@ msgstr "" "El número de vínculos (joins) que no usan índices. Si este valor no es 0, " "deberá revisar los índices de sus tablas cuidadosamente." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "El número de vínculos (joins) que usaron búsqueda por rangos en una tabla de " "referencias." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9155,7 +9174,7 @@ msgstr "" "de cada fila. (Si no es 0, deberá revisar los índices de sus tablas " "cuidadosamente.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9163,19 +9182,19 @@ msgstr "" "El número de vínculos (joins) que usaron rangos en la primera tabla " "(normalmente no es crítico aun cuando sea grande)." -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" "El número de vínculos (joins) que hicieron un escaneo completo de la primera " "tabla." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El número de tablas temporales actualmente abiertas por el proceso SQL " "esclavo." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9183,12 +9202,12 @@ msgstr "" "Número total de veces (desde el arranque) que el proceso SQL esclavo de " "replicación ha reintentado hacer transacciones." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Está ENCENDIDO si este servidor es un esclavo que está conectado a un master." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9196,14 +9215,14 @@ msgstr "" "El número de procesos que han tomado más de los segundos registrados en " "slow_launch_time para crear." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "El número de consultas que han tomado más segundos que los registrados en " "long_query_time." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9213,23 +9232,23 @@ msgstr "" "hacer. Si este valor es grande, debe considerar incrementar el valor de la " "varible de sistema sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "El número de consultas organizar que se ejecutaron con rangos." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "El número de filas sorted." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "El número de consultas organizar que se hicieron escaneando la tabla." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "El número de veces que un table lock fue adquirido inmediatamente." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9241,7 +9260,7 @@ msgstr "" "primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o " "usar replicación." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9251,11 +9270,11 @@ msgstr "" "puede calcularse como Threads_created/Connections. Si este valor es rojo, " "debe incrementar su thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "El número de conexiones abiertas actualmente." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9267,7 +9286,7 @@ msgstr "" "(Normalmente esto no aporta una mejoría notable en el rendimiento si usted " "tiene una buena implementación de procesos.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "El número de procesos que no están en reposo." @@ -9391,7 +9410,7 @@ msgstr "Variables y parámetros del servidor" msgid "Session value" msgstr "Valor de la sesión" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Valor global" @@ -9836,7 +9855,6 @@ msgid "Line" msgstr "Línea" #: tbl_chart.php:88 -#| msgid "Inline" msgid "Spline" msgstr "Ranuras" @@ -9849,7 +9867,6 @@ msgid "Stacked" msgstr "Apiladas" #: tbl_chart.php:94 -#| msgid "Report title:" msgid "Chart title" msgstr "Título del gráfico" @@ -9858,32 +9875,26 @@ msgid "X-Axis:" msgstr "Eje X:" #: tbl_chart.php:113 -#| msgid "SQL queries" msgid "Series:" msgstr "Series:" #: tbl_chart.php:115 -#| msgid "Textarea columns" msgid "The remaining columns" msgstr "Columnas restantes" #: tbl_chart.php:128 -#| msgid "X Axis label" msgid "X-Axis label:" msgstr "Etiqueta del eje X:" #: tbl_chart.php:128 -#| msgid "Value" msgid "X Values" msgstr "Valores X" #: tbl_chart.php:129 -#| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Etiqueta del eje Y:" #: tbl_chart.php:129 -#| msgid "Value" msgid "Y Values" msgstr "Valores Y" diff --git a/po/et.po b/po/et.po index d837000ec1..7d8446a77f 100644 --- a/po/et.po +++ b/po/et.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -46,7 +46,7 @@ msgstr "Otsi" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -83,7 +83,7 @@ msgstr "Võtme nimi" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Kirjeldus" @@ -165,7 +165,7 @@ msgstr "Tüüp" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -194,7 +194,7 @@ msgstr "Lingib " msgid "Comments" msgstr "Kommentaarid" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,7 +210,7 @@ msgstr "Kommentaarid" msgid "No" msgstr "Ei" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -270,7 +270,7 @@ msgstr "Andmebaas %s on kopeeritud %s" msgid "Rename database to" msgstr "Nimeta andmebaas ümber" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Käsk" @@ -380,7 +380,7 @@ msgstr "Ridu" msgid "Size" msgstr "Suurus" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "kasutusel" @@ -406,7 +406,7 @@ msgstr "Viimane muudatus" msgid "Last check" msgstr "Viimane vaatamine" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -599,63 +599,63 @@ msgstr "Otsi tabeli(te)st:" msgid "Inside column:" msgstr "Otsi tabeli(te)st:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Andmebaasist ei leitud tabeleid." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s tühjendatud" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Vaade %s on kustutatud" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s kustutatud" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Vaade" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Tiražeerimine" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Summa" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on vaikimisi varundusmootor sellele MySQL serverile." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -663,23 +663,23 @@ msgstr "%s on vaikimisi varundusmootor sellele MySQL serverile." msgid "With selected:" msgstr "Valitud:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Märgista kõik" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Puhasta kõik" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Kontrolli ülekulusid" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -687,59 +687,59 @@ msgstr "Kontrolli ülekulusid" msgid "Export" msgstr "Ekspordi" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Trükivaade" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Tühjenda" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Kustuta" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Kontrolli tabelit" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimiseeri tabelit" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Paranda tabelit" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analüüsi tabelit" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy msgid "Add prefix to table" msgstr "Pole andmebaase" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Asenda tabeli andmed failiga" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Asenda tabeli andmed failiga" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Andmesõnastik" @@ -755,7 +755,7 @@ msgstr "Kontrolli tabelit" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -775,7 +775,7 @@ msgstr "Loo" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Staatus" @@ -880,8 +880,8 @@ msgstr "Väljavõte salvestati faili %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Te kindlasti proovisite laadida liiga suurt faili. Palun uuri " "dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks." @@ -1090,175 +1090,7 @@ msgstr "Eemalda valitud kasutajad" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Serveri valik" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL-päring" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Kokku" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Katkesta" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Lokaalne" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Protsessid" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "Korras" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Nimeta andmebaas ümber" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Nimeta andmebaas ümber" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Kopeeri andmebaas" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Tähetabel" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Tabelil peab olema vähemalt üks väli." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Loo tabel" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Kasuta tabeleid" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Otsi" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL-päring" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL-päring" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Vaata" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Kustutan %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL-päring" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL-päring" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Mootor" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1267,7 +1099,217 @@ msgstr "Mootor" msgid "Edit" msgstr "Muuda" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Serveri valik" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL-päring" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Kokku" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Serveri valik" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Protsessid" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Ühendused" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL-päring" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Rea statistika" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Katkesta" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Lokaalne" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Protsessid" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "Korras" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Nimeta andmebaas ümber" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Nimeta andmebaas ümber" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Kopeeri andmebaas" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Tähetabel" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Tabelil peab olema vähemalt üks väli." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Loo tabel" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Kasuta tabeleid" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Otsi" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL-päring" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL-päring" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Vaata" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Kustutan %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL-päring" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL-päring" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Mootor" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1275,77 +1317,77 @@ msgstr "Muuda" msgid "Save" msgstr "Salvesta" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Peida" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL-päring" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL-päring" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Vali eelistus võti (referenced key)" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Vali võõrvõti(Foreign Key)" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Palun vali primaarne või unkaalne võti" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vali väli mida kuvada" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Genereeri parool" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Genereeri" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Muuda parooli" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Esm" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1353,31 +1395,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy msgid ", latest stable version:" msgstr "Suhte loomine (relation)" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Pole andmebaase" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy msgid "Done" msgstr "Andmed" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Eelmine" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1385,96 +1427,96 @@ msgid "Next" msgstr "Järgmine" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kokku" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binaarne" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mär" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mai" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Veb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mär" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1482,176 +1524,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Det" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Püh" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Esm" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Tei" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ree" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Lau" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Püh" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Esm" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Tei" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Kol" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Nel" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ree" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lau" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "kasutusel" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1883,8 +1925,8 @@ msgstr "Tere tulemast %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid " "kasutada %1$ssetup script%2$s et seadistada." @@ -2026,7 +2068,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabelid" @@ -2163,7 +2205,7 @@ msgid "Documentation" msgstr "Dokumentatsioon" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-päring" @@ -2192,7 +2234,7 @@ msgid "Create PHP Code" msgstr "Loo PHP kood" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Uuenda" @@ -4890,8 +4932,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada " "sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. " @@ -4914,7 +4956,7 @@ msgstr "Pakkimine" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Pole" @@ -5176,7 +5218,7 @@ msgid "The row has been deleted" msgstr "Rida kustutatud" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Tapa" @@ -5269,7 +5311,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Puhverdusala" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB staatus" @@ -5629,8 +5671,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5756,7 +5798,7 @@ msgstr "Olemasolevad MIME-tüübid" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Masin" @@ -6459,13 +6501,13 @@ msgid "Slave status" msgstr "Näita alluvate(slave) staatust" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Muutuja" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Väärtus" @@ -6706,12 +6748,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binaarne logi" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Muutujad" @@ -7012,7 +7054,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Lisa uus kasutaja" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Aeg" @@ -7254,7 +7296,7 @@ msgid "Protocol version" msgstr "Protokolli versioon" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Kasutaja" @@ -7721,18 +7763,18 @@ msgstr "\"%s\" tabel ei eksisteeri!" msgid "Select binary log to view" msgstr "Valige binaarne logi vaatamiseks" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "Väljade arv" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Lühenda näidatavad päringud" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Näita täispikkasid päringuid" @@ -8129,8 +8171,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Märkus: phpMyAdmin võtab kasutajate privileegid otse MySQL privileges " "tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda " @@ -8263,7 +8305,7 @@ msgstr "Privileegid taaslaeti edukalt." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 #, fuzzy msgid "Show master status" msgstr "Näita alluvate(slave) staatust" @@ -8404,12 +8446,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Protsess %s katkestati edukalt." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8417,194 +8459,189 @@ msgstr "" "phpMyAdmin ei suutnud katkestada protsessi %s. Tõenäoliselt on see juba " "suletud." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Töötleja" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Päringute vahemälu" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Lõimud" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Ajutised andmed " -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Ajastatud lisamised" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Võtme vahemälu" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Liited" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Järjestamine" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Ülekande kordinaator" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Tühjenda (sulge) kõik tabelid" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Näita avatud tabeleid" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Näita alluvaid(slave)" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Näita alluvate(slave) staatust" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Tühjenda päringute vahemälu" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Jooksev informatsioon" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Serveri valik" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Rea statistika" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Uuenda" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "sekundis" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "sekundis" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "kasutusel" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Ärge muutke parooli" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Näita avatud tabeleid" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Suhted" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "tunni kohta" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "minutis" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "sekundis" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Päringu tüüp" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "See MySQL server on käinud %s. Käivitusaeg %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 #, fuzzy msgid "Replication status" msgstr "Tiražeerimine" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Liiklus" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8612,45 +8649,41 @@ msgstr "" "Koormusega serveris, baitide lugeja võib lugeda vigadega (overrun), st. see " "statistika mida näitab MySQL server ei pruugi olla täpne." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Saadud" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Saadetud" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Ühendused" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "maks. parallel ühendusi" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Ebaõnnestunud üritused" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Katkestatud" -#: server_status.php:784 -msgid "Processes" -msgstr "Protsessid" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Mitu fsyncs kirjutamist tehtud logi faili." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8660,16 +8693,16 @@ msgstr "" "binlog_cache_size suurust ja kasutatakse ajutist faili et salvestada " "ülekande Käske (päringuid)." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Ülekannete number mis kasutasid ajutist binaar logi vahemälu." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8680,11 +8713,11 @@ msgstr "" "käivitades. Kui Created_tmp_disk_tables on suur, sa võid tahta suurendada " "tmp_table_size väärtust et olla mälul baseeruv mitte kettal." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Mitu ajutist faili mysqld on loonud." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8692,7 +8725,7 @@ msgstr "" "Ajutiste mälul baseeruvate tabelite arv, loodud automaatselt serveri poolt, " "päringuid käivitades." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8700,7 +8733,7 @@ msgstr "" "Mitu rida on loodud käsuga INSERT DELAYED milles toimus viga (arvatavasti " "korduv võti)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8708,23 +8741,23 @@ msgstr "" "Mitu INSERT DELAYED töötleja (handler) lõimu on kasutuses. Iga erinev tabel " "mis kasutab INSERT DELAYED saab oma lõimu." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED ridasid loodud." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "FLUSH käskude arv." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Sisemiste COMMIT käskude arv." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Mitu korda rida kustutati tabelist." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8734,7 +8767,7 @@ msgstr "" "mootor) kas ta teab tabelit etteantud nimega. Seda kutsutakse avastus" "(discovery). Handler_discover annab mitu korda on tabel leitud." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8744,7 +8777,7 @@ msgstr "" "server teeb palju täis indeksi skaneerimist; näitkes, SELECT col1 FROM foo, " "arvates et col1 indekseeritud." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8752,7 +8785,7 @@ msgstr "" "Mitu korda loeti rida võtme järgi. Kui see on suur, see on hea näitaja et " "sinu päringud ja tabelid on korralikult indekseeritud." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8761,7 +8794,7 @@ msgstr "" "Mitu korda saadi käsk lugeda võtme järgi järgmine rida. See on suurenev kui " "sa pärid indekseeritud piiratud välja või sa teed indeksi skaneerimist." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8769,7 +8802,7 @@ msgstr "" "Mitu korda saadi käsk lugeda võtme järgi eelnev rida. See lugemise meetod on " "peamiselt kasutatud optimiseerimiseks ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8781,7 +8814,7 @@ msgstr "" "mis vajavad MySQLi et skaneerida kogu tabelit või liited(joins) mis ei " "kasuta võtmeid korralikult." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8793,35 +8826,35 @@ msgstr "" "korralikult indekseeritud või sinu päringud pole kirjutatud nii et võtta " "eeliseid sinu loodud indeksitest." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Mitu korda käivitati sisemine ROLLBACK lausung." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Mitu korda uuendati tabeli rida." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Mitu korda lisati uus rida tabelisse." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Mitu lehekülge sisaldab andmeid (puhast või musta)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Mitu lehekülge on mustad." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Mitu puhvri lehekülge on määratud puhastamisele." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Mitu puu lehekülge." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8830,7 +8863,7 @@ msgstr "" "Mitu lukus lehte on InnoDB puhvris. Need lehed on hetkel lugemisel või " "kirjutamisel ja pole võimalik puhastada või kustutada mingil põhjusel." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8842,11 +8875,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Kogu puhvris suurus, lehtedes." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8854,7 +8887,7 @@ msgstr "" "Mitu InnoDB juhuslikku(random) ette-lugemisi on töös. See juhtub kui päring " "on skaneerida suur osa tabelist kuid juhuslikus järjekorras." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8862,11 +8895,11 @@ msgstr "" "Mitu InnoDB järjestikku ette-lugemisi on töös. See juhtub kui InnoDB teeb " "järjestikulist kogu tabeli skaneerimist." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Mitu loogilist lugemist InnoDB on teinud." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8874,7 +8907,7 @@ msgstr "" "Mitu loogilist lugemist InnoDB polnud võimalik puhvris poolt rahuldada ja " "tegi üksiku lehe lugemise." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8887,55 +8920,55 @@ msgstr "" "enne ühtlustatud. See This loendur loeb kõiki neid ootamisi. Kui puhvri " "suurus on seatud korralikult, se number peaks olema väike." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Mitu korda kirjutas InnoDB puhvrisse." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Mitu fsync() operatsiooni siiani." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Mitu hetkel ootel fsync() operatsiooni." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Mitu ootel lugemist." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Mitu ootel kirjutamist." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Suurus kui palju andmeid on loetud siiani, baitides." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Mitu korda loetud." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Mitu korda andmeid kirjutati." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Suurus palju andmeid on kirjutatud, baitides." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Mitu korda tehti topeltkirjutamist ja mitu lehte on kirjutatud just sellel " "põhjusel." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Mitu korda tehti topeltkirjutamise kirjutamist ja mitu lehte on kirjutatud " "just sellel põhjusel." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8943,35 +8976,35 @@ msgstr "" "Mitu ootamist on olnud sellepärast et logi puhver oli liiga väike ja pidi " "ootama enne ühtlustamist et jätkata." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Mitu logi kirjutamise soovi." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Mitu füüsilist kirjutamist logi faili." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Mitu fsyncs kirjutamist tehtud logi faili." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Mitu ootel logi faili fsyncs." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "ootel logifaili kirjutamisi." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Mitu baiti on kirjutatud logi faili." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Lehti loodud." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8979,51 +9012,51 @@ msgstr "" "Sisse-kompileeritud InnoDB lehe suurus (vaikimisi 16KB). Paljud väärtused on " "loetud lehtedes; lehe suurus lubab neid lihtsalt arvutada baitidesse." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Lehti loetud." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Lehti kirjutatud." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Mitu rea lukustamist on hetkel ootel." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Keskimne aeg pärides rea lukustust, millisekundites." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Aeg mis on raisatud pärides rea lukustust, millisekundites." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimaalne aeg pärides rea lukustust, millisekundites." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Mitu korda pidi rea lukustus ootama." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Mitu rida kustutatud InnoDB tabelitest." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Mitu rida lisati InnoDB tabelitesse." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Mitu rida loetud InnoDB tabelitest." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Mitu rida uuendati InnoDB tabelites." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9031,7 +9064,7 @@ msgstr "" "Mitu võtme plokki on võtme vahemälus muutunud kui pole veel kettale " "kirjutatud. Tuntud nagu Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9039,7 +9072,7 @@ msgstr "" "Mitu kasutamatta võtme plokki on võtme vahemälus. Sa saad kasutatda seda " "väärtust et teada saada kui palju võtme vahemälust on kasutuses." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9048,11 +9081,11 @@ msgstr "" "Mitu kasutatud plokki on võtme vahemälus. See väärtus näitab maksimaalse " "plokkide arvu mis on kunagi olnud kasutuses." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Mitu päringut et lugeda võtme plokk vahemälust." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9062,15 +9095,15 @@ msgstr "" "siis sinu key_buffer_size näitaja on kindlasti väike. Vahemälus möödaminek " "on võimalik arvutada nii Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Mitu päringut et kirjutada võtme plokk vahemällu." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Mitu füüsilist kirjutamist kirjutada võtme plokk kettale." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9080,17 +9113,17 @@ msgstr "" "Kasulik võrdlemaks erinevaid päringu plaane ühelt ja samalt päringult. " "Vaikimisi väärtus 0 tähendab et päring pole veel töödeldud." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Mitu rida on ootel INSERT DELAYED päringutes." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9098,38 +9131,38 @@ msgstr "" "Mitu tabelit on avatud. Avatud tabeleid on palju siis sinu tabeli vahemälus " "kindlasti liiga väike." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Mitu faili on avatud." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "Mitu voogu on hetkel avatud (enamasti logimiseks)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Mitu tabelit on hetkel avatud." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Vaba mälu päringute vahemälus." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Leitud Puhvrist." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Mitu päringut on lisatud vahemällu." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9141,7 +9174,7 @@ msgstr "" "vahemälu kasutab viimati kasutatud strateegiat(LRU) et otsustada millised " "päringud eemaldada puhvrist." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9149,21 +9182,21 @@ msgstr "" "Mitu mitte-puhverdatud päringut (pole salvestatud vahemällu, või sõltuvalt " "query_cache_type sätetest mitte puhverdatud)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Mitu päringut on registreeritud vahemälus." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Plokkide koguarv päringute vahemälus." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "See staatus on tõrkekindel tiraþeerimine (failsafe replication) (pole veel " "kasutuses)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9171,11 +9204,11 @@ msgstr "" "Liited(joins) mis ei kasuta indekseid. Kui see näitaja on 0, peaksid " "ettevaatlikult kontrollima oma tabelites indekseid." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "Liidete arv mida kasutati piirkonna otsimisel eelistatud tabelist." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9184,7 +9217,7 @@ msgstr "" "kasutamist. (Kui see pole 0 siis peaksid ettevaatlikult kontrollima oma " "tabelite indekseid.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9192,17 +9225,17 @@ msgstr "" "Liidete arv mida kasutati esimese tabeli piirides. (Pole eriti kriitiline " "kui see on väga suur.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Liidete arv mis tegid täielikku skaneerimist esimesest tabelist." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ajutiste tabelite arv mis on hetkel avatud alam-lõimu(replication slave) " "poolt." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9210,23 +9243,23 @@ msgstr "" "Kogusumma (alates käivitamisest) mitu korda tiraþeerimise(replication) SQL " "alam-lõim(replication slave) proovis ülekandeid." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Kui see on ON kui serveril on alam server(masin) mis on ühenduses masteriga." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "Lõimude arv mis võtsid rohkem aega käivitamiseks kui slow_launch_time." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Päringute arv mis võtsid rohkem aega kui long_query_time sekundites." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9235,23 +9268,23 @@ msgstr "" "Edukate ühinemiste(merge) arv millega lühike algoritm on tegelenud. Kui see " "väärtuse on suur, sa peaksid mõtlema sort_buffer_size väärtuse suurendamist." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Sorteerimiste arv mis on tehtud piirkonna ulatuses." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Sorteritud ridade arv." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Sorteerimiste arv mis on tehtud tabeli skaneerimist kasutades." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Mitu korda tabeli lukustus jõustus koheselt." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9262,7 +9295,7 @@ msgstr "" "suur ja jõudlusega on probleeme, sa peaksid optimiseerima oma päringuid või " "poolitama oma tabelid või kasutama tiraþeerimist(replication)." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9272,11 +9305,11 @@ msgstr "" "nii Threads_created/Connections. Kui see on punane paksid suurendama " "thread_cache_size suurust." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Hetkel avatud ühendusi." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9287,7 +9320,7 @@ msgstr "" "siis suurenda thread_cache_size väärtust. (Tavaliselt see ei anna märgatavat " "kiiruse tõusu kui Lõimude teostus on korralik.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Lõimude arv mis mis hetkel ei maga." @@ -9412,7 +9445,7 @@ msgstr "Serveri muutujad ja seaded." msgid "Session value" msgstr "Sessiooni väärtus" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Üldine väärtus" diff --git a/po/eu.po b/po/eu.po index 966a9398f8..e735bea8ce 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -47,7 +47,7 @@ msgstr "Bilatu" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Klabearen hitza" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Deskribapena" @@ -166,7 +166,7 @@ msgstr "Mota" msgid "Null" msgstr "Nulua" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Estekak honi:" msgid "Comments" msgstr "Iruzkinak" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Iruzkinak" msgid "No" msgstr "Ez" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -273,7 +273,7 @@ msgstr "%s taula hona kopiatua izan da: %s." msgid "Rename database to" msgstr "Taula berrizendatu izen honetara: " -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Komandoa" @@ -384,7 +384,7 @@ msgstr "Errenkadak" msgid "Size" msgstr "Tamaina" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "lanean" @@ -410,7 +410,7 @@ msgstr "Azken eguneraketa" msgid "Last check" msgstr "Azken egiaztapena" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -603,64 +603,64 @@ msgstr "Taul(ar)en barnean:" msgid "Inside column:" msgstr "Taul(ar)en barnean:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Ez da taularik aurkitu datu-basean." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "%s taula hustu egin da" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s eremua ezabatu da" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "%s taula ezabatu egin da" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 #, fuzzy msgid "Replication" msgstr "Erlazioak" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Gehiketa" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -668,23 +668,23 @@ msgstr "" msgid "With selected:" msgstr "Ikurdunak:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Guztiak egiaztatu" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Desautatu dena" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -692,58 +692,58 @@ msgstr "Arazteko hondakinak egiaztatu" msgid "Export" msgstr "Esportatu" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Hutsik" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Ezabatu" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Taula egiaztatu" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Taula optimizatu" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Taula konpondu" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Taula aztertu" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Taularen datuak fitxategiarekin ordezkatu " -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Taularen datuak fitxategiarekin ordezkatu " -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Datu-hiztegia" @@ -758,7 +758,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -777,7 +777,7 @@ msgstr "Sortu" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Egoera" @@ -881,8 +881,8 @@ msgstr "Iraulketa %s fitxategian gorde da." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1076,169 +1076,7 @@ msgstr "Hautatutako erabiltzaileak baztertu" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Zerbitzariaren hautaketa" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL kontsulta" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Gutira" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Lokal" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Prozesuak" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "Zuzena" - -#: js/messages.php:91 -#, fuzzy -msgid "Renaming Databases" -msgstr "Taula berrizendatu izen honetara: " - -#: js/messages.php:92 -#, fuzzy -msgid "Reload Database" -msgstr "Taula berrizendatu izen honetara: " - -#: js/messages.php:93 -#, fuzzy -msgid "Copying Database" -msgstr "Datu-baserik ez" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Karaktere-jokoa" - -#: js/messages.php:95 -#, fuzzy -#| msgid "You have to choose at least one column to display" -msgid "Table must have at least one column" -msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu." - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "Orri berri bat sortu" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Taulak erabili" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Bilatu" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL kontsulta" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL kontsulta" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Arakatu" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "%s ezabatzen" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL kontsulta" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL kontsulta" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1247,7 +1085,211 @@ msgstr "" msgid "Edit" msgstr "Editatu" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Zerbitzariaren hautaketa" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL kontsulta" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Gutira" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Zerbitzariaren hautaketa" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Prozesuak" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Konexioak" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL kontsulta" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Errenkadaren estatistikak" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Lokal" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Prozesuak" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "Zuzena" + +#: js/messages.php:104 +#, fuzzy +msgid "Renaming Databases" +msgstr "Taula berrizendatu izen honetara: " + +#: js/messages.php:105 +#, fuzzy +msgid "Reload Database" +msgstr "Taula berrizendatu izen honetara: " + +#: js/messages.php:106 +#, fuzzy +msgid "Copying Database" +msgstr "Datu-baserik ez" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Karaktere-jokoa" + +#: js/messages.php:108 +#, fuzzy +#| msgid "You have to choose at least one column to display" +msgid "Table must have at least one column" +msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu." + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "Orri berri bat sortu" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Taulak erabili" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Bilatu" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL kontsulta" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL kontsulta" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Arakatu" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s ezabatzen" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL kontsulta" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL kontsulta" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1255,78 +1297,78 @@ msgstr "Editatu" msgid "Save" msgstr "Gorde" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL kontsulta" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL kontsulta" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ezikusi" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Aukeratu erakutsi beharreko eremua" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Pasahitza aldatu" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Egilea:" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Pasahitza aldatu" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Astel" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1334,31 +1376,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Datu-baserik ez" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "Batez" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Aurrekoa" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1366,96 +1408,96 @@ msgid "Next" msgstr "Hurrengoa" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gutira" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binarioa " -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Api" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mai" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Eka" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Uzt" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Abu" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Urr" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1463,176 +1505,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Abe" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Iga" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Astel" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Astea" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Osti" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Lar" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Iga" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Astel" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Astea" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Astez" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Oste" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Osti" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lar" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lanean" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1858,8 +1900,8 @@ msgstr "Ongietorriak %s(e)ra" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1997,7 +2039,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Taulak" @@ -2132,7 +2174,7 @@ msgid "Documentation" msgstr "Dokumentazioa" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL kontsulta" @@ -2161,7 +2203,7 @@ msgid "Create PHP Code" msgstr "PHP kodea sortu" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4820,8 +4862,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4841,7 +4883,7 @@ msgstr "Trinkotzea" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Batez" @@ -5090,7 +5132,7 @@ msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Hil" @@ -5181,7 +5223,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB Egoera" @@ -5526,8 +5568,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5647,7 +5689,7 @@ msgstr "MIME-mota erabilgarriak" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Zerbitzaria" @@ -6346,13 +6388,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Aldagaia" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "balioa" @@ -6594,13 +6636,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr " Binarioa " #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Aldagaiak" @@ -6901,7 +6943,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Erabiltzaile berria gehitu" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Denbora" @@ -7114,7 +7156,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Erabiltzailea" @@ -7576,18 +7618,18 @@ msgstr "\"%s\" taula ez da existitzen!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "Eremuak" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Erakutsitako kontultak moztu" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Kontsulta osoak erakutsi" @@ -7998,8 +8040,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren " "pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz " @@ -8131,7 +8173,7 @@ msgstr "Pribilegioak arrakastaz berkargatu dira." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8270,12 +8312,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "%s haria arrakastaz ezabatu da." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8283,255 +8325,246 @@ msgstr "" "phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia " "izatea." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 #, fuzzy msgid "Query cache" msgstr "Kontsulta mota" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "Use delayed inserts" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "Taulak erakutsi" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 #, fuzzy msgid "Runtime Information" msgstr "Saioa hasteko informazioa" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Zerbitzariaren hautaketa" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Errenkadaren estatistikak" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy msgid "Refresh rate" msgstr "Egilea:" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "segunduko" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "segunduko" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "lanean" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Pasahitza ez aldatu" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "Taulak erakutsi" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Erlazioak" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "orduko" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "minutuko" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "segunduko" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Kontsulta mota" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL zerbitzari hau martxan egon da %s. %s abiaratu zelarik." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Trafikoa" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Jasota" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Bidalita" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Konexioak" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Erratutako saiakerak" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Deuseztatua" -#: server_status.php:784 -msgid "Processes" -msgstr "Prozesuak" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8539,78 +8572,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8618,7 +8651,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8626,42 +8659,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8669,33 +8702,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8704,227 +8737,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8932,99 +8965,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9032,18 +9065,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9051,7 +9084,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9174,7 +9207,7 @@ msgstr "Zerbitzariaren aldagai eta ezarpenak" msgid "Session value" msgstr "Saioaren balioa" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Balio orokorra" diff --git a/po/fa.po b/po/fa.po index 5975c9429c..0bd40497ba 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -44,7 +44,7 @@ msgstr "جستجو" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -81,7 +81,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "توضیحات" @@ -163,7 +163,7 @@ msgstr "نوع" msgid "Null" msgstr "خالي" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -192,7 +192,7 @@ msgstr "پيوند به" msgid "Comments" msgstr "توضيحات" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,7 +208,7 @@ msgstr "توضيحات" msgid "No" msgstr "خير" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -268,7 +268,7 @@ msgstr "پایگاه داده %s در %s کپی شد" msgid "Rename database to" msgstr "تغییر نام پایگاه داده به" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "دستور" @@ -373,7 +373,7 @@ msgstr "سطرها" msgid "Size" msgstr "اندازه" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "in use" @@ -399,7 +399,7 @@ msgstr "آخرین به روز رسانی" msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -581,63 +581,63 @@ msgstr "در جدول(هاي) :" msgid "Inside column:" msgstr "در جدول:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "در پايگاه داده هيچ جدولي یافت نشد." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s خالي شد" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "نمای %s حذف گرديد." -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذف گرديد" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "پیگردی فعال می باشد." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "پیگردی فعال نمی باشد." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "در این نما حداقل این تعداد از سطرها موجود می باشد. لطفاً به %sنوشتار%s مراجعه " "نمایید." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "نمایش" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "مجموع" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -645,23 +645,23 @@ msgstr "" msgid "With selected:" msgstr "موارد انتخاب‌شده :" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "انتخاب همه" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "عدم انتخاب همه" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -669,58 +669,58 @@ msgstr "" msgid "Export" msgstr "صدور" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "نماي چاپ" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "خالي كردن" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "حذف" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "بررسي جدول" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "بهينه‌سازي جدول" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "مرمت جدول" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "تحليل جدول" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "جايگزيني داده‌هاي جدول با پرونده" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "جايگزيني داده‌هاي جدول با پرونده" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "فرهنگ داده‌ها" @@ -735,7 +735,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -753,7 +753,7 @@ msgstr "ایجاد شده" msgid "Updated" msgstr "به روز شده" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -855,8 +855,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1044,167 +1044,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server version" -msgid "Live traffic chart" -msgstr "نسخه سرور" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "پرس و جوي SQL" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "جمع كل" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "لغو کردن" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "محلی" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "تاييد" - -#: js/messages.php:91 -#, fuzzy -msgid "Renaming Databases" -msgstr "بازناميدن جدول به" - -#: js/messages.php:92 -#, fuzzy -msgid "Reload Database" -msgstr "بازناميدن جدول به" - -#: js/messages.php:93 -#, fuzzy -msgid "Copying Database" -msgstr "No databases" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "" - -#: js/messages.php:95 -#, fuzzy -#| msgid "You have to choose at least one column to display" -msgid "Table must have at least one column" -msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "ساخت يك صفحه جديد" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "بكارگيري جدولها" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "جستجو" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "پرس و جوي SQL" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "پرس و جوي SQL" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "مشاهده" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "در حال پاک کردن %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "پرس و جوي SQL" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "پرس و جوي SQL" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "موتور" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1213,7 +1053,207 @@ msgstr "موتور" msgid "Edit" msgstr "ويرايش" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server version" +msgid "Live traffic chart" +msgstr "نسخه سرور" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "پرس و جوي SQL" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "جمع كل" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server version" +msgid "Server traffic (in kB)" +msgstr "نسخه سرور" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "" + +#: js/messages.php:85 +msgid "Connections / Processes" +msgstr "" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "پرس و جوي SQL" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "آمار سطرها" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "لغو کردن" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "محلی" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "تاييد" + +#: js/messages.php:104 +#, fuzzy +msgid "Renaming Databases" +msgstr "بازناميدن جدول به" + +#: js/messages.php:105 +#, fuzzy +msgid "Reload Database" +msgstr "بازناميدن جدول به" + +#: js/messages.php:106 +#, fuzzy +msgid "Copying Database" +msgstr "No databases" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "" + +#: js/messages.php:108 +#, fuzzy +#| msgid "You have to choose at least one column to display" +msgid "Table must have at least one column" +msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "ساخت يك صفحه جديد" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "بكارگيري جدولها" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "جستجو" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "پرس و جوي SQL" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "پرس و جوي SQL" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "مشاهده" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "در حال پاک کردن %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "پرس و جوي SQL" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "پرس و جوي SQL" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "موتور" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1221,78 +1261,78 @@ msgstr "ويرايش" msgid "Save" msgstr "ذخيره" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "پرس و جوي SQL" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "پرس و جوي SQL" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "تغيير اسم رمز" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "توليد‌شده توسط" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "تغيير اسم رمز" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "دوشنبه" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1300,33 +1340,33 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "نسخه قبلی" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "No databases" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "خير" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "قبل" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1334,96 +1374,96 @@ msgid "Next" msgstr "بعد" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "جمع كل" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "دودويي" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "مارس" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "آوريل" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "مي" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ژوئن" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "جولاي" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "آگوست" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "اكتبر" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1431,174 +1471,174 @@ msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "دسامبر" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "يكشنبه" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "دوشنبه" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "سه‌شنبه" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "چهارشنبه" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "پنجشنبه" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "جمعه" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "شنبه" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "يكشنبه" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "دوشنبه" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "سه‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "چهارشنبه" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "پنج‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "جمعه" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "شنبه" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "هفته" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "ساعت" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "دقیقه" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr " ثانیه" @@ -1822,8 +1862,8 @@ msgstr "به %s خوش‌آمديد" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1958,7 +1998,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "جدولها" @@ -2090,7 +2130,7 @@ msgid "Documentation" msgstr "مستندات" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "پرس و جوي SQL" @@ -2120,7 +2160,7 @@ msgid "Create PHP Code" msgstr "ساخت كد PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4753,8 +4793,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4774,7 +4814,7 @@ msgstr "فشرده‌سازي" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "خير" @@ -5015,7 +5055,7 @@ msgid "The row has been deleted" msgstr "سطر حذف گرديد ." #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Kill" @@ -5106,7 +5146,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "" @@ -5449,8 +5489,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5565,7 +5605,7 @@ msgstr "نمايش خصوصيات" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "ميزبان" @@ -6259,13 +6299,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "متغییر" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "مقدار" @@ -6503,13 +6543,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "دودويي" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 #, fuzzy msgid "Variables" msgstr "متغییر" @@ -6690,9 +6730,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " -"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" -"\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " +"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " +"يا 'a\\'b')" #: libraries/tbl_properties.inc.php:105 msgid "" @@ -6727,9 +6767,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " -"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" -"\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " +"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " +"يا 'a\\'b')" #: libraries/tbl_properties.inc.php:371 msgid "ENUM or SET data too long?" @@ -6792,7 +6832,7 @@ msgstr "" msgid "+ Add a new value" msgstr "افزودن يك كاربر جديد" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "" @@ -6947,7 +6987,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "كاربر" @@ -7002,8 +7042,8 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" "پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با " -"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " -"، و شما بايد اين حفره امنيتي را ذرست كنيد." +"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز " +"مي‌شود ، و شما بايد اين حفره امنيتي را ذرست كنيد." #: main.php:251 msgid "" @@ -7397,18 +7437,18 @@ msgstr "جدول \"%s\" وجود ندارد!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "ستونها" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "" @@ -7798,8 +7838,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7923,7 +7963,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8062,262 +8102,253 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "وروديهاي تمديدشده" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "نمايش جدولها" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 #, fuzzy msgid "Runtime Information" msgstr "اطلاعات ورود" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server version" msgid "Server traffic" msgstr "نسخه سرور" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "آمار سطرها" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy msgid "Refresh rate" msgstr "توليد‌شده توسط" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr " ثانیه" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr " ثانیه" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "دقیقه" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "عدم تغيير اسم رمز" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "نمايش جدولها" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy msgid "Related links:" msgstr "عمليات" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "در ساعت" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "در دقیقه" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "در ثانیه" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "" -#: server_status.php:784 -msgid "Processes" -msgstr "" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "شناسه" -#: server_status.php:846 +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8325,78 +8356,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8404,7 +8435,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8412,42 +8443,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8455,33 +8486,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8490,227 +8521,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8718,99 +8749,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8818,18 +8849,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8837,7 +8868,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -8958,7 +8989,7 @@ msgstr "" msgid "Session value" msgstr "" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "" diff --git a/po/fi.po b/po/fi.po index 32ff12a1a1..85ae351e3a 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "Etsi" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Avaimen nimi" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Kuvaus" @@ -166,7 +166,7 @@ msgstr "Tyyppi" msgid "Null" msgstr "Tyhjä" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Linkitys sarakkeeseen:" msgid "Comments" msgstr "Kommentit" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Kommentit" msgid "No" msgstr "Ei" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Tietokanta %s on kopioitu tietokantaan %s" msgid "Rename database to" msgstr "Muuta tietokannan nimi" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Komento" @@ -373,7 +373,7 @@ msgstr "Kpl rivejä" msgid "Size" msgstr "Koko" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "käytössä" @@ -399,7 +399,7 @@ msgstr "Viimeksi päivitetty" msgid "Last check" msgstr "Viimeksi tarkistettu" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -582,63 +582,63 @@ msgstr "Tauluista:" msgid "Inside column:" msgstr "Sarakkeen sisältä:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Tietokannassa ei ole tauluja." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Taulu %s on tyhjennetty" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Näkymä %s on poistettu" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Taulu %s on poistettu" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Seuranta on käytössä." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Seuranta ei ole käytössä." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %" -"sohjeista%s." +"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " +"%sohjeista%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Näkymä" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Kahdennus" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Summa" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -646,23 +646,23 @@ msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori." msgid "With selected:" msgstr "Valitut:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Valitse kaikki" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Poista valinta kaikista" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -670,60 +670,60 @@ msgstr "Valitse taulut, joissa on ylijäämää" msgid "Export" msgstr "Vienti" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Tulostusversio" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Tyhjennä" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Tuhoa" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Tarkista taulu" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimoi taulu" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Korjaa taulu" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analysoi taulu" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Siirry tauluun" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Korvaa taulun nykyiset rivit tiedostolla" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Korvaa taulun nykyiset rivit tiedostolla" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Tietosanasto" @@ -738,7 +738,7 @@ msgstr "Seurattavat taulut" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -756,7 +756,7 @@ msgstr "Luotu" msgid "Updated" msgstr "Päivitetty" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Tila" @@ -856,8 +856,8 @@ msgstr "Vedos tallennettiin tiedostoon %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso " "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." @@ -1059,157 +1059,7 @@ msgstr "Poista valitut käyttäjät" msgid "Close" msgstr "Sulje" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Valitse palvelin" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query box" -msgid "Live query chart" -msgstr "Näytä kyselykenttä" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Yhteensä" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Peruuta" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Lataa" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Pyynnön käsittely" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Virhe pyynnön käsittelyssä" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Sarakkeen poisto" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Pääavaimen lisäys" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "Kunnossa" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Muuta tietokantojen nimiä" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Lataa tietokanta uudestaan" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Tietokannan kopiointi" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Merkistökoodauksen vaihtaminen" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Taulussa on oltava vähintään yksi kenttä." - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Luo taulu" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Käytä tauluja" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Etsi" - -#: js/messages.php:105 -#, fuzzy -#| msgid "Hide query box" -msgid "Hide search results" -msgstr "Piilota SQL-kyselykenttä" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Show query box" -msgid "Show search results" -msgstr "Näytä kyselykenttä" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Selaa" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Poistetaan: %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Piilota SQL-kyselykenttä" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Näytä kyselykenttä" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Rivin muokkaus" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1218,7 +1068,199 @@ msgstr "Rivin muokkaus" msgid "Edit" msgstr "Muokkaa" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Valitse palvelin" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query box" +msgid "Live query chart" +msgstr "Näytä kyselykenttä" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Yhteensä" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Valitse palvelin" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Prosessit" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Yhteydet" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL-kyselyt" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Kyselyn ominaisuuksia" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Peruuta" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Lataa" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Pyynnön käsittely" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Virhe pyynnön käsittelyssä" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Sarakkeen poisto" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Pääavaimen lisäys" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "Kunnossa" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Muuta tietokantojen nimiä" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Lataa tietokanta uudestaan" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Tietokannan kopiointi" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Merkistökoodauksen vaihtaminen" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Taulussa on oltava vähintään yksi kenttä." + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Luo taulu" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Käytä tauluja" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Etsi" + +#: js/messages.php:118 +#, fuzzy +#| msgid "Hide query box" +msgid "Hide search results" +msgstr "Piilota SQL-kyselykenttä" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Show query box" +msgid "Show search results" +msgstr "Näytä kyselykenttä" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Selaa" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Poistetaan: %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Piilota SQL-kyselykenttä" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Näytä kyselykenttä" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Rivin muokkaus" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1226,71 +1268,71 @@ msgstr "Muokkaa" msgid "Save" msgstr "Tallenna" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Kätke" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy #| msgid "Hide query box" msgid "Hide search criteria" msgstr "Piilota SQL-kyselykenttä" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy #| msgid "Show query box" msgid "Show search criteria" msgstr "Näytä kyselykenttä" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Älä huomioi" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Valitse viitattava avain" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Valitse liiteavain" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Valitse perusavain tai uniikki avain" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Valitse näytettävä sarake" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Lisää asetus sarakkeelle" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Keksi salasana" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Keksi" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Vaihda salasana" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Lisää" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1300,30 +1342,30 @@ msgstr "" "Uusin versio on %s, ja se on julkaistu %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Tarkista uusin versio" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Siirry tietokantaan" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Valmis" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Edellinen" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1331,231 +1373,231 @@ msgid "Next" msgstr "Seuraava" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Tänään" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Tammi" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Helmi" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Maalis" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Huhti" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Touko" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Kesä" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Heinä" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Elo" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Syys" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Loka" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Marras" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Joulu" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Joulu" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Su" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Ma" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Ti" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Ke" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "To" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Pe" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "La" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "La" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "La" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Vko" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Tunti" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minuutti" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Sekunti" @@ -1790,11 +1832,11 @@ msgstr "Tervetuloa, toivottaa %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1" -"$sasetusskriptillä%2$s." +"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston " +"%1$sasetusskriptillä%2$s." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -1938,7 +1980,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Taulut" @@ -2067,7 +2109,7 @@ msgid "Documentation" msgstr "Ohjeet" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-kysely" @@ -2096,7 +2138,7 @@ msgid "Create PHP Code" msgstr "Näytä PHP-koodi" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Päivitä" @@ -4967,8 +5009,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten " "ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat " @@ -4991,7 +5033,7 @@ msgstr "Pakkaus" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Ei mitään" @@ -5263,7 +5305,7 @@ msgid "The row has been deleted" msgstr "Rivi on poistettu" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Lopeta" @@ -5356,7 +5398,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Puskurivaranto" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB:n tila" @@ -5749,8 +5791,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5879,7 +5921,7 @@ msgstr "Mahdolliset MIME-tyypit" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Palvelin" @@ -6591,13 +6633,13 @@ msgid "Slave status" msgstr "Alipalvelimen tila" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Muuttuja" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Arvo" @@ -6844,12 +6886,12 @@ msgid "Synchronize" msgstr "Yhtenäistä" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binääriloki" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Muuttujat" @@ -7144,7 +7186,7 @@ msgstr "PARTITION-määritelmä" msgid "+ Add a new value" msgstr "Lisää uusi palvelin" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Aika" @@ -7392,7 +7434,7 @@ msgid "Protocol version" msgstr "Protokollan versio" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Käyttäjä" @@ -7893,17 +7935,17 @@ msgstr "Taulua \"%s\" ei ole!" msgid "Select binary log to view" msgstr "Valitse näytettävä binääriloki" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Tiedostot" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Näytä katkaistut kyselyt" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Näytä kyselyt kokonaisuudessaan" @@ -8302,8 +8344,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen " "käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen " @@ -8441,7 +8483,7 @@ msgstr "Isäntäpalvelimeksi on onnistuen vaihdettu %s" msgid "This server is configured as master in a replication process." msgstr "Tämä palvelin on määritelty kahdennustoiminnon isäntäpalvelimeksi." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Näytä isäntäpalvelimen tila" @@ -8601,177 +8643,173 @@ msgstr "" "Tätä palvelinta ei ole määritetty kahdennustoiminnon alipalvelimeksi. " "Haluatko määrittää sen?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Säikeen %s lopetus onnistui." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "PhpMyAdmin ei voinut lopettaa säiettä %s. Se on ehkä jo suljettu." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Käsittelijä" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Kyselyvälimuisti" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Säikeet" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Väliaikaista tietoa" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Viivästetyt lisäyslauseet" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Avainvälimuisti" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Liitokset" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Lajittelu" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Transaktion koordinaattori" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Tyhjennä (sulje) kaikki taulut" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Näytä avoimet taulut" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Näytä alipalvelimet" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Näytä alipalvelimen tila" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Tyhjennä kyselymuisti" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Ajonaikaiset tiedot" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Valitse palvelin" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Kyselyn ominaisuuksia" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Näytä alipalvelimen tilan taulu" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Päivitä" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Sekunti" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Sekunti" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Minuutti" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Älä vaihda salasanaa" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Näytä avoimet taulut" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relaatiot" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "tunnissa" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "minuutissa" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "sekunnissa" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Kyselyn tyyppi" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8779,18 +8817,18 @@ msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pää- ja " "alipalvelimena." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pääpalvelimena." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa ja alipalvelimena." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8798,15 +8836,15 @@ msgstr "" "Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Kahdennuksen tila" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Liikenne" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8814,45 +8852,41 @@ msgstr "" "Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-" "palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Vastaanotettu" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Lähetetty" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Yhteydet" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "Enim. yhtäaikaisia yhteyksiä" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Epäonnistuneet yritykset" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Keskeytetty" -#: server_status.php:784 -msgid "Processes" -msgstr "Prosessit" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "Tunnus" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-palvelimeen ei voitu yhdistää" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8863,16 +8897,16 @@ msgstr "" "\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa " "transaktiokyselyjen tallentamiseen." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binäärilokin tilapäistä välimuistia käyttäneiden transaktioiden määrä." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8884,11 +8918,11 @@ msgstr "" "nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin " "muistissa eikä levyllä." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8896,7 +8930,7 @@ msgstr "" "Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut " "kyselyjä suorittaessaan." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8904,7 +8938,7 @@ msgstr "" "Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien " "määrä (virheenä todennäköisesti päällekkäinen avain)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8912,23 +8946,23 @@ msgstr "" "Käytössä olevien INSERT DELAYED -käsittelijäsäikeiden määrä. Jokainen INSERT " "DELAYED -kyselyä käyttävä taulu saa käyttöönsä oman säikeensä." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED -rivien kirjoituksia." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "FLUSH-kyselyjä suoritettu." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Sisäisten COMMIT-kyselyjen määrä." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8938,7 +8972,7 @@ msgstr "" "tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. " "discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8949,7 +8983,7 @@ msgstr "" "läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen " "col1:sen olevan indeksoitu sarake." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8957,7 +8991,7 @@ msgstr "" "Kertoo, kuinka monta kertaa rivejä on luettu avaimen perusteella. Jos tämä " "on suuri, kyselyjen ja taulujen indeksointi suoritetaan oikein." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8967,7 +9001,7 @@ msgstr "" "avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita " "käyttämällä rajauksia tai jos suoritetaan indeksihaku." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8976,7 +9010,7 @@ msgstr "" "avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC " "-kyselyllä optimoimiseen." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8989,7 +9023,7 @@ msgstr "" "pakottavat MySQL-palvelimen käymään läpi kaikki taulut, tai käytät " "liitoksia, jotka käyttävät avaimia virheellisesti." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9001,35 +9035,35 @@ msgstr "" "yleensä siitä, että tauluja ei ole indeksoitu hyvin, tai että kyselyjä ei " "ole kirjoitettu siten, että ne hyödyntäisivät luomiasi indeksejä." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Sisäisten ROLLBACK-kyselyjen määrä." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Taulun rivien päivityspyyntöjen määrä." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Kertoo tauluihin lisättyjen rivien määrän." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Tietoa (epäsiistiä tai siistiä) sisältävien sivujen määrä" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Siistittäviksi pyydettyjen, puskurivarannossa olevien sivujen määrä." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Vapaiden sivujen määrä." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -9039,7 +9073,7 @@ msgstr "" "parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden " "välimuistia ei voida tyhjentää syystä tai toisesta." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9051,11 +9085,11 @@ msgstr "" "takia. Tämä arvo voidaan laskea näinkin: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Puskurivarannon kokonaiskoko sivuina." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -9063,7 +9097,7 @@ msgstr "" "InnoDB:n käynnistämien umpimähkäisten ennakkolukujen määrä. Näin käy kyselyn " "lukiessa satunnaisessa järjestyksessä läpi laajoja alueita taulusta." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9071,11 +9105,11 @@ msgstr "" "InnoDB:n käynnistämien perättäisten ennakkolukujen määrä. Näin käy kun " "InnoDB lukee läpi kokonaisen taulun tavallisessa järjestyksessä." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9083,7 +9117,7 @@ msgstr "" "Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa " "puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9097,55 +9131,55 @@ msgstr "" "kertoo tällaisten odotusten määrän. Jos puskurivarannon koko on asetettu " "sopivaksi, tämän arvon pitäisi olla alhainen." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Fsync()-toimenpiteitä tähän mennessä." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Tähän mennessä luetun tiedon määrä tavuina." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Kertoo, kuinka paljon on tähän mennessä tietoja kirjoitettu (tavuina)." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9153,35 +9187,35 @@ msgstr "" "Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin " "tyhjentymistä jouduttiin odottamaan ennen jatkamista." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Lokitiedostojen fsync()-kirjoitusten määrä." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Lokitiedoston avointen fsync-synkronointien määrä." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Avoimet lokitiedostokirjoitukset." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Lokitiedostoon kirjoitettujen tavujen määrä." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Luotujen sivujen määrä." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9190,52 +9224,52 @@ msgstr "" "arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen " "koko tavuina." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Luettujen rivien määrä." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Kirjoitettujen sivujen määrä." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Tällä hetkellä odotettavien rivilukitusten määrä." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Kertoo, kuinka monta kertaa rivilukitusta on jouduttu odottamaan." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB-tauluista poistettujen rivien määrä." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB-tauluihin lisättyjen rivien määrä." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB-taulusta luettujen rivien määrä." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB-taulun päivitettyjen rivien määrä." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9244,7 +9278,7 @@ msgstr "" "muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto " "tunnetaan yleisesti nimellä Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9253,20 +9287,20 @@ msgstr "" "avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan " "käytössä." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "Samaan aikaan avainvälimuistissa olleiden lohkojen määrä enimmillään." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" "Kertoo, kuinka monta pyyntöä on suoritettu avainlohkon hakemiseksi " "välimuistista." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9277,16 +9311,16 @@ msgstr "" "asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea " "lausekkeella Key_reads / Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Kertoo, kuinka monta kertaa välimuistiin on kirjoitettu avainlohko." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" "Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9297,18 +9331,18 @@ msgstr "" "kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole " "vielä koottu." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kertoo, kuinka monta riviä INSERT DELAYED -jonoissa odottaa kirjoittamista." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9316,39 +9350,39 @@ msgstr "" "Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa " "olla liian alhainen." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Avoinna olevien tiedostojen määrä." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Avoinna olevien tietovirtojen määrä (käytetään pääasiassa kirjauksessa)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Avoinna olevien taulujen määrä." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Kyselyvälimuistin vapaan muistin määrä." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Välimuistiosumien määrä." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Välimuistiin lisättyjen kyselyjen määrä." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9361,7 +9395,7 @@ msgstr "" "Kyselyvälimuisti päättää välimuistista poistettavat kyselyt LRU-käytännön " "avulla (\"least recently used\" eli \"äskettäin vähiten käytetyt kyselyt\")." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9370,19 +9404,19 @@ msgstr "" "tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne " "query_cache_type-asetuksen takia)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Rekisteröityjen kyselyjen määrä välimuistissa." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9390,11 +9424,11 @@ msgstr "" "Kertoo, kuinka moni liitos ei käytä indeksejä. Jos tämä arvo ei ole 0, " "taulujen indeksit olisi hyvä tarkistaa tarkkaan." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "Niiden liitosten määrä, jotka käyttivät viitetaulussa aluehakua." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9403,7 +9437,7 @@ msgstr "" "rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa " "huolella.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9411,17 +9445,17 @@ msgstr "" "Kertoo niiden liitosten määrän, jotka käyttävät rajausta ensimmäisessä " "taulussa. (Yleensä ei ole vakavaa, vaikka tämä arvo olisi suuri.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" "Kertoo niiden liitosten määrän, jotka suorittivat ensimmäisestä taulusta " "täydellisen tarkistuksen." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "SQL-alisäikeen avointen tilapäistaulujen määrä tällä hetkellä." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9429,13 +9463,13 @@ msgstr "" "Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on " "käynnistyksestään lähtien yrittänut suorittaa transaktioita." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Tämän on päällä (ON), mikäli kyseinen palvelin on pääpalvelimeen kytketty " "alipalvelin." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9443,14 +9477,14 @@ msgstr "" "Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin " "slow_launch_time sekuntia." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Niiden kyselyjen määrä, joiden suorittamiseen on kulunut aikaa enemmän kuin " "long_query_time sekuntia." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9459,25 +9493,25 @@ msgstr "" "Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, " "sort_buffer-muuttujan arvoa voi suurentaa." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Lajiteltujen rivien määrä." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" "Niiden lajittelutoimenpiteiden määrä, jotka on suoritettu lukemalla taulu " "läpi." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9489,7 +9523,7 @@ msgstr "" "hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai " "käyttää hyödyksi kahdennusta." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9499,11 +9533,11 @@ msgstr "" "voidaan laskea täten kaavalla Threads_created / yhteyksien lkm. Jos tämä " "arvo on punainen, thread_cache_size-muuttujan arvoa tulisi nostaa." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9515,7 +9549,7 @@ msgstr "" "säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta " "suorituskykyyn.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Hereillä olevien säikeiden määrä." @@ -9641,7 +9675,7 @@ msgstr "Palvelimen muuttujat ja asetukset" msgid "Session value" msgstr "Tämän istunnon arvo" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Globaali arvo" @@ -9955,9 +9989,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/fr.po b/po/fr.po index 9228b925ce..41595738d6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-15 17:03+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" @@ -48,7 +48,7 @@ msgstr "Rechercher" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "Nom de l'index" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Description" @@ -167,7 +167,7 @@ msgstr "Type" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -196,7 +196,7 @@ msgstr "Relié à" msgid "Comments" msgstr "Commentaires" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -212,7 +212,7 @@ msgstr "Commentaires" msgid "No" msgstr "Non" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -272,7 +272,7 @@ msgstr "La base de données %s a été copiée sur %s" msgid "Rename database to" msgstr "Changer le nom de la base de données pour" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Commande" @@ -374,7 +374,7 @@ msgstr "Lignes" msgid "Size" msgstr "Taille" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "utilisé" @@ -400,7 +400,7 @@ msgstr "Dernière modification" msgid "Last check" msgstr "Dernière vérification" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -583,63 +583,63 @@ msgstr "Dans la(les) table(s) :" msgid "Inside column:" msgstr "Dans la colonne : " -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Aucune table n'a été trouvée dans cette base." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "La table %s a été vidée" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "La vue %s a été supprimée" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "La table %s a été effacée" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Le suivi est actif." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Le suivi n'est pas activé." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %" -"sdocumentation%s." +"Cette vue contient au moins ce nombre de lignes. Veuillez référer à " +"%sdocumentation%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Vue" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Réplication" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Somme" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -647,23 +647,23 @@ msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s." msgid "With selected:" msgstr "Pour la sélection :" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Tout cocher" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Tout décocher" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -671,54 +671,54 @@ msgstr "Cocher tables avec pertes" msgid "Export" msgstr "Exporter" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Version imprimable" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Vider" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Supprimer" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Vérifier la table" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimiser la table" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Réparer la table" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analyser la table" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Ajouter un préfixe à la table" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Remplacer le préfixe de table" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Copier la table avec un préfixe" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dictionnaire de données" @@ -733,7 +733,7 @@ msgstr "Tables faisant l'objet d'un suivi" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -751,7 +751,7 @@ msgstr "Créé" msgid "Updated" msgstr "Mis à jour" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "État" @@ -853,8 +853,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Vous avez probablement tenté de télécharger un fichier trop volumineux. " "Veuillez vous référer à la %sdocumentation%s pour des façons de contourner " @@ -1018,7 +1018,6 @@ msgstr "Ce n'est pas un nombre !" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#| msgid "Log file count" msgid "Total count" msgstr "Nombre total" @@ -1056,145 +1055,7 @@ msgstr "Effacement des utilisateurs sélectionnés" msgid "Close" msgstr "Fermer" -#: js/messages.php:64 server_status.php:397 -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Graphique du trafic en temps réel" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "Graphique des connexions et processus en temps réel" - -#: js/messages.php:66 server_status.php:429 -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Graphique des requêtes en temps réel" - -#: js/messages.php:68 -msgid "Static data" -msgstr "Données statiques" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Total" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "Autres" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "  " - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Annuler" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Chargement en cours" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Requête en traitement" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Erreur dans le traitement de la requête" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Suppression de la colonne" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Ajout de clé primaire" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Changement de nom de la base de données" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Rafraîchir la base de données" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Copie de la base de données" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Changement du jeu de caractères" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "La table doit comporter au moins une colonne." - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Nouvelle table" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "Insérer dans la table" - -#: js/messages.php:104 -msgid "Searching" -msgstr "En recherche" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Cacher les résultats de recherche" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Afficher les résultats de recherche" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Affichage en cours" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Destruction en cours" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "Note : si le fichier contient plusieurs tables, elles seront combinées" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Cacher zone SQL" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Montrer zone SQL" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Éditer en place" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1203,7 +1064,185 @@ msgstr "Éditer en place" msgid "Edit" msgstr "Modifier" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "Graphique du trafic en temps réel" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "Graphique des connexions et processus en temps réel" + +#: js/messages.php:68 server_status.php:443 +msgid "Live query chart" +msgstr "Graphique des requêtes en temps réel" + +#: js/messages.php:70 +msgid "Static data" +msgstr "Données statiques" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "Autres" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "  " + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server traffic" +msgid "Server traffic (in kB)" +msgstr "Trafic du serveur" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Processus" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Connexions" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "Requêtes SQL" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Statistiques sur les requêtes" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Annuler" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Chargement en cours" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Requête en traitement" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Erreur dans le traitement de la requête" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Suppression de la colonne" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Ajout de clé primaire" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Changement de nom de la base de données" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Rafraîchir la base de données" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Copie de la base de données" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Changement du jeu de caractères" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "La table doit comporter au moins une colonne." + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Nouvelle table" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "Insérer dans la table" + +#: js/messages.php:117 +msgid "Searching" +msgstr "En recherche" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Cacher les résultats de recherche" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Afficher les résultats de recherche" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Affichage en cours" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Destruction en cours" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "Note : si le fichier contient plusieurs tables, elles seront combinées" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Cacher zone SQL" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Montrer zone SQL" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Éditer en place" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1211,41 +1250,41 @@ msgstr "Modifier" msgid "Save" msgstr "Sauvegarder" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Cacher" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Cacher les critères de recherche" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Afficher les critères de recherche" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Sélectionnez la clé référencée" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Choisissez la clé étrangère" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Veuillez choisir la clé primaire ou un index unique" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Colonne descriptive" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1253,27 +1292,27 @@ msgstr "" "Vous n'avez pas sauvegardé les changements. Ils seront perdus si vous ne les " "sauvegardez pas. Voulez-vous continuer?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Ajouter une option pour la colonne" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Générer un mot de passe" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Générer" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Modifier le mot de passe" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "plus" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1283,26 +1322,26 @@ msgstr "" "une mise à niveau. La version la plus récente est %s, publiée le %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", dernière version stable :" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "à jour" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Fermer" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Précédent" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1310,231 +1349,231 @@ msgid "Next" msgstr "Suivant" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Aujourd'hui" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Janvier" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Février" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Mars" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Avril" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mai" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Juin" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Juillet" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Août" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Septembre" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Octobre" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Novembre" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Décembre" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Dimanche" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Lundi" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Mardi" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Mercredi" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Jeudi" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Vendredi" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sam" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Je" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Sem" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Heure" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minute" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Seconde" @@ -1766,8 +1805,8 @@ msgstr "Bienvenue sur %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La raison probable est que vous n'avez pas créé de fichier de configuration. " "Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but." @@ -1911,7 +1950,7 @@ msgstr "partagé" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tables" @@ -2047,7 +2086,7 @@ msgid "Documentation" msgstr "Documentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "Requête SQL" @@ -2076,7 +2115,7 @@ msgid "Create PHP Code" msgstr "Créer source PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Actualiser" @@ -4802,8 +4841,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc " "utiliser des chaînes de format d'heure. Ces transformations additionnelles " @@ -4825,7 +4864,7 @@ msgstr "Compression:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Aucune" @@ -4960,7 +4999,6 @@ msgid "Language" msgstr "Langue" #: libraries/display_tbl.lib.php:397 -#| msgid "Textarea columns" msgid "Restore column order" msgstr "Restaurer l'ordre des colonnes" @@ -4969,7 +5007,6 @@ msgid "Drag to reorder" msgstr "Faire glisser pour réordonner" #: libraries/display_tbl.lib.php:412 -#| msgid "Click to select" msgid "Click to sort" msgstr "Cliquer pour trier" @@ -5063,7 +5100,7 @@ msgid "The row has been deleted" msgstr "La ligne a été effacée" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Supprimer" @@ -5153,7 +5190,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Mémoire-tampon" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "État InnoDB" @@ -5563,8 +5600,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "La documentation de PBXT et des informations additionnelles sont disponibles " "sur %sle site de PrimeBase XT%s." @@ -5665,7 +5702,7 @@ msgstr "Afficher les types MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Client" @@ -5714,7 +5751,8 @@ msgstr "" #: libraries/export/sql.php:42 msgid "Additional custom header comment (\\n splits lines):" -msgstr "Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :" +msgstr "" +"Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :" #: libraries/export/sql.php:47 msgid "" @@ -6390,13 +6428,13 @@ msgid "Slave status" msgstr "État de l'esclave" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valeur" @@ -6625,12 +6663,12 @@ msgid "Synchronize" msgstr "Synchroniser" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Log binaire" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variables" @@ -6788,8 +6826,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions " -"PHP nécessaires ont bien été installées tel que décrit dans la %" -"sdocumentation%s." +"PHP nécessaires ont bien été installées tel que décrit dans la " +"%sdocumentation%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -6913,7 +6951,7 @@ msgstr "Définition de PARTITION" msgid "+ Add a new value" msgstr "+ Ajouter une valeur" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Durée" @@ -7115,7 +7153,7 @@ msgid "Protocol version" msgstr "Version du protocole" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Utilisateur" @@ -7570,17 +7608,17 @@ msgstr "Le fichier n'existe pas" msgid "Select binary log to view" msgstr "Sélectionnez le log binaire à consulter" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Fichiers" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Afficher les requêtes tronquées" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Afficher les requêtes complètes" @@ -7988,8 +8026,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin obtient la liste des privilèges directement à partir des " "tables MySQL. Le contenu de ces tables peut être différent des privilèges " @@ -8120,7 +8158,7 @@ msgstr "Le serveur maître est maintenant %s" msgid "This server is configured as master in a replication process." msgstr "Ce serveur est un serveur maître dans le processus de réplication." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Montrer l'état du maître" @@ -8271,169 +8309,156 @@ msgstr "" "Ce serveur n'est pas configuré comme esclave dans un processus de " "réplication. Désirez-vous le configurer ?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Le processus %s a été éliminé." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin n'a pu éliminer le processus %s. Il était probablement déjà fermé." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Gestionnaire" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Cache des requêtes" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Fils d'exécution" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Données temporaires" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Insertions avec délais" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Cache des clés" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Jointures" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Mécanisme de tri" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Coordonnateur des transactions" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Fermer toutes les tables" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Montrer les tables ouvertes" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Montrer les serveurs esclaves" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Montrer l'état des serveurs esclaves" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Vider la cache des requêtes" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Informations sur le serveur" -#: server_status.php:371 -#| msgid "Server Choice" +#: server_status.php:385 msgid "Server traffic" msgstr "Trafic du serveur" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Statistiques sur les requêtes" - -#: server_status.php:373 -#| msgid "See slave status table" +#: server_status.php:387 msgid "All status variables" msgstr "Toutes les variables d'état" -#: server_status.php:383 server_status.php:416 -#| msgid "Refresh" +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "Taux de rafraîchissement" -#: server_status.php:384 server_status.php:417 -#| msgid "Second" +#: server_status.php:398 server_status.php:431 msgid "second" msgstr "seconde" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 -#| msgid "Second" +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 msgid "seconds" msgstr "secondes" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 -#| msgid "Minute" +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 msgid "minutes" msgstr "minutes" -#: server_status.php:446 -#| msgid "Do not change the password" +#: server_status.php:460 msgid "Containing the word:" msgstr "Contenant le mot :" -#: server_status.php:451 -#| msgid "Show open tables" +#: server_status.php:465 msgid "Show only alert values" msgstr "Afficher uniquement les valeurs d'alerte" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "Filtrer par catégorie..." -#: server_status.php:468 -#| msgid "Related Links" +#: server_status.php:482 msgid "Related links:" msgstr "Liens connexes:" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "par heure" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "par minute" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "par seconde" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Type de requête" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "#" -#: server_status.php:615 +#: server_status.php:623 #, php-format msgid "Network traffic since startup: %s" msgstr "Trafic réseau depuis le démarrage : %s" -#: server_status.php:623 +#: server_status.php:631 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ce serveur MySQL fonctionne depuis %s. Il a démarré le %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8441,19 +8466,19 @@ msgstr "" "Ce serveur est un serveur maître et esclave dans le processus " "de réplication." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Ce serveur est un serveur maître dans le processus de réplication." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Ce serveur est un serveur esclave dans le processus de " "réplication." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8461,15 +8486,15 @@ msgstr "" "Pour plus d'information sur l'état de la réplication sur ce serveur, " "consultez la section de réplication." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "État de la réplication" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Trafic" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8478,44 +8503,39 @@ msgstr "" "dépassée, auquel cas les statistiques rapportées par MySQL peuvent être " "inexactes." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Reçu" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Envoyé" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Connexions" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "max. de connexions simultanées" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Tentatives échouées" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Arrêts prématurés" -#: server_status.php:784 -msgid "Processes" -msgstr "Processus" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 -#| msgid "Whether to enable SSL for connection to MySQL server." +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Le nombre de tentatives de connexion au serveur MySQL infructueuses." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8525,18 +8545,18 @@ msgstr "" "mais qui ont excédé la valeur de binlog_cache_size et ont utilisé un fichier " "temporaire pour stocker les énoncés de la transaction." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Le nombre de transactions qui ont utilisé la cache temporaire du log binaire." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Le nombre de tentatives de connexion (réussies ou non) au serveur MySQL." -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8549,11 +8569,11 @@ msgstr "" "tmp_table_size afin que les tables temporaires soient maintenues en mémoire " "au lieu d'être sur disque." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Le nombre de fichiers temporaires créés par mysqld." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8561,7 +8581,7 @@ msgstr "" "Le nombre de tables temporaires en mémoire créées automatiquement par le " "serveur lors de l'exécution d'énoncés." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8569,7 +8589,7 @@ msgstr "" "Le nombre de lignes écrites avec INSERT DELAYED pour lesquels une erreur est " "survenue (probablement un doublon sur la clé)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8577,23 +8597,23 @@ msgstr "" "Le nombre de fils d'exécution utilisés pour INSERT DELAYED. Un fil est " "utilisé pour chacune des tables sur lesquelles un INSERT DELAYED a lieu." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Le nombre de lignes écrites via INSERT DELAYED." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Le nombre de commandes FLUSH exécutées." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Le nombre de commandes COMMIT internes." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Le nombre de fois qu'une ligne a été supprimée d'une table." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8603,7 +8623,7 @@ msgstr "" "une table portant un certain nom. Ceci est appelé "découverte". Ce " "paramètre indique le nombre de fois que des tables ont été découvertes." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8614,7 +8634,7 @@ msgstr "" "d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une " "colonne indexée." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8622,7 +8642,7 @@ msgstr "" "Le nombre de requêtes pour lire une ligne via une clé. Si élevé, c'est une " "bonne indication que vos tables sont correctement indexées." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8632,7 +8652,7 @@ msgstr "" "Ceci est augmenté si vous interrogez une colonne indexée avec un critère de " "fourchette ou si vous parcourez l'index." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8640,7 +8660,7 @@ msgstr "" "Le nombre de requêtes de lecture de la ligne précédente, en ordre de clé. " "Utilisé surtout pour optimiser ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8653,7 +8673,7 @@ msgstr "" "demandent à MySQL de parcourir des tables en entier, ou vous avez des " "jointures qui n'utilisent pas correctement les clés." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8665,35 +8685,35 @@ msgstr "" "tables ne sont pas correctement indexées ou que vos requêtes ne sont pas " "écrites de façon à tirer parti des index que vous avez définis." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Le nombre d'énoncés ROLLBACK internes." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Le nombre de requêtes de mise à jour de lignes dans une table." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Le nombre de requêtes d'insertion de lignes dans une table." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Le nombre de pages contenant des données." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Le nombre de pages contenant des données «dirty»." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Le nombre de pages de mémoire-tampon qui ont été effacées." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Le nombre de pages libres." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8703,7 +8723,7 @@ msgstr "" "train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une " "autre raison." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8715,11 +8735,11 @@ msgstr "" "comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Taille totale de la réserve, en pages." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8728,7 +8748,7 @@ msgstr "" "lorsqu'une requête doit balayer une large portion de table en ordre " "discontinu." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8736,11 +8756,11 @@ msgstr "" "Le nombre de lectures séquentielles effectuées par InnoDB. Ceci survient " "quand InnoDB fait un parcours séquentiel intégral de la table." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Le nombre de requêtes de lectures logiques effectuées par InnoDB." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8748,7 +8768,7 @@ msgstr "" "Le nombre de lectures que InnoDB n'a pu faire à partir de la réserve, menant " "à une lecture directe d'une page." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8762,51 +8782,51 @@ msgstr "" "Ceci compte le nombre de fois qu'une telle attente a été nécessaire. Si la " "taille de la réserve est adéquate, cette valeur devrait être petite." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Le nombre d'écritures faites dans la réserve InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Le nombre d'opérations fsync() faites jusqu'à présent." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Le nombre d'opérations fsync() actuellement en attente." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Le nombre actuel de lectures en attente." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Le nombre actuel d'écritures en attente." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "La quantité d'octets lus jusqu'à présent." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Le nombre total de lectures de données." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Le nombre total d'écritures de données." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "La quantité d'octets écrits jusqu'à présent." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "Le nombre de pages utilisées pour des opérations «doublewrite»." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "Le nombre d'opérations «doublewrite» effectuées." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8814,35 +8834,35 @@ msgstr "" "Le nombre d'attentes en raison d'un tampon du fichier témoin trop petit; il " "fallait attendre qu'il se libère avant de continuer." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Le nombre de requêtes d'écritures sur le fichier témoin." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Le nombre d'écritures physiques au fichier témoin." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Le nombre d'écritures fsync() sur le fichier témoin." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Le nombre d'écritures du fichier témoin en attente." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Le nombre d'octets écrits sur le fichier témoin." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Le nombre de pages créées." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8851,51 +8871,51 @@ msgstr "" "valeurs sont comptées par page; la taille de page leur permet d'être " "facilement converties en octets." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Le nombre de pages lues." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Le nombre de pages écrites." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Le nombre de verrous d'enregistrements actuellement en attente." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente moyen pour acquérir un verrou, en millisecondes." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Le temps total utilisé pour acquérir un verrou, en millisecondes." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente maximum pour acquérir un verrou, en millisecondes." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Le nombre de fois qu'on a dû attendre pour un verrou." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Le nombre de lignes supprimées des tables InnoDB." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Le nombre de lignes insérées dans des tables InnoDB." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Le nombre de lignes lues dans des tables InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Le nombre de lignes mises à jour dans des tables InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8904,7 +8924,7 @@ msgstr "" "pas encore transférés sur disque. Anciennement connu sous le nom " "Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8913,7 +8933,7 @@ msgstr "" "cette valeur pour déterminer la proportion de la cache de clés qui est " "utilisée." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8923,11 +8943,11 @@ msgstr "" "maximum du nombre de blocs qui ont été utilisés en même temps dans le cache " "de clés." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Le nombre de requêtes de lecture d'un bloc de clés depuis la cache." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8938,15 +8958,15 @@ msgstr "" "petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read " "requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Le nombre de requêtes en vue d'écrire un bloc de clé dans la cache." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Le nombre d'écritures physiques d'un bloc de clés vers le disque." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8957,18 +8977,18 @@ msgstr "" "pour une même requête. La valeur de 0 indique qu'aucune requête n'a encore " "été compilée." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" "Le nombre maximum de connexions simultanées depuis le démarrage du serveur." -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Le nombre de lignes en attente d'écriture (INSERT DELAYED)." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8976,41 +8996,41 @@ msgstr "" "Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table " "est probablement trop petite." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Le nombre de fichiers qui sont ouverts." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "Le nombre de flux de données qui sont ouverts." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Le nombre de tables qui sont ouvertes." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" "Le nombre de blocs mémoire libres dans la cache de requêtes. Un nombre élevé " -"peut indiquer des problèmes de fragmentation, qui peuvent être réglés par " -"la commande FLUSH QUERY CACHE." +"peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la " +"commande FLUSH QUERY CACHE." -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "La quantité de mémoire libre dans la cache de requêtes." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Le nombre de succès dans la cache." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Le nombre de requêtes ajoutées à la cache." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9022,7 +9042,7 @@ msgstr "" "afin de peaufiner la taille de la cache. La stratégie utilisée pour " "déterminer quelles requêtes seront retirées est LRU (least recently used)." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9030,19 +9050,19 @@ msgstr "" "Le nombre de requêtes non en cache (impossible à placer en cache, ou non " "cachée en raison du paramètre query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Le nombre de requêtes enregistrées dans la cache." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Le nombre total de blocs dans la cache de requêtes." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'état de la réplication sans échec (pas encore implantée)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9050,13 +9070,13 @@ msgstr "" "Le nombre de jointures qui n'ont pas utilisé d'index. Si cette valeur est " "supérieure à 0, vérifiez soigneusement les indexes de vos tables." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Le nombre de jointures qui ont utilisé une recherche par plage sur une table " "de référence." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9065,7 +9085,7 @@ msgstr "" "ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos " "tables.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9073,19 +9093,19 @@ msgstr "" "Le nombre de jointures qui ont utilisé des plages sur la première table. " "(Normalement non critique même si cette valeur est élevée.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" "Le nombre de jointures qui ont nécessité le parcours complet de la première " "table." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Le nombre de tables temporaires actuellement ouvertes par le fil d'exécution " "SQL de l'esclave." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9093,11 +9113,11 @@ msgstr "" "Nombre de fois (depuis le démarrage) que le fil d'exécution SQL de l'esclave " "a envoyé à nouveau des transactions." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ceci est à ON si ce serveur est un esclave connecté à un maître." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9105,14 +9125,14 @@ msgstr "" "Le nombre de fils d'exécution dont le temps de création a excédé " "slow_launch_time secondes." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Le nombre de requêtes dont le temps d'exécution a excédé long_query_time " "secondes." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9121,23 +9141,23 @@ msgstr "" "Le nombre d'opérations de fusion effectuées par l'algorithme de tri. Si ce " "nombre est élevé, augmentez la valeur du paramètre sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Le nombre de tri effectués avec des plages." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Le nombre de lignes triées." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Le nombre de tri effectués via un parcours de la table." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Le nombre de fois qu'un verrou de table a été acquis immédiatement." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9149,7 +9169,7 @@ msgstr "" "des problèmes de performance, commencez par optimiser vos requêtes, puis " "subdivisez vos tables ou encore utiliser la réplication." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9159,11 +9179,11 @@ msgstr "" "calculé via Nombre de fils / connexion. Si cette valeur est en rouge, vous " "devriez augmenter la taille de cette cache." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Le nombre de connexions ouvertes actuellement." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9176,7 +9196,7 @@ msgstr "" "perceptible de la performance si votre serveur gère correctement les fils " "d'exécution.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Le nombre de fils d'exécution non suspendus." @@ -9299,7 +9319,7 @@ msgstr "Variables et paramètres du serveur" msgid "Session value" msgstr "Valeur pour la session" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Valeur globale" @@ -9479,8 +9499,8 @@ msgid "" msgstr "" "Cette %soption%s ne devrait pas être activée car elle permet à un attaquant " "de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez " -"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%" -"s." +"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance" +"%s." #: setup/lib/index.lib.php:252 msgid "" @@ -9532,8 +9552,8 @@ msgid "" msgstr "" "Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 " "secondes peut causer des interruptions de la session de travail si le " -"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %" -"d)." +"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement " +"%d)." #: setup/lib/index.lib.php:262 #, php-format @@ -9552,8 +9572,8 @@ msgid "" "cookie validity%s must be set to a value less or equal to it." msgstr "" "Si vous utilisez l'authentification cookie et que le paramètre %sLogin " -"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%" -"s doit avoir une valeur plus petite ou égale à celui-ci." +"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity" +"%s doit avoir une valeur plus petite ou égale à celui-ci." #: setup/lib/index.lib.php:266 #, php-format @@ -9563,8 +9583,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %" -"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " +"Si vous l'estimez nécessaire, utilisez des paramètres de protection - " +"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " "Cependant, la protection par adresse IP peut ne pas être fiable si votre IP " "appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y " "compris, sont connectés." @@ -9740,7 +9760,6 @@ msgid "Line" msgstr "Ligne" #: tbl_chart.php:88 -#| msgid "Inline" msgid "Spline" msgstr "Spline" @@ -9753,7 +9772,6 @@ msgid "Stacked" msgstr "En piles" #: tbl_chart.php:94 -#| msgid "Report title:" msgid "Chart title" msgstr "Titre du graphique" @@ -9762,32 +9780,26 @@ msgid "X-Axis:" msgstr "Axe des X" #: tbl_chart.php:113 -#| msgid "SQL queries" msgid "Series:" msgstr "Séries:" #: tbl_chart.php:115 -#| msgid "Textarea columns" msgid "The remaining columns" msgstr "Les colonnes restantes" #: tbl_chart.php:128 -#| msgid "X Axis label" msgid "X-Axis label:" msgstr "Étiquette pour l'axe des X" #: tbl_chart.php:128 -#| msgid "Value" msgid "X Values" msgstr "Valeurs en X" #: tbl_chart.php:129 -#| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Étiquette pour l'axe des Y" #: tbl_chart.php:129 -#| msgid "Value" msgid "Y Values" msgstr "Valeurs en Y" diff --git a/po/gl.po b/po/gl.po index 275734e5ba..fbe92b6fba 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -48,7 +48,7 @@ msgstr "Procurar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "Nome chave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Descrición" @@ -169,7 +169,7 @@ msgstr "Tipo" msgid "Null" msgstr "Nulo" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -198,7 +198,7 @@ msgstr "Vincúlase con" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -214,7 +214,7 @@ msgstr "Comentarios" msgid "No" msgstr "Non" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -274,7 +274,7 @@ msgstr "Copiuse a base de datos %s para %s" msgid "Rename database to" msgstr "Mudar o nome da base de datos para" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Orde" @@ -385,7 +385,7 @@ msgstr "Fileiras" msgid "Size" msgstr "Tamaño" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "en uso" @@ -411,7 +411,7 @@ msgstr "Actualización máis recente" msgid "Last check" msgstr "Comprobación máis recente" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -604,65 +604,65 @@ msgstr "Dentro da(s) táboa(s):" msgid "Inside column:" msgstr "No campo:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Non se achou ningunha táboa na base de datos" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Vaciouse a táboa %s" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Deixouse a vista %s" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Eliminouse a táboa %s" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "O seguemento está activado." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "O seguemento non está activado." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%" -"s." +"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" +"%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Vista" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replicación" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Suma" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -670,23 +670,23 @@ msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL." msgid "With selected:" msgstr "Todos os marcados" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Marcalos todos" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Quitarlles as marcas a todos" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Exceso na comprobación" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -694,60 +694,60 @@ msgstr "Exceso na comprobación" msgid "Export" msgstr "Exportar" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Visualización previa da impresión" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Borrar" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Eliminar" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Verificar a táboa" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimizar a táboa" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Reparar a táboa" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analizar a táboa" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Ir á táboa" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Substituír os datos da táboa polos do ficheiro" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Substituír os datos da táboa polos do ficheiro" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dicionario de datos" @@ -762,7 +762,7 @@ msgstr "Táboas seguidas" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -780,7 +780,7 @@ msgstr "Creada" msgid "Updated" msgstr "Actualizada" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Estado" @@ -880,11 +880,11 @@ msgstr "Gardouse o volcado no ficheiro %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %" -"sdocumentación%s para averiguar como evitar este límite." +"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " +"%sdocumentación%s para averiguar como evitar este límite." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1092,181 +1092,7 @@ msgstr "Eliminar os usuarios seleccionados" msgid "Close" msgstr "Fechar" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Escolla de servidor" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "SQL Query box" -msgid "Live query chart" -msgstr "Caixa de Procuras SQL" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Total" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Cancelar" - -#: js/messages.php:83 -#, fuzzy -#| msgid "Load" -msgid "Loading" -msgstr "Cargar" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Procesos" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "Conforme" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Mudar o nome da base de datos para" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Mudar o nome da base de datos para" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Copiar a base de datos para" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Conxunto de caracteres" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "A táboa ha de ter, polo menos, un campo." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Crear táboas" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Usar as táboas" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Procurar" - -#: js/messages.php:105 -#, fuzzy -#| msgid "SQL Query box" -msgid "Hide search results" -msgstr "Caixa de Procuras SQL" - -#: js/messages.php:106 -#, fuzzy -#| msgid "SQL Query box" -msgid "Show search results" -msgstr "Caixa de Procuras SQL" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Visualizar" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "A eliminar %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -#| msgid "SQL Query box" -msgid "Hide query box" -msgstr "Caixa de Procuras SQL" - -#: js/messages.php:115 -#, fuzzy -#| msgid "SQL Query box" -msgid "Show query box" -msgstr "Caixa de Procuras SQL" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Motores" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1275,7 +1101,225 @@ msgstr "Motores" msgid "Edit" msgstr "Modificar" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Escolla de servidor" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "SQL Query box" +msgid "Live query chart" +msgstr "Caixa de Procuras SQL" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Escolla de servidor" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Procesos" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Conexións" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "Solicitudes SQL" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "Mostrar as estatísticas" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Cancelar" + +#: js/messages.php:96 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Cargar" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesos" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "Conforme" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Mudar o nome da base de datos para" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Mudar o nome da base de datos para" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Copiar a base de datos para" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Conxunto de caracteres" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "A táboa ha de ter, polo menos, un campo." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Crear táboas" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Usar as táboas" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Procurar" + +#: js/messages.php:118 +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide search results" +msgstr "Caixa de Procuras SQL" + +#: js/messages.php:119 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show search results" +msgstr "Caixa de Procuras SQL" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Visualizar" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "A eliminar %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "Caixa de Procuras SQL" + +#: js/messages.php:128 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "Caixa de Procuras SQL" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Motores" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1283,79 +1327,79 @@ msgstr "Modificar" msgid "Save" msgstr "Gardar" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Agochar" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "Caixa de Procuras SQL" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "Caixa de Procuras SQL" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Seleccionar a chave referida" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Escoller unha chave externa" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Escolla a chave primaria ou unha chave única" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolla o campo que quere que se mostre" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Xerar un contrasinal" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Xerar" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Trocar o contrasinal" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Lu" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1365,34 +1409,34 @@ msgstr "" "actualizala. A versión máis recente é %s, publicada o %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Comprobar cal é a última versión" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ir á base de datos" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Doar" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1400,96 +1444,96 @@ msgid "Next" msgstr "Seguinte" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binario " -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Maio" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Xuño" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Xullo" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Out" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1497,178 +1541,178 @@ msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dec" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Do" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Lu" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ma" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ve" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sá" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mé" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Xo" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sá" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "en uso" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1909,8 +1953,8 @@ msgstr "Reciba a benvida a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Isto débese, posibelmente, a que non se creou un ficheiro de configuración. " "Tal vez queira utilizar %1$ssetup script%2$s para crear un." @@ -2061,7 +2105,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Táboas" @@ -2202,7 +2246,7 @@ msgid "Documentation" msgstr "Documentación" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "orde SQL" @@ -2233,7 +2277,7 @@ msgid "Create PHP Code" msgstr "Crear código PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Refrescar" @@ -5150,8 +5194,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode " "utilizar cadeas de formato de hora. Produciranse transformacións en " @@ -5174,7 +5218,7 @@ msgstr "Compresión" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Ningunha" @@ -5444,7 +5488,7 @@ msgid "The row has been deleted" msgstr "Eliminouse o rexistro" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Matar (kill)" @@ -5540,7 +5584,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Estado de InnoDB" @@ -5938,8 +5982,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6064,7 +6108,7 @@ msgstr "Tipos MIME dispoñíbeis" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Servidor" @@ -6778,13 +6822,13 @@ msgid "Slave status" msgstr "Estado do escravo" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variábel" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -7031,12 +7075,12 @@ msgid "Synchronize" msgstr "Sincronizar" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Ficheiro de rexistro binario" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variábeis" @@ -7335,7 +7379,7 @@ msgstr "Definición da PARTICIÓN" msgid "+ Add a new value" msgstr "Engadir un servidor novo" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Tempo" @@ -7580,7 +7624,7 @@ msgid "Protocol version" msgstr "Versión do protocolo" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Usuario" @@ -7739,8 +7783,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %" -"sdocumentation%s." +"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na " +"%sdocumentation%s." #: navigation.php:207 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -8084,17 +8128,17 @@ msgstr "Non existe a táboa \"%s\"." msgid "Select binary log to view" msgstr "Seleccione o ficheiro de rexistro binario que queira ver" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Ficheiros" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Interrumpir as procuras mostradas" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Mostrar as procuras completas" @@ -8490,8 +8534,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas " "de privilexios do MySQL. O contido destas táboas pode diferir dos " @@ -8628,7 +8672,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Mostrar o estado do principal" @@ -8788,180 +8832,174 @@ msgstr "" "Este servidor non está configurado como escravo nun proceso de replicación. " "Desexa configuralo?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Finalizouse o fío %s." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin foi incapaz de finalizar o fío %s. Probablemente xa estea fechado." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Manipulador" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "caché de procuras" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Fíos" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Datos temporais" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Insercións demoradas" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "caché da chave" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Unións" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Ordenación" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Coordinador da transacción" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Limpar (fechar) todas as táboas" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Mostrar as táboas abertas" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Mostrar os servidores escravos" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Mostrar o estado dos escravos" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Limpar a caché da pesquisa" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Información sobre o tempo de execución" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Escolla de servidor" -#: server_status.php:372 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "Mostrar as estatísticas" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Ver a táboa de estado do escravo" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Refrescar" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "por segundo" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "por segundo" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "en uso" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Non mude o contrasinal" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Mostrar as táboas abertas" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacións" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "por hora" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "por minuto" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "por segundo" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Tipo de procura" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Este servidor de MySQL leva funcionando %s. Iniciouse às %s." -#: server_status.php:633 +#: server_status.php:641 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -8970,21 +9008,21 @@ msgid "" msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_status.php:635 +#: server_status.php:643 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_status.php:637 +#: server_status.php:645 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_status.php:639 +#: server_status.php:647 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -8998,15 +9036,15 @@ msgstr "" "b>. Para máis información acerca do estado de replicación do servidor visite " "a sección sobre replicación." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Estado da replicación" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Tráfico" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9015,45 +9053,41 @@ msgstr "" "que esas estatísticas, tal e como as transmite o servidor de MySQL, poden " "resultar incorrectas." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Recibido" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Enviado" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Conexións" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "conexións simultáneas máximas" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Tentativas falidas" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Cancelado" -#: server_status.php:784 -msgid "Processes" -msgstr "Procesos" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "Identificador" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Non se puido conectar co servidor de MySQL" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -9063,16 +9097,16 @@ msgstr "" "excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal " "para almacenar instrucións para a transacción." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Número de transaccións que utilizaron o caché do rexistro binario." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9084,11 +9118,11 @@ msgstr "" "incremente o valor de tmp_table_size para que as táboas temporais se baseen " "na memoria en vez de no disco." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Número de ficheiros temporais creados por mysqld." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9096,7 +9130,7 @@ msgstr "" "Número de táboas temporais na memoria creadas automaticamente polo servidor " "ao executar instrucións." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9104,7 +9138,7 @@ msgstr "" "Número de fileiras escritas con INSERT DELAYED que sofriron algún erro " "(probabelmente unha chave duplicada)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9112,23 +9146,23 @@ msgstr "" "Número de fíos de manipulación INSERT DELAYED en uso. Cada táboa diferente " "na que se utiliza INSERT DELAYED recibe o seu propio fío." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Número de fileiras INSERT DELAYED escritas." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Número de instrucións FLUSH executadas." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Número de instrucións COMMIT internas." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Número de veces que se eliminou unha fileira dunha táboa." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -9138,7 +9172,7 @@ msgstr "" "se sabe dunha táboa cun nome dado. Isto chámase descuberta. " "Handler_discovery indica o número de veces que se descobriron táboas." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -9149,7 +9183,7 @@ msgstr "" "completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " "indexada." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -9157,7 +9191,7 @@ msgstr "" "Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, " "é unha boa indicación de que as procuras e táboas están ben indexadas." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -9167,7 +9201,7 @@ msgstr "" "increméntase se está a procurar unha columna de índice cunha limitación de " "intervalo ou se está a examinar un índice." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9175,7 +9209,7 @@ msgstr "" "Número de peticións para ler a fileira anterior na orde da chave. Este " "método de lectura utilízase sobre todo para optimizar ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9187,7 +9221,7 @@ msgstr "" "Posibelmente terá un monte de procuras que esixan que MySQL examine táboas " "completas ou ten unións que non usan as chaves axeitadamente." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9199,35 +9233,35 @@ msgstr "" "táboas non están indexadas axeitadamente ou que as súas procuras non están " "escritas para aproveitar os índices de que dispón." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Número de peticións para actualizar unha fileira nunha táboa." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Número de peticións para inserir un ficheiro nunha táboa." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Número de páxinas que conteñen datos (suxos ou limpos)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Número de páxinas actualmente suxas." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Número de páxinas do búfer que se pediu que se limpasen." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Número de páxinas libres." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -9237,7 +9271,7 @@ msgstr "" "actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " "algunha outra razón." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9249,11 +9283,11 @@ msgstr "" "se pode calcular así: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total do búfer, en páxinas." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -9262,7 +9296,7 @@ msgstr "" "cando unha procura vai examinar unha porción grande dunha táboa mais en orde " "aleatoria." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9270,11 +9304,11 @@ msgstr "" "Número de pre-lecturas secuenciais iniciadas por innoDB. Isto acontece cando " "InnoDB realiza un exame secuencial completo dunha táboa." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Número de peticións de lectura lóxicas feitas por InnoDB." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9282,7 +9316,7 @@ msgstr "" "Número de lecturas lóxicas que InnoDB non puido satisfacer do búfer e tivo " "que efectuar por medio de lecturas dunha única páxina." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9296,55 +9330,55 @@ msgstr "" "que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser " "pequeno." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Número de veces que se escribiu no búfer InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Número de operacións fsync() até o momento." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Número actual de operacións fsync() pendentes." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Número actual de lecturas pendentes." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Número actual de escritas pendentes." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Cantidade de datos lida até o momento, en bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Número total de lecturas de datos." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Número total de escritas de datos." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Cantidade de datos escrita até o momento, en bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9352,35 +9386,35 @@ msgstr "" "Número de esperas debidas a que o búfer do rexistro é demasiado pequeno e " "houbo que agardar até que se limpase para continuar." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Número de peticións de escrita no rexistro." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Número de escritas físicas no ficheiro de rexistro." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Número de escritas fsyncss feitas no ficheiro de rexistro." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Número de fsyncs do ficheiro de rexistro pendentes." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Escritas no ficheiro de rexistro pendentes." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Número de bytes escritos no ficheiro de rexistro." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Número de páxinas creadas." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9389,55 +9423,55 @@ msgstr "" "cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente " "en bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Número de páxinas lidas." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Número de páxinas escritas." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Número de bloqueo de fileiras polos que se está a agardar agora mesmo." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Tempo que, de media, leva adquirir un bloqueo sobre unha fileira, en " "milisegundos." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Tempo total empregado na adquisición de bloqueos sobre as fileiras, en " "milisegundos." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Tempo máximo en adquirir un bloqueo de fileira, en milisegundos." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Número de veces que houbo que agardar polo bloqueo dunha fileira." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Número de fileiras eliminadas das táboas InnoDB." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Número de fileiras inseridas nas táboas InnoDB." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Número de fileiras lidas das táboas InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Número de fileiras actualizadas en táboas InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9445,7 +9479,7 @@ msgstr "" "Número de bloques chave na caché de chaves que se mudaron mais que aínda non " "se limparon para o disco. Antes era Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9453,7 +9487,7 @@ msgstr "" "Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor " "para determinar canta caché de chave está en uso." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9463,11 +9497,11 @@ msgstr "" "referencia superior que indica o número máximo de bloques que se teñen " "empregado." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Número de peticións para ler un bloque chave da caché." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9477,15 +9511,15 @@ msgstr "" "grande, é que, posiblemente, o valor de key_fuffer_size é demasiado baixo. A " "relación de perdas da caché pódese calcular así: Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Número de peticións para escribir un bloque chave na caché." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Número de escritas físicas dun bloque chave no disco." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9496,19 +9530,19 @@ msgstr "" "procura diferentes para a mesma pesquisa. O valor por omisión é 0, que " "significa que aínda non se compilou ningunha procura." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Número de procuras que están a agardar para seren escritas nas fileiras " "INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9516,38 +9550,38 @@ msgstr "" "Número de táboas abertas en total. Se a cantidade é grande, o valor da caché " "de táboas posibelmente é demasiado pequeno." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Número de ficheiros abertos." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "Número de fluxos abertos (utilizado principalmente para o rexistro)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Número de táboas abertas." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Cantidade de memoria libre para a caché de procuras." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Número de impactos na caché." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Número de procuras adicionadas na caché." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9559,7 +9593,7 @@ msgstr "" "caché de procuras. A caché de procuras utiliza unha estratexia de utilizado " "menos recentemente (LRU) para decidir que procuras debe eliminar da caché." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9567,19 +9601,19 @@ msgstr "" "Número de procuras non enviadas á caché (que non se poden enviar debido á " "configuración de query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Número de procuras rexistradas na caché." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Número total de bloques na caché de procuras." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Estado da replicación en modo seguro (aínda non realizado)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9587,13 +9621,13 @@ msgstr "" "Número de unións que non utilizan índices. Se este valor non for 0, debería " "comprobar con atención os índices das táboas." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Número de unións que utilizaron un intervalo de procura nunha táboa de " "referencia." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9602,7 +9636,7 @@ msgstr "" "cada fileira (se non for 0, debería comprobar con atención os índices das " "táboas)." -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9610,15 +9644,15 @@ msgstr "" "Número de unións que utilizaron intervalos na primeira táboa (Normalmente " "non é grave, mesmo de ser grande)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Número de unións que realizaron un exame completo da primeira táboa." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Número de táboas temporais abertas actualmente polo fío SQL escravo." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9626,11 +9660,11 @@ msgstr "" "Número total de veces (desde o inicio) que o fío de replicación SQL escravo " "reintentou as transaccións." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Isto está ON se este servidor é un escravo conectado a un máster." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9638,14 +9672,14 @@ msgstr "" "Número de fíos aos que lles levou crearse máis segundos dos indicados en " "slow_launch_time." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Número de procuras ás que lles levou máis segundos dos indicados en " "long_query_time." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9655,23 +9689,23 @@ msgstr "" "este valor for grande, sería ben que considerase incrementar o valor da " "variábel de sistema sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Número de ordenacións feitas con intervalos." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Número de fileiras ordenadas." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Número de ordenacións realizadas examinando a táboa." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Número de veces que se adquiriu inmediatamente un bloqueo de táboa." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9683,7 +9717,7 @@ msgstr "" "debería en primeiro lugar mellorar as procuras e despois, ora partir a táboa " "ou táboas, ora utilizar replicación." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9693,11 +9727,11 @@ msgstr "" "calcular como Threads_created/Connections. Se este valor for vermello, " "debería aumentar a thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Número de conexións abertas neste momento." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9709,7 +9743,7 @@ msgstr "" "non fornece unha mellora notábel no desempeño se ten unha boa implementación " "de fíos.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Número de fíos que non están a durmir." @@ -9838,7 +9872,7 @@ msgstr "Variábeis e configuración do servidor" msgid "Session value" msgstr "Valor da sesión" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Valor global" @@ -10153,9 +10187,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/he.po b/po/he.po index 0401906acf..f927799524 100644 --- a/po/he.po +++ b/po/he.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -44,7 +44,7 @@ msgstr "חיפוש" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -81,7 +81,7 @@ msgstr "שמות מפתח" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "תיאור" @@ -163,7 +163,7 @@ msgstr "סוג" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -192,7 +192,7 @@ msgstr "קישורים אל" msgid "Comments" msgstr "הערות" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,7 +208,7 @@ msgstr "הערות" msgid "No" msgstr "לא" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -268,7 +268,7 @@ msgstr "מאגר נתונים %s הועתק אל %s" msgid "Rename database to" msgstr "שינוי שם מאגר נתונים אל" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "פקודה" @@ -377,7 +377,7 @@ msgstr "שורות" msgid "Size" msgstr "גודל" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "בשימוש" @@ -403,7 +403,7 @@ msgstr "עדכון אחרון" msgid "Last check" msgstr "נבדק לאחרונה" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -595,64 +595,64 @@ msgstr "בתוך הטבלה/הטבלאות:" msgid "Inside column:" msgstr "בתוך הטבלה/הטבלאות:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "לא נמצאו טבלאות במאגר נתונים." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "טבלה %s רוקנה" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "שדה %s נמחק" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "טבלה %s נמחקה" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 #, fuzzy msgid "Replication" msgstr "יחסים" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "סכום" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQL זה." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -660,23 +660,23 @@ msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQ msgid "With selected:" msgstr "עם הנבחרים:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "בחירת הכל" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "בטל סימון הכל" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "בדיקת טבלאות עבור תקורה" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -684,58 +684,58 @@ msgstr "בדיקת טבלאות עבור תקורה" msgid "Export" msgstr "ייצוא" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "תצוגת הדפסה" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "ריקון" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "הסרה" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "בדיקת טבלה" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "ייעול טבלה" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "תיקון טבלה" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "ניתוח טבלה" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "החלפת נתוני הטבלה עם הקובץ" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "החלפת נתוני הטבלה עם הקובץ" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "מילון מידע" @@ -750,7 +750,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -769,7 +769,7 @@ msgstr "יצירה" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "מצב" @@ -871,8 +871,8 @@ msgstr "הוצאה נשמרה אל קובץ %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1065,174 +1065,7 @@ msgstr "הסרת משתמשים שנבחרו" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "בחירת שרת" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "שאילתת SQL" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "סה\"כ" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "מקומי" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "תהליכים" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "אישור" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "שינוי שם מאגר נתונים אל" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "שינוי שם מאגר נתונים אל" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "העתקת מאגר נתונים אל" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "קידוד" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "טבלה חייבית להכיל לפחות שדה אחד." - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "יצירת עמוד חדש" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "השתמש בטבלאות" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "חיפוש" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "שאילתת SQL" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "שאילתת SQL" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "עיון" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "מוחק %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "שאילתת SQL" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "שאילתת SQL" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "מנועים" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1241,7 +1074,216 @@ msgstr "מנועים" msgid "Edit" msgstr "עריכה" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "בחירת שרת" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "שאילתת SQL" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "סה\"כ" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "בחירת שרת" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "תהליכים" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "חיבורים" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "שאילתת SQL" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "סטטיסטיקת שורה" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "מקומי" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "תהליכים" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "אישור" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "שינוי שם מאגר נתונים אל" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "שינוי שם מאגר נתונים אל" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "העתקת מאגר נתונים אל" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "קידוד" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "טבלה חייבית להכיל לפחות שדה אחד." + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "יצירת עמוד חדש" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "השתמש בטבלאות" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "חיפוש" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "שאילתת SQL" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "שאילתת SQL" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "עיון" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "מוחק %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "שאילתת SQL" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "שאילתת SQL" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "מנועים" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1249,77 +1291,77 @@ msgstr "עריכה" msgid "Save" msgstr "שמירה" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "שאילתת SQL" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "שאילתת SQL" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "התעלמות" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "בחירת שדה להצגה" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "ייצור סיסמא" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "ייצור" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "שינוי סיסמא" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "יום שני" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1327,31 +1369,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "אין מאגרי נתונים" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "ללא" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "הקודם" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1359,96 +1401,96 @@ msgid "Next" msgstr "הבא" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "סה\"כ" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "בינארי" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "מרץ" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "אפריל" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "מאי" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "יוני" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "יולי" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "אוגוסט" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "אוקטובר" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1456,176 +1498,176 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "דצמבר" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "יום ראשון" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "יום שני" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "יום שלישי" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "יום שישי" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "שבת" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "יום ראשון" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "יום שני" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "יום שלישי" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "יום רביעי" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "יום חמישי" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "יום שישי" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "שבת" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "בשימוש" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1854,8 +1896,8 @@ msgstr "ברוך הבא אל %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1994,7 +2036,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "טבלאות" @@ -2124,7 +2166,7 @@ msgid "Documentation" msgstr "תיעוד" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "שאילתת SQL" @@ -2153,7 +2195,7 @@ msgid "Create PHP Code" msgstr "ייצור קוד PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "רענון" @@ -4818,8 +4860,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4839,7 +4881,7 @@ msgstr "דחיסה" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "ללא" @@ -5087,7 +5129,7 @@ msgid "The row has been deleted" msgstr "השורה נמחקה" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "" @@ -5176,7 +5218,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "מצב InnoDB" @@ -5521,8 +5563,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5645,7 +5687,7 @@ msgstr "סוגי MIME זמינים" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "מארח" @@ -6344,13 +6386,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "משתנה" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "ערך" @@ -6590,12 +6632,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "דו\"ח בינארי" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "משתנים" @@ -6880,7 +6922,7 @@ msgstr "" msgid "+ Add a new value" msgstr "הוספת משתמש חדש" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "זמן" @@ -7042,7 +7084,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "משתמש" @@ -7506,18 +7548,18 @@ msgstr "הטבלה \"%s\" לא קיימת!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "שדות" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "הראה שאילתות שלמות" @@ -7912,8 +7954,8 @@ msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמ msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של " "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " @@ -8040,7 +8082,7 @@ msgstr "ההרשאות נטענו מחדש בהצלחה." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8179,264 +8221,255 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 #, fuzzy msgid "Query cache" msgstr "סוג שאילתה" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "השתמש בהכנסות מעוכבות" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "ראיית טבלאות" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "מידע זמן ריצה" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "בחירת שרת" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "סטטיסטיקת שורה" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "רענון" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "לשנייה" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "לשנייה" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "בשימוש" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "אל תשנה את הסיסמא" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "ראיית טבלאות" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "יחסים" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "לשעה" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "לדקה" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "לשנייה" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "סוג שאילתה" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "שרת MySQL פעיל במשך %s. הוא התחיל לפעול ב- %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Traffic" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "התקבל" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "נשלח" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "חיבורים" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "ניסיונות כושלים" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "בוטל" -#: server_status.php:784 -msgid "Processes" -msgstr "תהליכים" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "קוד זיהוי" -#: server_status.php:846 +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8444,78 +8477,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8523,7 +8556,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8531,42 +8564,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8574,33 +8607,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8609,227 +8642,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8837,99 +8870,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8937,18 +8970,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8956,7 +8989,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9079,7 +9112,7 @@ msgstr "משתני והגדרות שרת" msgid "Session value" msgstr "ערך זמן חיבור (Session)" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "ערך גלובלי" diff --git a/po/hi.po b/po/hi.po index b06996dcf8..89440261a8 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-05-06 09:13+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" +"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -46,7 +46,7 @@ msgstr "खोजें" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -83,7 +83,7 @@ msgstr "मुख्यनाम" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "वर्णन" @@ -165,7 +165,7 @@ msgstr "टाइप" msgid "Null" msgstr "अशक्त" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -194,7 +194,7 @@ msgstr "के लिए लिंक" msgid "Comments" msgstr "टिप्पणी" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,7 +210,7 @@ msgstr "टिप्पणी" msgid "No" msgstr "नहीं" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -270,7 +270,7 @@ msgstr " डेटाबेस %s से %s में कॉपी किया msgid "Rename database to" msgstr "डेटाबेस का नाम बदल कर ____ रखें" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "आदेश" @@ -343,8 +343,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %" -"shere%s पर क्लिक करें." +"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए " +"%shere%s पर क्लिक करें." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -372,7 +372,7 @@ msgstr "रो" msgid "Size" msgstr "आकार" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "उपयोग में" @@ -398,7 +398,7 @@ msgstr "पिछला नवीनीकरण" msgid "Last check" msgstr "पिछली जाँच" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -581,61 +581,61 @@ msgstr " टेबल में:" msgid "Inside column:" msgstr "काँलम के अंदर:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "डाटाबेस में कोई टेबल नहीं।" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr " टेबल %s को खाली किया गया है." -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "द्रश्य %s रद्द दिया गया है." -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr " टेबल %s को रद्द किया गया है." -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "ट्रैकिंग सक्रिय है" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "ट्रैकिंग सक्रिय नहीं है." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "दृश्य" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "प्रतिकृति" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "जोड" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भंडारण इंजन है." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -643,23 +643,23 @@ msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भं msgid "With selected:" msgstr "चुने हुओं को:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "सभी को चेक करें" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr " सभी को अनचेक करें" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr " ओवर्हेअद वाली तालुकाओं को चेक करें." -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -667,60 +667,60 @@ msgstr " ओवर्हेअद वाली तालुकाओं को msgid "Export" msgstr "निर्यात" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "छापने वाला द्रश्य." -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "खाली करें" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "छोड़ें" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr " टेबल को चेक करें" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "टेबल को अनुकूलित करें" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "टेबल को टीक करें" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "टेबल का विश्लेषण करें" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "टेबल पर जायें" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "फाइल, टेबल डेटा की जगह" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "फाइल, टेबल डेटा की जगह" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "डेटा शब्दकोश" @@ -735,7 +735,7 @@ msgstr "ट्रैक की गयी टेबलएं" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -753,7 +753,7 @@ msgstr "बनाया" msgid "Updated" msgstr "अद्यतन" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "स्थिति" @@ -852,8 +852,8 @@ msgstr "डंप को %s फाइल में सेव किया गय #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s " "दोकुमेंताशन%s पढ़ें." @@ -1052,157 +1052,7 @@ msgstr "चयनित यूसर को हटायें" msgid "Close" msgstr "बंद" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "सर्वर चुनिये" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "क्वरी चार्ट शो" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "कुल" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "रद्द" - -#: js/messages.php:83 -msgid "Loading" -msgstr "लोड हो रहा है" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "याचिका प्रसंस्करण" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "याचिका प्रसंस्करणमें त्रुटि" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "काँलम गिराना" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "प्राथमिक कुंजी जोड़" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "ठीक है" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "डेटाबेस का नाम बदल कर ____ रखें" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "डेटाबेस पुनः लोड" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "डेटाबेस को ______ में कॉपी करें" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "वर्ण सेट बदलें" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "टेबल में कम से कम एक काँलम होना आवश्यक है" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "नया टेबल बनाऐं" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "टेबल का उपयोग करो" - -#: js/messages.php:104 -msgid "Searching" -msgstr "खोजें" - -#: js/messages.php:105 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Hide search results" -msgstr "खोज मापदंड छिपाना" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Show search criteria" -msgid "Show search results" -msgstr "खोज मापदंड दिखाना" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "ब्राउज़" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Delete" -msgid "Deleting" -msgstr "मिटाएँ" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "क्वरी बॉक्स छुपा" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "क्वेरी बॉक्स दिखाएँ" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "इनलाइन संपादन" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1211,7 +1061,199 @@ msgstr "इनलाइन संपादन" msgid "Edit" msgstr "सम्पादन" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "सर्वर चुनिये" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query chart" +msgid "Live query chart" +msgstr "क्वरी चार्ट शो" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "कुल" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "सर्वर चुनिये" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "प्रक्रियां" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "कनेक्शन" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL क्वरी" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr " डाटाबेसों के सांख्यिकी" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "रद्द" + +#: js/messages.php:96 +msgid "Loading" +msgstr "लोड हो रहा है" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "याचिका प्रसंस्करण" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "याचिका प्रसंस्करणमें त्रुटि" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "काँलम गिराना" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "प्राथमिक कुंजी जोड़" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "ठीक है" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "डेटाबेस का नाम बदल कर ____ रखें" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "डेटाबेस पुनः लोड" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "डेटाबेस को ______ में कॉपी करें" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "वर्ण सेट बदलें" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "टेबल में कम से कम एक काँलम होना आवश्यक है" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "नया टेबल बनाऐं" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "टेबल का उपयोग करो" + +#: js/messages.php:117 +msgid "Searching" +msgstr "खोजें" + +#: js/messages.php:118 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Hide search results" +msgstr "खोज मापदंड छिपाना" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Show search criteria" +msgid "Show search results" +msgstr "खोज मापदंड दिखाना" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "ब्राउज़" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "मिटाएँ" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "क्वरी बॉक्स छुपा" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "क्वेरी बॉक्स दिखाएँ" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "इनलाइन संपादन" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1219,67 +1261,67 @@ msgstr "सम्पादन" msgid "Save" msgstr "बचाना" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "छिपाना" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "खोज मापदंड छिपाना" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "खोज मापदंड दिखाना" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "ध्यान न देना" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "संदर्भित कुंजी का चयन करें." -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "विदेश कुंजी का चयन करें." -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "प्रदर्शित करने के लिए काँलम चयन करें." -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "काँलम के लिए एक विकल्प जोड़ें" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "पासव्रड उत्पन्न करें" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "उत्पन्न" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "पासवर्ड बदलिये " -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "अधिक" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1288,28 +1330,28 @@ msgstr "" "phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", नवीनतम स्थिर संस्करण:" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "डेटाबेस को कूद" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "किया" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "पिछला" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1317,231 +1359,231 @@ msgid "Next" msgstr " अगला" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "आज" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "जनवरी" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "फरवरी" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "मार्च" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "अप्रैल" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "मई" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "जून" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "जुलाई" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "अगस्त" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "सितम्बर" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "अक्तूबर" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "नवम्बर" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "दिसमबर" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "रविवार" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "सोमवार" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "मन्गलवार" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "बुधवार" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "गुरूवार" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "शुक्रवार" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "मन्गलवार" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "शनिवार" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "रविवार" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "सोमवार" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "मन्गलवार" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "बुधवार" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "गुरुवार" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "शुक्रवार" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "शनिवार" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "हफ्ता" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "घंटा" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "मिनट" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "सेकंड" @@ -1771,11 +1813,11 @@ msgstr " %s मे स्वागत है" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2" -"$s का उपयोग करें." +"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script" +"%2$s का उपयोग करें." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -1913,7 +1955,7 @@ msgstr "साझा" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "टेबल" @@ -2042,7 +2084,7 @@ msgid "Documentation" msgstr "डोक्युमेंटेशन" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL क्वरी" @@ -2071,7 +2113,7 @@ msgid "Create PHP Code" msgstr "PHP Code बनाओ" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "ताज़ा करना" @@ -4673,8 +4715,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4692,7 +4734,7 @@ msgstr "संपीड़न" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "कोई नहीं" @@ -4919,7 +4961,7 @@ msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "" @@ -5007,7 +5049,7 @@ msgstr "" msgid "Buffer Pool" msgstr "बफर पूल" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "" @@ -5350,8 +5392,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5464,7 +5506,7 @@ msgstr "फीचरस दिखाओ" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "होस्ट" @@ -6158,13 +6200,13 @@ msgid "Slave status" msgstr "स्लाव की स्थिति" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "स्थिति" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "मूल्य" @@ -6402,12 +6444,12 @@ msgid "Synchronize" msgstr "सिंक्रनाइज़" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "बाइनरी लोग" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "प्रक्रियां" @@ -6671,7 +6713,7 @@ msgstr "" msgid "+ Add a new value" msgstr "नयी वलुए जोडें" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "समय" @@ -6832,7 +6874,7 @@ msgid "Protocol version" msgstr "अधिक सेटिंग्स" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "यूसर" @@ -7280,17 +7322,17 @@ msgstr "फ़ाइल मौजूद नहीं है" msgid "Select binary log to view" msgstr "द्विआधारी लॉग देखने के लिए चयनित करें" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "फाइलें" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "पूर्ण क्वरीों को दिखाएँ" @@ -7680,8 +7722,8 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7806,7 +7848,7 @@ msgstr "मास्टर सर्वर सफलतापूर्वक प msgid "This server is configured as master in a replication process." msgstr "यह सर्वर किसी प्रतिकृति प्रक्रिया में मास्टर की तरह कॉन्फ़िगर है" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "मास्टर अवस्था" @@ -7943,263 +7985,255 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s को सफलता से मारा गया।" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "हैंडलर" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "क्वेरी कैश" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "थ्रेअद" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "अस्थायी डेटा" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "देरी आवेषण" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "कुंजी कैश" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "जोड़" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "छँटाई" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "लेन - देन समन्वयक" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "सभी टेबलओं फ्लश" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "खुला टेबल शो" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "फ्लश क्वेरी कैश" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "क्रम जानकारी" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "सर्वर चुनिये" -#: server_status.php:372 -msgid "Query statistics" -msgstr " डाटाबेसों के सांख्यिकी" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "ताज़ा करना" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "सेकंड" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "सेकंड" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "मिनट" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "पासवर्ड मत बदलिये" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "खुला टेबल शो" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Replication" msgid "Related links:" msgstr "पसंबंधित लिंक" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "प्रति घंटे" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "प्रति मिनट" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "प्रति सेकंड" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "क्वरी प्रकार" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "प्रतिकृति स्थिति" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "ट्रैफ़िक" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "प्राप्त" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "भेजा" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "कनेक्शन" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "अधिकतम वर्तमान कनेक्शन" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "असफल प्रयास" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "रद्द" -#: server_status.php:784 -msgid "Processes" -msgstr "प्रक्रियां" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL सर्वर से कनेक्ट नहीं कर सका" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8207,78 +8241,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8286,7 +8320,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8294,42 +8328,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8337,33 +8371,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8372,227 +8406,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8600,99 +8634,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8700,18 +8734,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8719,7 +8753,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -8840,7 +8874,7 @@ msgstr "सर्वर चर और सेटिंग्स" msgid "Session value" msgstr "सत्र मूल्य" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "वैश्विक मूल्य" diff --git a/po/hr.po b/po/hr.po index 942e374421..737b58ddac 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -48,7 +48,7 @@ msgstr "Traži" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "Naziv ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Opis" @@ -169,7 +169,7 @@ msgstr "Vrsta" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -198,7 +198,7 @@ msgstr "Povezano s" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -214,7 +214,7 @@ msgstr "Komentari" msgid "No" msgstr "Ne" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -274,7 +274,7 @@ msgstr "Baza podataka %s kopirana je u %s" msgid "Rename database to" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Naredba" @@ -384,7 +384,7 @@ msgstr "Redaka" msgid "Size" msgstr "Veličina" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "u upotrebi" @@ -410,7 +410,7 @@ msgstr "Posljednje ažuriranje" msgid "Last check" msgstr "Posljednja provjera" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -603,64 +603,64 @@ msgstr "Unutar tablica:" msgid "Inside column:" msgstr "Unutar polja:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "U bazi podataka nisu pronađene tablice." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s je očišćena" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Index %s je ispušten" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s je odbačen" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Prikaz" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Zbroj" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -668,23 +668,23 @@ msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju." msgid "With selected:" msgstr "S odabirom:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Ukloni sve oznake" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -692,59 +692,59 @@ msgstr "Provjeri za prepunjene tablice" msgid "Export" msgstr "Izvoz" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Prikaz ispisa" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Ispusti" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Provjeri tablicu" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimiziraj tablicu" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Popravi tablicu" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analiziraj tablicu" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy msgid "Add prefix to table" msgstr "Nema baza podataka" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Podatke tablice zamijeni datotekom" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Podatke tablice zamijeni datotekom" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Rječnik podataka" @@ -760,7 +760,7 @@ msgstr "Provjeri tablicu" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -780,7 +780,7 @@ msgstr "Izradi" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stanje" @@ -885,11 +885,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %" -"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." +"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte " +"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1098,175 +1098,7 @@ msgstr "Ukloni odabrane korisnike" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Odabir poslužitelja" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL upit" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Ukupno" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Odustani" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Lokalno" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Procesi" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "U redu " - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Preimenuj bazu podataka u" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Preimenuj bazu podataka u" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Kopiraj bazu podataka u" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Tablica znakova" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Tablica mora sadržavati najmanje jedno polje." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Izradi tablicu" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Upotrijebi tablice" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Traži" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL upit" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL upit" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Pretraživanje" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Brisanje %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL upit" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL upit" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Pogoni" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1275,7 +1107,217 @@ msgstr "Pogoni" msgid "Edit" msgstr "Uređivanje" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Odabir poslužitelja" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL upit" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Ukupno" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Odabir poslužitelja" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Procesi" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Veze" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL upit" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Statistike redova" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Odustani" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Lokalno" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesi" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "U redu " + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Preimenuj bazu podataka u" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Preimenuj bazu podataka u" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Kopiraj bazu podataka u" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Tablica znakova" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Tablica mora sadržavati najmanje jedno polje." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Izradi tablicu" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Upotrijebi tablice" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Traži" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL upit" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL upit" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Pretraživanje" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Brisanje %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL upit" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL upit" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Pogoni" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1283,77 +1325,77 @@ msgstr "Uređivanje" msgid "Save" msgstr "Spremi" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Sakrij" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoriraj" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Odaberite referentni ključ" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Odaberite strani ključ" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Odaberi polje za prikaz" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generiraj lozinku" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generiraj" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promijeni lozinku" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1361,31 +1403,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy msgid ", latest stable version:" msgstr "Izradi relaciju" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Nema baza podataka" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy msgid "Done" msgstr "Podaci" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Prethodni" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1393,96 +1435,96 @@ msgid "Next" msgstr "Sljedeće" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarno" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Ožu" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Tra" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Svi" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Lip" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Srp" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Kol" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Lis" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1490,178 +1532,178 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Pro" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "u upotrebi" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1897,8 +1939,8 @@ msgstr "Dobro došli u %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete " "upotrijebiti naredbu %1$ssetup script%2$s" @@ -2040,7 +2082,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tablice" @@ -2179,7 +2221,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL upit" @@ -2208,7 +2250,7 @@ msgid "Create PHP Code" msgstr "Izradi PHP kod" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Osvježi" @@ -4908,8 +4950,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti " "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " @@ -4932,7 +4974,7 @@ msgstr "Kompresija" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "bez kompresije" @@ -5194,7 +5236,7 @@ msgid "The row has been deleted" msgstr "Redak je izbrisan" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Eliminiraj" @@ -5287,7 +5329,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Međuspremnik" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB stanje" @@ -5685,8 +5727,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5808,7 +5850,7 @@ msgstr "Raspoložive MIME vrste" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Računalo" @@ -6510,13 +6552,13 @@ msgid "Slave status" msgstr "Prikaži stanje potčinjenog" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Varijabla" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Vrijednost" @@ -6757,12 +6799,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binarni zapisnik" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Varijable" @@ -7062,7 +7104,7 @@ msgstr "Definicija PARTICIJE" msgid "+ Add a new value" msgstr "Dodaj novog korisnika" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Vrijeme" @@ -7307,7 +7349,7 @@ msgid "Protocol version" msgstr "Verzija protokola" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Korisnik" @@ -7786,17 +7828,17 @@ msgstr "Tablica \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "Odaberite binarni zapisnik za prikaz" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Sreži prikazane rezultate" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Prikaži pune upite" @@ -8197,8 +8239,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL " "tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica " @@ -8330,7 +8372,7 @@ msgstr "Privilegije su uspješno učitane." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 #, fuzzy msgid "Show master status" msgstr "Prikaži stanje potčinjenog" @@ -8471,205 +8513,200 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Grana %s uspješno je prekinuta." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao ugasiti granu %s. Vjerojatno je već zatvorena." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Hvatišta" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Pohrana upita" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Grane" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Privremeni podaci" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Odgođena umetanja" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Pohrana ključeva" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Spojevi" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Preslagivanje" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Koordinator transakcije" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Isprazni (zatvori) sve tablice" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Prikaži otvorene tablice" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Prikaži potčinjena računala" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Prikaži stanje potčinjenog" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Isprazni pohranu upita" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Podaci o razini izvršavanja" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Odabir poslužitelja" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Statistike redova" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Osvježi" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "po sekundi" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "po sekundi" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "u upotrebi" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Ne mijenjaj lozinku" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Prikaži otvorene tablice" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "po satu" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "po minuti" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "po sekundi" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Vrsta upita" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ovaj MySQL poslužitelj radi tijekom %s. Pokrenut je %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Promet" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8678,45 +8715,41 @@ msgstr "" "prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti " "netočne." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Primljeno" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Poslano" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Veze" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "najv. uzastopnih veza" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Neuspjeli pokušaji" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:784 -msgid "Processes" -msgstr "Procesi" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8726,17 +8759,17 @@ msgstr "" "ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu " "datoteku za pohranjivanje izjava transakcija." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Broj transakcija koje su upotrebljavale privremeni binarni zapisnik pohrane." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8748,11 +8781,11 @@ msgstr "" "moglo bi biti potrebno da povećate vrijednost tmp_table_size, kako biste " "privremene tablice smjestili u radnu memoriju, a ne na tvrdi disk." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Koliko je privremenih tablica izradio mysqld." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8760,7 +8793,7 @@ msgstr "" "Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio " "tijekom izvršavanja izjava." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8768,7 +8801,7 @@ msgstr "" "Broj redaka upisanih pomoću naredbe INSERT DELAYED, a kod kojih je došlo do " "neke vrste pogreške (vjerojatan razlog je udvojen ključ)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8776,23 +8809,23 @@ msgstr "" "Broj hvatište grana INSERT DELAYED u upotrebi. Svaka druga tablica na koju " "se primjeni INSERT DELAYED dobiva vlastitu granu." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Broj redaka zapisanih pomoću INSERT DELAYED." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih izjava FLUSH." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Broj internih izjava COMMIT." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Brojka koja prokazuje koliko puta je redak bio izbrisan iz tablice." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8802,7 +8835,7 @@ msgstr "" "tablicu s traženim nazivom. Ovaj se postupak naziva otkrivanje. " "Handler_discover naznačuje koliko je puta tablica bila otkrivenom." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8812,7 +8845,7 @@ msgstr "" "broj je pokazatelj da poslužitelj izvodi mnogo potpunih pretraživanja " "indeksa, npr. SELECT col1 FROM foo, pri čemu je col1 indeksiran." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8820,7 +8853,7 @@ msgstr "" "Broj zahtjeva za čitanje retka zasnovan na ključu. Velik broj je pokazatelj " "da su vaši upiti i tablice pravilno indeksirani." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8830,7 +8863,7 @@ msgstr "" "povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako " "izvodite pretraživanje indeksa." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8838,7 +8871,7 @@ msgstr "" "Broj zahtjeva za čitanje prethodnog retka u redoslijedu ključa. Ovaj način " "čitanja uglavnom se upotrebljava za optimiziranje opcije ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8850,7 +8883,7 @@ msgstr "" "Vjerojatno imate mnogo upita koji zahtijevaju da MySQL pretražuje cjelokupne " "tablice ili imate spojeve koji ne upotrebljavaju ključ na pravilan način." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8862,36 +8895,36 @@ msgstr "" "naznačuje da vaša tablice nisu pravilno indeksirane ili da vaši upiti nisu " "napisani na način koji iskorištava prednosti raspoloživih indeksa." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih izjava ROLLBACK." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Broj zahtjeva za ažuriranje retka u tablici." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Broj zahtjeva za umetanje retka u tablici." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj stranice koje sadrže podatke (dirty ili clean)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Broj stranica koje su trenutno 'dirty'." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Broj stranica međuspremnika za koje je podnesen zahtjev za pražnjenjem." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Broj slobodnih stranica." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8901,7 +8934,7 @@ msgstr "" "čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog " "drugog razloga." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8913,11 +8946,11 @@ msgstr "" "je vrijednost moguće izračunati i kao Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Ukupna veličina međuspremnika, u stranicama." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8925,7 +8958,7 @@ msgstr "" "Broj \"nasumičnih\" pripremnih čitanja koje je InnoDB inicijalizirao. Događa " "se kad upit mora pretražiti veliki dio tablice, ali nasumičnim redoslijedom." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8933,11 +8966,11 @@ msgstr "" "Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se " "događa kad InnoDB izvodi potpuno pretraživanje tablice." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8945,7 +8978,7 @@ msgstr "" "Broj logičkih čitanja koje InnoDB nije mogao zadovoljiti iz međuspremnik i " "morao je izvesti čitanje po jedne stranice." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8959,55 +8992,55 @@ msgstr "" "prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno " "postavljena, ova bi vrijednost trebala biti malenom." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Broj dosadašnjih fsync() operacija." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Trenutan broj fsync() operacija u čekanju." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Trenutan broj čitanja u čekanju." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Trenutan broj zapisivanja u čekanju." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Ukupan broj iščitavanja podataka." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Ukupan broj zapisivanja podataka." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9016,35 +9049,35 @@ msgstr "" "međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka " "rada." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Broj zahtjeva za zapisivanje u zapisnik." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih zapisivanja u zapisnik." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Zapisivanja u zapisnik na čekanju." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Broj bajtova zapisanih u zapisnik." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Broj izrađenih stranica." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9053,52 +9086,52 @@ msgstr "" "vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo " "jednostavno pretvaranje u bajtove." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Broj iščitanih stranica." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Broj zapisanih stranica." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Broj zaključavanja redaka na koje se trenutno čeka." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vrijeme utrošeno na postizanja zaključanosti retka, u milisekundama." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Broj okolnosti kad je bilo potrebno čekati na zaključanost retka." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redaka izbrisanih iz InnoDB tablica." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redaka umetnutih u InnoDB tablice." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Broj redaka iščitanih iz InnoDB tablica." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Broj ažuriranih redaka u InnoDB tablicama." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9106,7 +9139,7 @@ msgstr "" "Broj ključnih blokova u pohrani ključeva koji su izmijenjeni ali još nisu " "ispražnjeni na disk. Nekoć se nazivalo: Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9114,7 +9147,7 @@ msgstr "" "Broj neiskorištenih blokova u pohrani ključeva. Ovu vrijednost možete " "upotrijebiti za određivanje veličine pohrane ključeva koja je u upotrebi." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9124,11 +9157,11 @@ msgstr "" "gornje razine koja označuje najveći broj blokova koji su ikad bili u " "istovremenoj upotrebi." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahtjeva za čitanje ključnog bloka iz pohrane." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9139,15 +9172,15 @@ msgstr "" "promašivanja pohrane moguće je izračunati putem naredbi Key_reads/" "Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahtjeva za zapisivanje ključnog bloka u pohranu." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih zapisivanja ključnih blokova na disk. " -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9157,17 +9190,17 @@ msgstr "" "upita. Korisno za uspoređivanje troškova različitih planova upita za isti " "upit. Zadana vrijednost je 0 i podrazumijeva da još nema složenog upita." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redaka koji čekaju svoje upisivanje u red čekanja INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9175,39 +9208,39 @@ msgstr "" "Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaša " "vrijednost za pohranu tablica vjerojatno je premala." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih protoka (uglavnom se upotrebljava za vođenje zapisnika)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Broj otvorenih tablica." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za pohranu upita." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Broj pronalaženja u pohrani." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Broj upita pridodanih u pohranu." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9220,7 +9253,7 @@ msgstr "" "nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će " "upite ukloniti iz pohrane." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9228,19 +9261,19 @@ msgstr "" "Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog " "postavke query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Broj upita registriranih u pohrani." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u pohrani upita." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9248,12 +9281,12 @@ msgstr "" "Broj spojeva koji ne upotrebljavaju indekse. Ako ovaj iznos nije 0, bit će " "potrebno da pažljivo provjerite indekse vaših tablica." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Broj spojeva koji nad referentnom tablicom upotrebljavaju opseg traženja." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9262,7 +9295,7 @@ msgstr "" "retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite " "indekse vaših tablica." -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9270,17 +9303,17 @@ msgstr "" "Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije " "kritično ako je ovaj iznos velik.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su izveli potpuno pretraživanje prve tablice." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Broj privremenih tablica koje su trenutno otvorene od strane potčinjene SQL " "grane." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9288,12 +9321,12 @@ msgstr "" "Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane " "replikacijske potčinjene SQL grane." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Uključeno (ON) ako je ovaj poslužitelj potčinjen i povezan na gospodara." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9301,14 +9334,14 @@ msgstr "" "Broj grana kojima je bilo potrebno više vremena za izradu, nego što je to " "definirano u slow_launch_time (sporo vrijeme pokretanja), u sekundama." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Broj upita kojima je bilo potrebno više vremena nego što je to definirano u " "long_query_time (dugo vrijeme upita), u sekundama." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9318,23 +9351,23 @@ msgstr "" "Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti " "sistemske varijable sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Broj preslagivanja učinjenih pomoću opsega." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Broj presloženih redaka." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Broj preslagivanja učinjenih pomoću pretraživanja tablice." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Količina trenutno postignutih zaključavanja tablica." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9346,7 +9379,7 @@ msgstr "" "problema s performansama, bit će potrebno da prvo optimizirate svoje upite i " "potom ili podijelite svoje tablice ili upotrijebite replikaciju." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9356,11 +9389,11 @@ msgstr "" "kao Threads_created/Connections. Ako je ovaj iznos prikazan crvenom bojom, " "bit će potrebno da povećate svoju vrijednost thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9372,7 +9405,7 @@ msgstr "" "(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti " "primjetna poboljšanja performansi.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Broj grana koje nisu uspavane." @@ -9497,7 +9530,7 @@ msgstr "Varijable i postavke poslužitelja" msgid "Session value" msgstr "Vrijednost sesije" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Opća vrijednost" @@ -10715,8 +10748,8 @@ msgstr "Preimenuj prikaz u" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." #~ msgstr "" -#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1" -#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju." +#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]" +#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju." #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " diff --git a/po/hu.po b/po/hu.po index 70b7e7f7c0..3450cb6a9c 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-05-27 18:52+0200\n" "Last-Translator: \n" "Language-Team: hungarian \n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "Keresés" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Kulcsnév" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Leírás" @@ -166,7 +166,7 @@ msgstr "Típus" msgid "Null" msgstr "Nulla" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Hivatkozások:" msgid "Comments" msgstr "Megjegyzések" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Megjegyzések" msgid "No" msgstr "Nem" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "A(z) %s adatbázis másolása a(z) %s adatbázisba megtörtént" msgid "Rename database to" msgstr "Adatbázis átnevezése" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Parancs" @@ -373,7 +373,7 @@ msgstr "sorok" msgid "Size" msgstr "Méret" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "használatban" @@ -399,7 +399,7 @@ msgstr "Utolsó frissítés" msgid "Last check" msgstr "Utolsó ellenőrzés" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -582,63 +582,63 @@ msgstr "Táblá(k)ban:" msgid "Inside column:" msgstr "Mezőben:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Nem található tábla az adatbázisban." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "A(z) %s tábla kiürítése megtörtént" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "A(z) %s nézet eldobása kész" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "A(z) %s tábla eldobása megtörtént" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Nyomkövetés aktív." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Nyomkövetés inaktív." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %" -"sdokumentációban%s." +"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a " +"%sdokumentációban%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Nézet" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Többszörözés" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Összeg" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Ezen a MySQL szerveren a(z) %s az alapértelmezett tárolómotor." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -646,23 +646,23 @@ msgstr "Ezen a MySQL szerveren a(z) %s az alapértelmezett tárolómotor." msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Mind kijelölése" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Kijelölés törlése" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "A felülírott táblák kijelölése" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -670,54 +670,54 @@ msgstr "A felülírott táblák kijelölése" msgid "Export" msgstr "Exportálás" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Nyomtatási nézet" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Kiürítés" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Eldobás" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Tábla ellenőrzése" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Tábla optimalizálása" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Tábla javítása" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Tábla elemzése" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Előtag hozzáadása a táblához" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Tábla előtagjának lecserélése" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Tábla másolása előtaggal" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Adatkönyvtár" @@ -732,7 +732,7 @@ msgstr "Nyomon követett táblák" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -750,7 +750,7 @@ msgstr "Létrehozva" msgid "Updated" msgstr "frissítve" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Állapot" @@ -851,11 +851,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %" -"sdokumentációban%s a korlátozás feloldása végett." +"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a " +"%sdokumentációban%s a korlátozás feloldása végett." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1054,158 +1054,7 @@ msgstr "A kijelölt felhasználók törlése" msgid "Close" msgstr "Bezárás" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Szerver választása" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "SQL Query box" -msgid "Live query chart" -msgstr "SQL-lekérdezési panelek" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Összesen" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr ", " - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Mégse" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Betöltés" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Kérés feldolgozása" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Hiba a kérés feldolgozásában" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Oszlop törlése" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Elsődleges kulcs hozzáadása" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Adatbázis(ok) átnevezése" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Adatbázis újratöltése" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Adatbázis másolása" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Karakterkészlet változtatása" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "A táblázatnak legalább egy oszlopot kell tartalmaznia." - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Tábla létrehozása" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Felhasználandó táblák" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Keresés" - -#: js/messages.php:105 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Hide search results" -msgstr "Keresési kritériumok elrejtése" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Show search criteria" -msgid "Show search results" -msgstr "Keresési kritériumok mutatása" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Tartalom" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "%s törlése" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" -"Megjegyzés: Ha a fájl több táblát tartalmaz, akkor azok egyesítve lesznek" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "SQL-lekérdezési panelek elrejtése" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "SQL-lekérdezési panelek mutatása" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Inline szerkesztés" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1214,7 +1063,200 @@ msgstr "Inline szerkesztés" msgid "Edit" msgstr "Módosítás" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Szerver választása" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "SQL Query box" +msgid "Live query chart" +msgstr "SQL-lekérdezési panelek" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Összesen" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr ", " + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Szerver választása" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Folyamatok" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Kapcsolatok" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL-lekérdezések" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Lekérdezések statisztikája" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Mégse" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Betöltés" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Kérés feldolgozása" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Hiba a kérés feldolgozásában" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Oszlop törlése" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Elsődleges kulcs hozzáadása" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Adatbázis(ok) átnevezése" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Adatbázis újratöltése" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Adatbázis másolása" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Karakterkészlet változtatása" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "A táblázatnak legalább egy oszlopot kell tartalmaznia." + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Tábla létrehozása" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Felhasználandó táblák" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Keresés" + +#: js/messages.php:118 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Hide search results" +msgstr "Keresési kritériumok elrejtése" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Show search criteria" +msgid "Show search results" +msgstr "Keresési kritériumok mutatása" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Tartalom" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s törlése" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" +"Megjegyzés: Ha a fájl több táblát tartalmaz, akkor azok egyesítve lesznek" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "SQL-lekérdezési panelek elrejtése" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "SQL-lekérdezési panelek mutatása" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Inline szerkesztés" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1222,41 +1264,41 @@ msgstr "Módosítás" msgid "Save" msgstr "Mentés" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Elrejtés" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Keresési kritériumok elrejtése" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Keresési kritériumok mutatása" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Válassza ki a hivatkozott kulcsot" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Idegen kulcs kiválasztása" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Válassza ki az elsődleges kulcsot, vagy egy egyedi kulcsot" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Válassza ki a megjelenítendő oszlopot" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1264,27 +1306,27 @@ msgstr "" "Nem mentette a változtatásokat az elrendezésben. Mentés nélkül ezek el " "fognak veszni. Így is folytatni szeretné?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Adjon meg egy opciót az oszlophoz" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Jelszó generálása" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generálás" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Jelszó megváltoztatása" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Több" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1294,26 +1336,26 @@ msgstr "" "%s, kiadás dátuma: %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", utolsó stabil verzió:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "friss" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Kész" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Előző" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1321,231 +1363,231 @@ msgid "Next" msgstr "Következő" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Ma" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Január" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Február" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Március" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Április" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Május" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Június" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Július" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Augusztus" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Szeptember" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Október" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "November" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "jan." #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "febr." #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "márc." #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "ápr." #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "máj." #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "jún." #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "júl." #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "aug." #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "szept." #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "okt." #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "nov." #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "dec." -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Vasárnap" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Hétfő" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Kedd" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Szerda" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Csütörtök" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Péntek" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Szombat" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "V" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "H" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "K" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Cs" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "P" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Szo" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "V" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "H" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "K" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Sze" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Cs" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Szo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Hét" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Óra" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Perc" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "másodperc" @@ -1780,11 +1822,11 @@ msgstr "Üdvözli a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1" -"$stelepítőszkripttel%2$s el tudja készíteni." +"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A " +"%1$stelepítőszkripttel%2$s el tudja készíteni." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -1925,7 +1967,7 @@ msgstr "megosztott" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Táblák" @@ -2058,7 +2100,7 @@ msgid "Documentation" msgstr "Dokumentáció" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-lekérdezés" @@ -2087,7 +2129,7 @@ msgid "Create PHP Code" msgstr "PHP-kód létrehozása" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Frissítés" @@ -4839,8 +4881,8 @@ msgstr ", @TABLE@ lesz a tábla neve" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, " "vagyis időformázó karakterláncokat használhat. A következő átalakításokra " @@ -4861,7 +4903,7 @@ msgstr "Tömörítés:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Nincs" @@ -5114,7 +5156,7 @@ msgid "The row has been deleted" msgstr "A sor törlése megtörtént" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Leállít" @@ -5207,7 +5249,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Pufferkészlet" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB állapota" @@ -5604,8 +5646,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5730,7 +5772,7 @@ msgstr "Létező MIME-típusok" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Hoszt" @@ -6436,13 +6478,13 @@ msgid "Slave status" msgstr "Másodlagos állapot" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Változó" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Érték" @@ -6685,12 +6727,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Bináris napló" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Változók" @@ -6855,8 +6897,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %" -"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" +"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a " +"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" "kiterjesztést." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 @@ -6994,7 +7036,7 @@ msgstr "PARTITION definíció" msgid "+ Add a new value" msgstr "Új szerver hozzáadása" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Idő" @@ -7246,7 +7288,7 @@ msgid "Protocol version" msgstr "Protokoll verzió" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Felhasználó" @@ -7744,17 +7786,17 @@ msgstr "A fájl nem létezik" msgid "Select binary log to view" msgstr "Válassza ki a megtekintendő bináris naplót" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Fájlok" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "A megjelenített lekérdezések lerövidítése" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Teljes lekérdezések megjelenítése" @@ -8159,13 +8201,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL " "privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által " -"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %" -"stöltse be újra a jogokat%s a folytatás előtt." +"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " +"%stöltse be újra a jogokat%s a folytatás előtt." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -8292,7 +8334,7 @@ msgstr "A jogok újratöltése sikerült." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 #, fuzzy msgid "Show master status" msgstr "Kisegítő állapot megjelenítése" @@ -8434,12 +8476,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Sikerült leállítani a(z) %s. szálat." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8447,178 +8489,174 @@ msgstr "" "A phpMyAdmin nem tudta leállítani a(z) %s szálat. Valószínűleg már " "befejeződött." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Kezelő" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Lekérdezési gyorsítótár" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Szálak" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Ideiglenes adatok" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Késleltetett beszúrások" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Kulcs gyorsítótár" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Illesztések" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Rendezés" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Tranzakció koordinátor" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Összes tábla kiírása (bezárása)" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Nyitott táblák megjelenítése" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Kisegítő állomások megjelenítése" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Kisegítő állapot megjelenítése" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Lekérdezési gyorsítótár kiírása" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Futtatási információk" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Szerver választása" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Lekérdezések statisztikája" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Frissítés" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "másodperc" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "másodperc" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Perc" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nincs jelszó megváltoztatás" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Nyitott táblák megjelenítése" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Kapcsolatok" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "óránként" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "percenként" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "másodpercenként" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Lekérdezés típusa" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ez a MySQL szerver %s óta fut. Indítás időpontja: %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -8632,15 +8670,15 @@ msgstr "" "szerveren lévő többszörözéses állapotról a többszörözés részben kaphat bővebb információt." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Többszörözéses állapot" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Forgalom" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8648,45 +8686,41 @@ msgstr "" "Foglalt szerveren túlfuthatnak a bájtszámlálók, ezért a MySQL által " "jelentett statisztikák pontatlanok lehetnek." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Fogadott" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Küldött" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Kapcsolatok" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "Max. egyidejű kapcsolatok száma" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Sikertelen próbák" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Megszakítva" -#: server_status.php:784 -msgid "Processes" -msgstr "Folyamatok" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "AZ" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8696,17 +8730,17 @@ msgstr "" "használt, azonban az túllépte a binlog_cache_size méretet, és ideiglenes " "fájlt használt az utasítások tárolásához a tranzakcióból." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Az ideiglenes bináris naplógyorsítótár által használt tranzakciók száma." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8718,11 +8752,11 @@ msgstr "" "nagy, akkor növelheti a tmp_table_size értékét, mely az ideiglenes táblákból " "memóriaalapúakat csinál a lemezalapú helyett." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8730,7 +8764,7 @@ msgstr "" "A szerver által az utasítások végrehajtásakor automatikusan létrehozott, a " "memóriában tárolt ideiglenes táblák száma." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8738,7 +8772,7 @@ msgstr "" "Az INSERT DELAYED utasítással írt sorok száma, melyeknél néhány hiba történt " "(valószínűleg ismétlődő kulcs)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8746,23 +8780,23 @@ msgstr "" "A használatban lévő INSERT DELAYED kezelőszálak száma. Minden eltérő " "táblának, melyen valaki INSERT DELAYED parancsot használ, saját szála lesz." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "A beírt INSERT DELAYED sorok száma." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "A végrehajtott FLUSH utasítások száma." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "A belső COMMIT utasítások száma." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Egy sornak a táblázatból történő törléseinek a száma." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8772,7 +8806,7 @@ msgstr "" "megadott nevű táblát. Ezt hívják felfedezésnek. A handler_discover jelzi a " "táblák felfedezésének számát." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8783,7 +8817,7 @@ msgstr "" "például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül " "indexelésre." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8791,7 +8825,7 @@ msgstr "" "Egy sor kulcs alapján történő beolvasási kéréseinek száma. Ha ez magas, " "akkor jól mutatja, hogy a lekérdezések és a táblák megfelelően indexeltek." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8801,7 +8835,7 @@ msgstr "" "ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot " "végez." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8809,7 +8843,7 @@ msgstr "" "A kulcssorrendben előző sort beolvasandó kérések száma. Ezt a beolvasási " "módszert főleg az ORDER BY ... DESC optimalizálásához használják." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8821,7 +8855,7 @@ msgstr "" "Valószínűleg sok olyan lekérdezés van, s a MySQL-nek teljes táblákat kell " "megvizsgálnia, vagy a kulcsokat nem megfelelően használó illesztések vannak." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8833,35 +8867,35 @@ msgstr "" "hogy a táblák nem megfelelően indexeltek, vagy a lekérdezések nincsenek írva " "az indexek kihasználása végett." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "A belső ROLLBACK utasítások száma." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "A kérések száma egy táblában lévő sor frissítéséhez." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "A kérések száma egy táblában lévő sor beszúrásához." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "A jelenleg piszkos lapok száma." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "A pufferkészlet oldalainak száma, melyeket kiírásra kértek." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "A szabad lapok száma." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8871,7 +8905,7 @@ msgstr "" "írás alatt lévő oldalak, melyeket bizonyos más okok miatt nem lehet kiírni " "vagy eltávolítani." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8884,11 +8918,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data értékként is " "számolható." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "A pufferkészlet teljes mérete lapokban." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8897,7 +8931,7 @@ msgstr "" "akkor történik, ha egy lekérdezés meg akarja vizsgálni egy tábla nagy " "részét, viszont véletlenszerű sorrendben." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8905,11 +8939,11 @@ msgstr "" "Az InnoDB által kezdeményezett sorozatos előreolvasások száma. Ez akkor " "történik, mikor az InnoDB sorozatos teljes táblavizsgálatot tart." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Az InnoDB által elvégzett logikai olvasási kérések száma." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8917,7 +8951,7 @@ msgstr "" "A logikai olvasások száma, melyeket az InnoDB nem tudott a pufferkészletből " "kielégíteni, s egyoldalas beolvasást végzett." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8932,53 +8966,53 @@ msgstr "" "méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell " "lennie." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Az InnoDB pufferkészletébe történt írások száma." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Az fsync() műveletek eddigi száma." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "A folyamatban lévő fsync() műveletek száma." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "A folyamatban lévő olvasások száma." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "A folyamatban lévő írások száma." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Az eddig beolvasott adatok mennyisége bájtban." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Az összes beolvasott adat." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Az összes írott adat." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Az összes írott adat, bájtban." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8986,35 +9020,35 @@ msgstr "" "Várakozások száma, amiket a naplópuffer kis mérete okozott és folytatás " "előtt meg kellett várni a kiírást." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "A naplóírási kérések száma." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "A naplófájlba történt fizikai írások száma." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "A naplófájlba történt fsyncs írások száma." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "A folyamatban lévő naplófájl fsync-ek száma." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "A folyamatban lévő naplófájl írások száma." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "A naplófájlba írt bájtok száma." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "A létrehozott lapok száma." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9023,51 +9057,51 @@ msgstr "" "került számolásra az oldalakban; az oldal mérete teszi lehetővé a bájtokká " "történő könnyű átalakítást." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "A beolvasott lapok száma." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Az írott lapok száma." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "A jelenleg várakozás alatt lévő sorzárolások száma." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges átlag időtartam, milliszekundumban." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "A sorzárolásokra fordított összes idő, milliszekundumban." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges időtartam, milliszekundumban." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "A sorzárolásra váráshoz szükséges alkalmak száma." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Az InnoDB táblákból törölt sorok száma." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Az InnoDB táblákba beszúrt sorok száma." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Az InnoDB táblákból beolvasott sorok száma." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Az InnoDB táblákban frissített sorok száma." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9075,7 +9109,7 @@ msgstr "" "A kulcsgyorsítótárban lévő kulcsblokkok száma, melyek megváltoztak, de még " "nem kerültek lemezre kiírásra. Ez Not_flushed_key_blocks néven ismert." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9083,7 +9117,7 @@ msgstr "" "A kulcsgyorsítótárban lévő, nem használt blokkok száma. Ezzel az értékkel " "állapíthatja meg, hogy mennyire van használatban a kulcsgyorsítótár." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9092,11 +9126,11 @@ msgstr "" "A kulcsgyorsítótárban lévő használt blokkok száma. Ez az érték egy maximális " "jel, mely a valamikor használatban volt blokkok számát jelzi." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "A gyorsítótárból egy kulcsblokk beolvasásához szükséges kérések száma." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9107,15 +9141,15 @@ msgstr "" "sikertelen találatainak aránya a Key_reads/Key_read_requests alapján " "számítható ki." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "A kérések száma egy kulcsblokk gyorsítótárba történő írásához." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Egy kulcsblokk lemezre történő fizikai írásainak száma." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9126,17 +9160,17 @@ msgstr "" "költségének lekérdezéséhez hasznos. Az alapértelmezett 0 érték azt jelenti, " "hogy lekérdezés lefordítására még nem került sor." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Az INSERT DELAYED sorokban írásra várakozó sorok száma." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9144,40 +9178,40 @@ msgstr "" "Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagy,akkor " "valószínűleg túl kicsi a táblagyorsítótár értéke." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "A megnyitott fájlok száma." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Az adatfolyamok száma, melyek nyitottak (főleg a naplózáshoz kerül " "felhasználásra)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "A megnyitott táblák száma." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "A szabad memória mérete a lekérdezési gyorsítótárhoz." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "A gyorsítótár találatok száma." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "A gyorsítótárhoz adott lekérdezések száma." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9190,7 +9224,7 @@ msgstr "" "lekérdezési gyorsítótár a legrégebben használt (LRU) stratégiával dönti el, " "hogy mely lekérdezéseket kell eltávolítani a gyorsítótárból." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9198,19 +9232,19 @@ msgstr "" "A nem gyorsítótárazott lekérdezések száma (nem gyorsítótárazható, vagy nem " "gyorsítótárazott a query_cache_type beállítás miatt)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "A gyorsítótárban bejegyzett lekérdezések száma." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "A blokkok száma a lekérdezési gyorsítótárban." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "A hibabiztos többszörözések állapota (megvalósításra vár)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9218,11 +9252,11 @@ msgstr "" "Az indexeket nem használó illesztések száma. Ha ez az érték nem 0, akkor " "ellenőrizze körültekintően a táblák indexeit." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "Egy hivatkozási táblán tartománykeresést használt illesztések száma." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9231,7 +9265,7 @@ msgstr "" "használatát ellenőrzik. (Ha ez nem 0, akkor ellenőrizze körültekintően a " "táblák indexeit.))" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9239,15 +9273,15 @@ msgstr "" "Az első táblán tartományokat használt illesztések száma. (Normál esetben ez " "nem súlyos, még ha túl nagy is ez.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Az első tábla teljes vizsgálatát elvégzett illesztések száma." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "A kisegítő SQL szál által épp megnyitott ideiglenes táblák száma." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9255,11 +9289,11 @@ msgstr "" "A többszörözésben kisegítő SQL szál (az indítás óta) ennyiszer próbálta újra " "a tranzakciókat." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ez BE, ha ez főszerverhez csatlakoztatott kisegítő szerver." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9267,14 +9301,14 @@ msgstr "" "A szálak száma, melyek létrehozásához slow_launch_time másodpercnél többre " "volt szükség." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "A lekérdezések száma, melyekhez long_query_time másodpercnél többre volt " "szükség." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9284,23 +9318,23 @@ msgstr "" "végeznie. Ha ez az érték nagy, akkor gondolja meg a sort_buffer_size " "rendszerváltozó értékének növelését." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "A tartományokkal végzett rendezések száma." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Rendezett sorok száma." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "A tábla vizsgálatával végrehajtott rendezések száma." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Ennyiszer nem lehetett azonnal megszerezni egy táblazárolást." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9312,7 +9346,7 @@ msgstr "" "optimalizálja a lekérdezéseket, majd vagy ossza fel a táblát vagy táblákat, " "vagy használja a többszörözést." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9322,11 +9356,11 @@ msgstr "" "Threads_created/Connections alapján számítható ki. Ha ez az érték piros, " "akkor növelnie kell a thread_cache_size méretét." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "A jelenleg megnyitott kapcsolatok száma." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9337,7 +9371,7 @@ msgstr "" "nagy, akkor növelheti a thread_cache_size értékét. (Normál esetben ez nem " "növeli jelentősen a teljesítményt, ha jó szálmegvalósítása van.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "A nem alvó szálak száma." @@ -9462,7 +9496,7 @@ msgstr "Szerver változók és beállítások" msgid "Session value" msgstr "Munkamenet értéke" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Globális változó" @@ -9776,9 +9810,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/id.po b/po/id.po index 8743024fc5..d3cea00491 100644 --- a/po/id.po +++ b/po/id.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-04-16 22:04+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "Cari" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Nama Kunci" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Deskripsi" @@ -166,7 +166,7 @@ msgstr "Jenis" msgid "Null" msgstr "Kosong" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Link ke" msgid "Comments" msgstr "Komentar" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Komentar" msgid "No" msgstr "Tidak" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Database %s telah disalin ke %s" msgid "Rename database to" msgstr "Ubah nama database menjadi" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Perintah" @@ -373,7 +373,7 @@ msgstr "Baris" msgid "Size" msgstr "Ukuran" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "sedang digunakan" @@ -399,7 +399,7 @@ msgstr "Update terakhir" msgid "Last check" msgstr "Pemeriksaan terakhir" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -579,63 +579,63 @@ msgstr "Cari dalam tabel:" msgid "Inside column:" msgstr "Di dalam kolom:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Tidak ada tabel dalam database." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s telah dikosongkan" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Pandangan %s telah dibubarkan" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s telah dihapus" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Pelacakan aktif" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Pelacakan tidak aktif." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %" -"sdokumentasi%s" +"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat " +"%sdokumentasi%s" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Gambarkan" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Tiruan" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Jumlah" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s adalah mesin penyimpan utama pada server MySQL ini." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -643,23 +643,23 @@ msgstr "%s adalah mesin penyimpan utama pada server MySQL ini." msgid "With selected:" msgstr "yang ditandai:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Pilih semua" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Balik pilihan" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Periksa Overheaded" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -667,58 +667,58 @@ msgstr "Periksa Overheaded" msgid "Export" msgstr "Ekspor" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Pandangan cetak" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Mengosongkan" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Hapus" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Periksa tabel" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimasikan tabel" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Perbaiki tabel" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analisa tabel" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Ganti data tabel dengan file" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Ganti data tabel dengan file" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Kamus Data" @@ -733,7 +733,7 @@ msgstr "Tabel-tabel yang dilacak" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -751,7 +751,7 @@ msgstr "Dibuat" msgid "Updated" msgstr "Diperbarui" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -851,11 +851,11 @@ msgstr "Dump (Skema) disimpan pada file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %" -"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." +"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat " +"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1056,156 +1056,7 @@ msgstr "Hapus pengguna yang dipilih" msgid "Close" msgstr "Tutup" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Pilihan Server" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "Pencarian SQL" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Jumlah" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Batal" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Memproses" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Memproses permintaan" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Error dalam memproses permintaan" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Menghapus Kolom" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr " Tambahkan Primary Key" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "Oke" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Ubah nama database" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Muat ulang basis data" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Salin database" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Perangkat karakter (Charset)" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Tabel harus mengandung sekurangnya satu kolom" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Buat tabel" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Gunakan Tabel" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Pencarian" - -#: js/messages.php:105 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Hide search results" -msgstr "Sembunyikan kriteria pencarian" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Show search criteria" -msgid "Show search results" -msgstr "Tampilkan kriteria pencarian" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Browse" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Menghapus %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Sembunyikan kotak query" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Tampilkan kotak query" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Inline Edit" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1214,7 +1065,197 @@ msgstr "Inline Edit" msgid "Edit" msgstr "Ubah" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Pilihan Server" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "Pencarian SQL" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Jumlah" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Pilihan Server" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Proses Aktif" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Koneksi" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "Pencarian SQL" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Statistik query" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Batal" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Memproses" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Memproses permintaan" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Error dalam memproses permintaan" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Menghapus Kolom" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr " Tambahkan Primary Key" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "Oke" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Ubah nama database" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Muat ulang basis data" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Salin database" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Perangkat karakter (Charset)" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Tabel harus mengandung sekurangnya satu kolom" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Buat tabel" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Gunakan Tabel" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Pencarian" + +#: js/messages.php:118 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Hide search results" +msgstr "Sembunyikan kriteria pencarian" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Show search criteria" +msgid "Show search results" +msgstr "Tampilkan kriteria pencarian" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Browse" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Menghapus %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Sembunyikan kotak query" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Tampilkan kotak query" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Inline Edit" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1222,67 +1263,67 @@ msgstr "Ubah" msgid "Save" msgstr "Simpan" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Sembunyikan" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Sembunyikan kriteria pencarian" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Tampilkan kriteria pencarian" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Pilih kunci rujukan" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Pilih Foreign Key" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Silakan pilih primary key atau sebuah unique key" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Pilih kolom untuk ditampilkan" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Tambahkan pilihan untuk kolom" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Menghasilkan kata sandi" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Menghasilkan" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Ubah Kata Sandi" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Selebihnya" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1292,28 +1333,28 @@ msgstr "" "untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", versi stabil terakhir:" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Beralih ke database" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Selesai" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Sebelumnya" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1321,231 +1362,231 @@ msgid "Next" msgstr "Berikutnya" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Hari ini" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Januari" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Februari" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Maret" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "April" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mei" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Juni" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Juli" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Agustus" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "September" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Oktober" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "November" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Januari" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Februari" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Maret" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Agustus" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nopember" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Desember" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Minggu" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Senin" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Selasa" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Rabu" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Kamis" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Jumat" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Sabtu" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Minggu" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Senin" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Selasa" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Rabu" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Kamis" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Jumat" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sabtu" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Minggu" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Senin" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Selasa" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Rabu" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Kamis" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Jumat" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Sabtu" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Mingguan" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Jam" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Menit" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Detik" @@ -1782,8 +1823,8 @@ msgstr "Selamat Datang di %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Anda mungkin belum membuat file konfigurasi. Anda bisa menggunakan %1$ssetup " "script%2$s untuk membuatnya." @@ -1927,7 +1968,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabel" @@ -2059,7 +2100,7 @@ msgid "Documentation" msgstr "Dokumentasi" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "Pencarian SQL" @@ -2088,7 +2129,7 @@ msgid "Create PHP Code" msgstr "Ciptakan kode PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Menyegarkan" @@ -4754,8 +4795,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4775,7 +4816,7 @@ msgstr "Kompresi" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "tanpa" @@ -5026,7 +5067,7 @@ msgid "The row has been deleted" msgstr "Baris telah dihapus" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Tutup" @@ -5119,7 +5160,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Penampungan Buffer" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Status dari InnoDB" @@ -5480,8 +5521,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5607,7 +5648,7 @@ msgstr "Tipe MIME yang tersedia" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Host" @@ -6312,13 +6353,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Nilai" @@ -6559,12 +6600,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Log binari" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variabel" @@ -6864,7 +6905,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Menambahkan pengguna baru" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Jangka Waktu" @@ -7091,7 +7132,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Pengguna" @@ -7565,18 +7606,18 @@ msgstr "Tabel \"%s\" tidak ditemukan!" msgid "Select binary log to view" msgstr "Pilih Log binari untuk ditinjau" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "Field" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Potongkan pencarian yang ditampilkan" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Tampilkan pencarian yang lengkap" @@ -7986,8 +8027,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan pengguna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari " "tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil " @@ -8120,7 +8161,7 @@ msgstr "Sukses reload Hak Istimewa (Privileges)." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8259,12 +8300,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Sukses hentikan Thread %s." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8272,257 +8313,249 @@ msgstr "" "phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah " "ditutup terlebih dahulu" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 #, fuzzy msgid "Query cache" msgstr "Tipe Pencarian" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "Gunakan perintah INSERT memperlambat" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Koordinator transaksi" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "Tampilkan tabel" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Informasi Runtime" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Pilihan Server" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Statistik query" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Menyegarkan" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Detik" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Detik" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Menit" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Jangan ubah Kata Sandi" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "Tampilkan tabel" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Tabel Relasi" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "dalam sejam" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "per menit" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "per detik" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Tipe Pencarian" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 +#: server_status.php:623 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:623 +#: server_status.php:631 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" "MySQL server ini telah berjalan secara berturut-turut selama %s. Server " "dijalankan pada tanggal %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Lalu-Lintas" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Penerimaan" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Pengiriman" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Koneksi" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Gagal" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Pembatalan" -#: server_status.php:784 -msgid "Processes" -msgstr "Proses Aktif" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8530,78 +8563,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8609,7 +8642,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8617,42 +8650,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8660,33 +8693,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8695,227 +8728,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8923,99 +8956,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9023,18 +9056,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9042,7 +9075,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9165,7 +9198,7 @@ msgstr "Variabel dan penyetelan server" msgid "Session value" msgstr "Nilai dari Session" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Nilai Global" diff --git a/po/it.po b/po/it.po index 504a68b514..8a1ae45762 100644 --- a/po/it.po +++ b/po/it.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-05-25 22:43+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -48,7 +48,7 @@ msgstr "Cerca" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "Chiave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Descrizione" @@ -167,7 +167,7 @@ msgstr "Tipo" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -196,7 +196,7 @@ msgstr "Collegamenti a" msgid "Comments" msgstr "Commenti" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -212,7 +212,7 @@ msgstr "Commenti" msgid "No" msgstr "No" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -272,7 +272,7 @@ msgstr "Il database %s è stato copiato a %s" msgid "Rename database to" msgstr "Rinomina il database a" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Comando" @@ -374,7 +374,7 @@ msgstr "Righe" msgid "Size" msgstr "Dimensione" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "in uso" @@ -400,7 +400,7 @@ msgstr "Ultimo cambiamento" msgid "Last check" msgstr "Ultimo controllo" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -583,63 +583,63 @@ msgstr "Nella/e tabella/e:" msgid "Inside column:" msgstr "All'interno della colonna:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Non ci sono tabelle nel database" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "La tabella %s è stata svuotata" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "La vista %s è stata eliminata" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "La tabella %s è stata eliminata" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Il tracking è attivo." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Il tracking non è attivo." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Questa vista ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Vista" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replicazione" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Totali" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -647,23 +647,23 @@ msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL." msgid "With selected:" msgstr "Se selezionati:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Seleziona tutti" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Deseleziona tutti" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Controllo addizionale" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -671,54 +671,54 @@ msgstr "Controllo addizionale" msgid "Export" msgstr "Esporta" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Visualizza per stampa" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Svuota" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Elimina" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Controlla tabella" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Ottimizza tabella" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Ripara tabella" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analizza tabella" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Aggiungi prefisso alla tabella" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Sostituisci il prefisso della tabella" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Copia tabella col prefisso" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -733,7 +733,7 @@ msgstr "Tabelle monitorate" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -751,7 +751,7 @@ msgstr "Creato" msgid "Updated" msgstr "Aggiornato" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stato" @@ -852,8 +852,8 @@ msgstr "Il dump è stato salvato nel file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Stai probabilmente cercando di caricare sul server un file troppo grande. " "Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare " @@ -1056,151 +1056,7 @@ msgstr "Rimozione Utenti Selezionati" msgid "Close" msgstr "Chiudi" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Scelta del server" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Mostra il diagramma della query" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Totale" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Annulla" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Caricamento" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Elaborazione Richiesta" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Errore nel processare la richiesta" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Eliminazione colonna" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Creazione chiave primaria" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Rinominazione dei Database" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Ricarica Database" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Sto copiando il Database" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Sto cambiando il charset" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "La tabella deve avere come minimo una colonna" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Crea tabella" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Utilizza tabelle" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Ricerca in corso" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Nascondi i risultati della ricerca" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Mostra i risultati della ricerca" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Navigazione" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Cancellazione" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" -"Nota: Se il file contiene piú di una tabella, i dati saranno combinati in un " -"unica tabella" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Nascondi riquadro query SQL" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Mostra riquadro query SQL" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Modifica in linea" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1209,7 +1065,193 @@ msgstr "Modifica in linea" msgid "Edit" msgstr "Modifica" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Scelta del server" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query chart" +msgid "Live query chart" +msgstr "Mostra il diagramma della query" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Totale" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Scelta del server" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Processi" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Connessioni" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "Query SQL" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Statistiche query" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Annulla" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Caricamento" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Elaborazione Richiesta" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Errore nel processare la richiesta" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Eliminazione colonna" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Creazione chiave primaria" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Rinominazione dei Database" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Ricarica Database" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Sto copiando il Database" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Sto cambiando il charset" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "La tabella deve avere come minimo una colonna" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Crea tabella" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Utilizza tabelle" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Ricerca in corso" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Nascondi i risultati della ricerca" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Mostra i risultati della ricerca" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Navigazione" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Cancellazione" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" +"Nota: Se il file contiene piú di una tabella, i dati saranno combinati in un " +"unica tabella" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Nascondi riquadro query SQL" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Mostra riquadro query SQL" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Modifica in linea" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1217,41 +1259,41 @@ msgstr "Modifica" msgid "Save" msgstr "Salva" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Nascondi" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Nascondi criteri di ricerca" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Mostra criteri di ricerca" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Seleziona le chiavi referenziali" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Seleziona Foreign Key" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Seleziona la chiave primaria o una chiave univoca" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Scegli la colonna da mostrare" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1259,27 +1301,27 @@ msgstr "" "Non hai salvato i cambiamenti della disposizione. Questi cambiamenti saranno " "persi se non li salvi. Vuoi procedere?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Aggiungi un'opzione alla colonna " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Genera password" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Genera" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Cambia password" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Più" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1289,26 +1331,26 @@ msgstr "" "l'aggiornamento. La versione più recente è la %s, rilasciata il %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", versione stabile piú recente:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "aggiornata" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Fatto" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Precedente" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1316,231 +1358,231 @@ msgid "Next" msgstr "Prossimo" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Oggi" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Gennaio" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Febbraio" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Marzo" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Aprile" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Maggio" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Giugno" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Luglio" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Agosto" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Setttembre" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Ottobre" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Novembre" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Lug" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Ott" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dic" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Domenica" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Lunedì" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Martedì" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Mercoledì" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Giovedì" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Venerdì" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Gi" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Sett" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Ora" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minuto" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Secondo" @@ -1776,8 +1818,8 @@ msgstr "Benvenuto in %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La ragione di questo è che probabilmente non hai creato alcun file di " "configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno." @@ -1922,7 +1964,7 @@ msgstr "condiviso" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabelle" @@ -2055,7 +2097,7 @@ msgid "Documentation" msgstr "Documentazione" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "Query SQL" @@ -2084,7 +2126,7 @@ msgid "Create PHP Code" msgstr "Crea il codice PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Aggiorna" @@ -4860,8 +4902,8 @@ msgstr ", il nome della tabella diventerá @TABLE@" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi " "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " @@ -4883,7 +4925,7 @@ msgstr "Compressione:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Nessuno" @@ -5123,7 +5165,7 @@ msgid "The row has been deleted" msgstr "La riga è stata cancellata" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Rimuovi" @@ -5213,7 +5255,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Stato InnoDB" @@ -5621,8 +5663,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile " "su %sPrimeBase XT Home Page%s." @@ -5725,7 +5767,7 @@ msgstr "Mostra tipi MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Host" @@ -6447,13 +6489,13 @@ msgid "Slave status" msgstr "Stato slave" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variabile" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valore" @@ -6682,12 +6724,12 @@ msgid "Synchronize" msgstr "Sincronizza" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Log binario" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variabili" @@ -6972,7 +7014,7 @@ msgstr "Definizione PARTITION" msgid "+ Add a new value" msgstr "+ Aggiungi un nuovo valore" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Tempo" @@ -7176,7 +7218,7 @@ msgid "Protocol version" msgstr "Versione protocollo" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Utente" @@ -7326,8 +7368,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Sul server è in esecuzione Suhosin. Controlla la documentazione: %" -"sdocumentation%s per possibili problemi." +"Sul server è in esecuzione Suhosin. Controlla la documentazione: " +"%sdocumentation%s per possibili problemi." #: navigation.php:207 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -7629,17 +7671,17 @@ msgstr "Il file non esiste" msgid "Select binary log to view" msgstr "Selezionare il log binario da visualizzare" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "File" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Tronca le Query Mostrate" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Mostra query complete" @@ -8035,8 +8077,8 @@ msgstr "Elimina i databases gli stessi nomi degli utenti." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella " "dei privilegi di MySQL. Il contenuto di questa tabella può differire dai " @@ -8171,7 +8213,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Questo server é configurato come master in un processo di replicazione." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Mostra lo stato del master" @@ -8320,12 +8362,12 @@ msgstr "" "Questo server non é configurato come slave in un processo di replicazione. " "Vorresti configurarlo ora?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Il thread %s è stato terminato con successo." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8333,166 +8375,162 @@ msgstr "" "phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già " "stato terminato." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Handler" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Cache delle query" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Processi" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Dati temporanei" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Inserimento ritardato" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Key cache" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Joins" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Ordinando" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Coordinatore delle transazioni" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Rinfresca (chiudi) tutte le tabelle" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Mostra le tabelle aperte" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Mostra gli hosts slave" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Mostra lo stato degli slave" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Rinfresca la cache delle query" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Informazioni di Runtime" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Scelta del server" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Statistiche query" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Vedi la tabella di stato dello slave" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Aggiorna" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Secondo" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Secondo" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Minuto" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Non cambiare la password" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Mostra le tabelle aperte" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "Collegamenti Associati" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "all'ora" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "al minuto" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "al secondo" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Tipo di query" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Questo server MySQL sta girando da %s. É stato avviato il %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8500,19 +8538,19 @@ msgstr "" "Questo server MySQL funziona come un master e slave nel " "processo di replicazione." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Questo server MySQL funziona come un master nel processo di " "replicazione." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Questo server MySQL funziona come un slave nel processo di " "replicazione." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8520,15 +8558,15 @@ msgstr "" "Per ulteriori informazioni a riguardo lo stato di replicazione su questo " "server, prego vedi la seztione sulla replicazione." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Stato di replicazione" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Traffico" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8537,45 +8575,41 @@ msgstr "" "e per questa ragione le statistiche riportate dal server MySQL potrebbero " "non essere corrette." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Ricevuti" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Spediti" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Connessioni" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "max. connessioni contemporanee" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Tentativi falliti" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Fallito" -#: server_status.php:784 -msgid "Processes" -msgstr "Processi" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Impossibile effettuare la connessione al server MySQL" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8585,17 +8619,17 @@ msgstr "" "ma che oltrepassano il valore di binlog_cache_size e usano un file " "temporaneo per salvare gli statements dalle transazioni." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Il numero delle transazioni che usano la cache temporanea del log binario." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8607,11 +8641,11 @@ msgstr "" "grande, potresti voler aumentare il valore tmp_table_size, per fare im modo " "che le tabelle temporanee siano memory-based anzichè disk-based." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Numero di file temporanei che mysqld ha creato." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8619,7 +8653,7 @@ msgstr "" "Il numero di tabelle temporanee create automaticamente in memoria dal server " "durante l'esecuzione dei comandi." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8627,7 +8661,7 @@ msgstr "" "Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori " "(probabilmete chiave dublicata)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8635,23 +8669,23 @@ msgstr "" "Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato " "INSERT DELAYED occupa un thread." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Il numero di righe INSERT DELAYED scritte." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Il numero di comandi FLUSH eseguiti." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Il numero di comandi interni COMMIT eseguiti." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Il numero di volte in cui una riga è stata cancellata da una tabella." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8661,7 +8695,7 @@ msgstr "" "tabella sulla base di un nome dato. Questo è chaiamto discovery. " "Handler_discover indica il numero di volte che una tabella è stata trovata." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8672,7 +8706,7 @@ msgstr "" "degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia " "indicizzata." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8681,7 +8715,7 @@ msgstr "" "alta, è un buon indice che le tue query e le tue tabelle sono correttamente " "indicizzate." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8692,7 +8726,7 @@ msgstr "" "colonna indice con un range costante, oppure se stai facendo una scansione " "degli indici." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8701,7 +8735,7 @@ msgstr "" "chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare " "ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8714,7 +8748,7 @@ msgstr "" "MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano le " "chiavi correttamente." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8727,37 +8761,37 @@ msgstr "" "indicizzate, o che le query non sono state scritte per trarre vantaggi dagli " "indici che hai." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Il numero di comandi ROLLBACK interni." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Il numero di richieste per aggiornare una riga in una tabella." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Il numero di richieste per inserire una riga in una tabella." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Il numero di pagine che contengono dati (sporchi o puliti)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Il numero di pagine attualmente sporche." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Il numero di buffer pool pages che hanno avuto richiesta di essere " "aggiornate." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Il numero di pagine libere." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8767,7 +8801,7 @@ msgstr "" "attualmente in lettura o in scittura e non possono essere aggiornate o " "rimosse per altre ragioni." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8779,11 +8813,11 @@ msgstr "" "come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Il numero totale di buffer pool, in pagine." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8791,7 +8825,7 @@ msgstr "" "Il numero di read-aheads \"random\" InnoDB iniziate. Questo accade quando " "una query legge una porzione di una tabella, ma in ordine casuale." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8799,11 +8833,11 @@ msgstr "" "Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB " "esegue una scansione completa sequenziale di una tabella." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Il numero di richieste logiche che InnoDb ha fatto." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8811,7 +8845,7 @@ msgstr "" "Il numero di richieste logiche che InnoDB non può soddisfare dal buffer pool " "e che devono fare una lettura di una pagina singola." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8826,55 +8860,55 @@ msgstr "" "dimesione del buffer pool è stata settata correttamente questo valore " "dovrebbe essere basso." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Il numero di scritture effettuate nel buffer pool InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Il numero delle operazioni fsync() fino ad ora." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Il numero di operazioni fsync() in attesa." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Il numero di letture in attesa." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Il numero di scritture in attesa." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "La quantità di dati letti fino ad ora, in bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Il numero totale di dati letti." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Il numero totale di dati scritti." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "La quantità di dati scritti fino ad ora, in bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8882,35 +8916,35 @@ msgstr "" "Il numero di attese che abbiamo avuto perchè il buffer di log era troppo " "piccolo e abbiamo duvuto attendere che fosse aggiornato prima di continuare." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Il numero di richieste di scrittura dei log." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Il numero scritture fisiche del log file." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Il numero di scritture effettuate da fsync() sul log file." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Il numero degli fsyncs in sospeso sul log file." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Il numero di scritture in sospeso sul log file." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Il numero di bytes scritti sul log file." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Il numero di pagine create." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8919,51 +8953,51 @@ msgstr "" "valori sono conteggiati nelle pagine; la dimesione delle pagine permette di " "convertirli facilmente in bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Il numero di pagine lette." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Il numero di pagine scritte." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Il numero di row locks attualmente in attesa." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Il tempo medio per l'acquisizione di un row lock, in millisecondi." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Il tempo totale per l'acquisizione di un row locks, in millisecondi." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Il tempo massimo per l'acquisizione di un row lock, in millisecondi." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Il numero di volte che un row lock ha dovuto attendere." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Il numero di righe cancellate da una tabella InnoDB." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Il numero di righe inserite da una tabella InnoDB." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Il numero di righe lette da una tabella InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Il numero di righe aggiornate da una tabella InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8972,7 +9006,7 @@ msgstr "" "cambiati, ma che non sono stai aggiornati su disco. É conosciuto con il nome " "di Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8980,7 +9014,7 @@ msgstr "" "Il numero di blocchi non usati nella cache chiave. Puoi usare questo valore " "per determinare quanta cache chiave è in uso." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8990,11 +9024,11 @@ msgstr "" "segnale che indica il numero massimo di blocchi che sono stati in uso " "contemporaneamente." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Il numero di richieste per le ggere un blocco chiave dalla cache." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9005,15 +9039,15 @@ msgstr "" "rapporto di cache miss rate può essere calcolato come Key_reads/" "Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Il numero di richieste per scrivere una blocco chiave nella cache." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Il numero di scritture fisiche di un blocco chiave sul disco." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9024,18 +9058,18 @@ msgstr "" "query per la stessa operazione di query. Il valore di default è 0, che " "significa che nessuna query è stata ancora compilata." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "In numero di righe in attesa di essere scritte nella coda INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9043,39 +9077,39 @@ msgstr "" "Il numero di tabelle che sono state aperte. Se il valore opened_tables è " "grande, probabilmente il valore di table cache è troppo piccolo." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Il numero di file che sono aperti." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Il numero di stream che sono aperti (usato principalmente per il logging)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Il numero di tabelle che sono aperte." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "L'ammontare di memoria libera nella cache delle query." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Il numero di cache hits." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Il numero di query aggiunte alla cache." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9088,7 +9122,7 @@ msgstr "" "una strategia di \"meno usate recentemente\" (LRU - least recently used) per " "decidere quali query rimuovere dalla cache." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9096,19 +9130,19 @@ msgstr "" "Il numero di query non in cache (impossibilità di inserirle nella cache " "oppure non inserite per i settaggi del parametro query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Il numero di query registrate nella cache." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Il numero totale di blocchi nella cache delle query." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Lo sato delle repliche failsafe (non ancora implementato)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9116,13 +9150,13 @@ msgstr "" "Il numero di joins che non usano gli indici. Se questo valore non è 0, " "dovresti controllare attentamente gli indici delle tue tabelle." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Il numero di joins che usano una ricerca limitata su di una tabella di " "riferimento." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9131,7 +9165,7 @@ msgstr "" "ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli " "indici delle tue tabelle.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9139,17 +9173,17 @@ msgstr "" "Il numero di joins che usano un range sulla prima tabella. (Non è, " "solitamente, un valore critico anche se è grande.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" "Il numero di join che hanno effettuato una scansione completa della prima " "tabella." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Il numero di tabelle temporaneamente aperte da processi SQL slave." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9157,12 +9191,12 @@ msgstr "" "Numero totale di volte (dalla partenza) in cui la replica slave SQL ha " "ritentato una transazione." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Questa chiave è ON se questo è un server slave connesso ad un server master." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9170,12 +9204,12 @@ msgstr "" "Numero di processi che hanno impiegato più di slow_launch_time secondi per " "partire." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Numero di query che hanno impiegato più di long_query_time secondi." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9185,23 +9219,23 @@ msgstr "" "fatte. Se questo valore è grande, dovresti incrementare la variabile di " "sistema sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Il numero di ordinamenti che sono stati eseguiti in un intervallo." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Il numero di righe ordinate." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Il numero di ordinamenti che sono stati fatti leggendo la tabella." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Il numero di volte che un table lock è stato eseguito immediatamente." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9213,7 +9247,7 @@ msgstr "" "performance, dovresti prima ottimizzare le query, oppure sia utilizzare le " "repliche, sia dividere le tabelle." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9223,11 +9257,11 @@ msgstr "" "essere calcolato come processi_creati/connessioni. Se questo valore è rosso " "devi aumentare la tua thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Il numero di connessioni correntemente aperte." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9239,7 +9273,7 @@ msgstr "" "(Normalmente questo non fornisce un significatico incremento delle " "performace se hai una buona implementazione dei processi.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Il numero di processi non in attesa." @@ -9366,7 +9400,7 @@ msgstr "Variabili e impostazioni del server" msgid "Session value" msgstr "Valore sessione" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Valore globale" @@ -9637,10 +9671,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %" -"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. " -"Comunque, la protezione a base di IP potrebbe non essere affidabile se il " -"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " +"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - " +"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia" +"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se " +"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " "connessi." #: setup/lib/index.lib.php:268 @@ -9655,8 +9689,8 @@ msgstr "" "Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il " "nome utente e la parola chiave per l'auto-login, questo non è desiderato per " "gli host in uso live. Chiunque che conosce o indovina il tuo URL di " -"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %" -"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta " +"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/ja.po b/po/ja.po index f90d0f4ede..bb62e3d813 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-15 12:47+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "検索" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "キー名" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "説明" @@ -166,7 +166,7 @@ msgstr "種別" msgid "Null" msgstr "NULL" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "リンク先" msgid "Comments" msgstr "コメント" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "コメント" msgid "No" msgstr "いいえ" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "データベース %s を %s にコピーしました" msgid "Rename database to" msgstr "新しいデータベース名" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "コマンド" @@ -373,7 +373,7 @@ msgstr "行" msgid "Size" msgstr "サイズ" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "使用中" @@ -399,7 +399,7 @@ msgstr "最終更新" msgid "Last check" msgstr "最終検査" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -579,61 +579,61 @@ msgstr "検索するテーブル:" msgid "Inside column:" msgstr "検索するカラム:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "このデータベースにはテーブルがありません" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "テーブル %s を空にしました" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "ビュー %s を破棄しました" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "テーブル %s を削除しました" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "SQL コマンドの追跡はアクティブです。" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "SQL コマンドの追跡は非アクティブです。" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "ビュー" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "レプリケーション" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "合計" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -641,23 +641,23 @@ msgstr "%s はこの MySQL サーバのデフォルトストレージエンジ msgid "With selected:" msgstr "チェックしたものを:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "すべてチェックする" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "すべてのチェックを外す" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認する" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -665,54 +665,54 @@ msgstr "オーバーヘッドのあるテーブルを確認する" msgid "Export" msgstr "エクスポート" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "印刷用画面" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "空にする" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "削除" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "テーブルをチェックする" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "テーブルを最適化する" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "テーブルを修復する" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "テーブルを分析する" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "接頭辞をテーブル名に追加する" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "テーブル名の接頭辞を付け替える" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "接頭辞を付け替えてテーブルをコピーする" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "データ辞書" @@ -727,7 +727,7 @@ msgstr "SQL コマンドを追跡しているテーブル" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -745,7 +745,7 @@ msgstr "作成日時" msgid "Updated" msgstr "更新日時" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "状態" @@ -847,8 +847,8 @@ msgstr "ダンプをファイル %s に保存しました" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ" "メント%s をご覧ください" @@ -1046,148 +1046,7 @@ msgstr "選択したユーザを削除する" msgid "Close" msgstr "閉じる" -#: js/messages.php:64 server_status.php:397 -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "リアルタイムでのトラフィックグラフ" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "クエリをグラフで表示" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "合計" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "キャンセル" - -#: js/messages.php:83 -msgid "Loading" -msgstr "読み込み中" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "要求を処理中" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "要求処理中でのエラー" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "カラムを削除中" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "主キーの追加中" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "データベースのリネーム中" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "データベースの再読み込み中" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "データベースをコピー中" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "文字セットの変更中" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "テーブルには最低ひとつのカラムが必要です" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "テーブルを作成" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "テーブルを挿入する" - -#: js/messages.php:104 -msgid "Searching" -msgstr "検索中" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "検索結果を隠す" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "検索結果を表示する" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "表示中" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "削除中" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" -"注意:ファイルに複数のテーブルが含まれている場合、それらは1つに統合されま" -"す。" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "クエリボックスを隠す" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "クエリボックスを表示" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "インライン編集" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1196,7 +1055,189 @@ msgstr "インライン編集" msgid "Edit" msgstr "編集" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "リアルタイムでのトラフィックグラフ" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query chart" +msgid "Live query chart" +msgstr "クエリをグラフで表示" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "合計" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server traffic" +msgid "Server traffic (in kB)" +msgstr "サーバのトラフィック" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "プロセス" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "接続" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL クエリ" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "クエリの統計" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "キャンセル" + +#: js/messages.php:96 +msgid "Loading" +msgstr "読み込み中" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "要求を処理中" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "要求処理中でのエラー" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "カラムを削除中" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "主キーの追加中" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "データベースのリネーム中" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "データベースの再読み込み中" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "データベースをコピー中" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "文字セットの変更中" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "テーブルには最低ひとつのカラムが必要です" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "テーブルを作成" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "テーブルを挿入する" + +#: js/messages.php:117 +msgid "Searching" +msgstr "検索中" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "検索結果を隠す" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "検索結果を表示する" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "表示中" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "削除中" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" +"注意:ファイルに複数のテーブルが含まれている場合、それらは1つに統合されま" +"す。" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "クエリボックスを隠す" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "クエリボックスを表示" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "インライン編集" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1204,41 +1245,41 @@ msgstr "編集" msgid "Save" msgstr "保存する" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "隠す" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "検索条件を隠す" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "検索条件を表示する" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "無視" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "参照されているキーを選択" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "外部キーを選択してください" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "主キーまたはユニークキーを選択してください" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "表示するカラムの選択" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1246,27 +1287,27 @@ msgstr "" "レイアウトの変更を保存されていません。保存していない場合、それらは失われま" "す。このまま続けてもよろしいですか?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "カラムに対するオプションを追加する" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "パスワードを生成する" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "生成する" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "パスワードを変更する" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "その他" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1276,26 +1317,26 @@ msgstr "" "します。最新バージョンは %s で、%s にリリースされています。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", 最終安定バージョン:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "最新版" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "決定" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "前へ" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1303,231 +1344,231 @@ msgid "Next" msgstr "次へ" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "今日" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "1 月" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "2 月" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "3 月" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "4 月" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "5 月" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "6 月" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "7 月" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "8 月" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "9 月" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "10 月" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "11 月" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "12 月" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "1 月" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "2 月" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "3 月" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "4 月" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "5 月" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "6 月" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "12 月" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "日" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "月" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "火" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "水" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "木" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "金" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "土" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "土" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "月" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "火" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "水" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "木" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "金" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "土" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "週" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "時" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "分" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "秒" @@ -1753,11 +1794,11 @@ msgstr "%s へようこそ" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2" -"$s を利用して設定ファイルを作成してください" +"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ" +"ト%2$s を利用して設定ファイルを作成してください" #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -1896,7 +1937,7 @@ msgstr "共有" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "テーブル" @@ -2026,7 +2067,7 @@ msgid "Documentation" msgstr "ドキュメント" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "実行した SQL" @@ -2055,7 +2096,7 @@ msgid "Create PHP Code" msgstr "PHP コードの作成" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "再描画" @@ -3052,7 +3093,9 @@ msgstr "変更追跡機能" msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." -msgstr "データベースで行われた変更の追跡機能です。これには、phpMyAdmin の設定保存場所が必要です。" +msgstr "" +"データベースで行われた変更の追跡機能です。これには、phpMyAdmin の設定保存場所" +"が必要です。" #: libraries/config/messages.inc.php:208 msgid "Customize export options" @@ -4083,7 +4126,9 @@ msgstr "バージョンの自動作成" msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" -msgstr "データベースにユーザ環境設定を保存しない場合は空欄にします。[kbd]pma_config[/kbd] としておくのがいいでしょう。" +msgstr "" +"データベースにユーザ環境設定を保存しない場合は空欄にします。[kbd]pma_config[/" +"kbd] としておくのがいいでしょう。" #: libraries/config/messages.inc.php:441 msgid "User preferences storage table" @@ -4750,8 +4795,8 @@ msgstr "、@TABLE@ はテーブル名に" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用" "することができます。また、埋め込み変数変換も行われます(%3$s変換されま" @@ -4773,7 +4818,7 @@ msgstr "圧縮:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "なし" @@ -5011,7 +5056,7 @@ msgid "The row has been deleted" msgstr "行を削除しました" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "停止" @@ -5101,7 +5146,7 @@ msgstr "" msgid "Buffer Pool" msgstr "バッファプール" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB ステータス" @@ -5496,8 +5541,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ" "ト%sにあります。" @@ -5598,7 +5643,7 @@ msgstr "MIME タイプの表示" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "ホスト" @@ -6282,8 +6327,8 @@ msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -"念のため、設定ファイル (my.cnf) 内でサーバ ID がユニークであるか確認してください。もしそうでないならば、[mysqld] " -"セクションに以下の行を追加してください。" +"念のため、設定ファイル (my.cnf) 内でサーバ ID がユニークであるか確認してくだ" +"さい。もしそうでないならば、[mysqld] セクションに以下の行を追加してください。" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 @@ -6302,13 +6347,13 @@ msgid "Slave status" msgstr "スレーブステータス" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "変数" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "値" @@ -6537,12 +6582,12 @@ msgid "Synchronize" msgstr "同期" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "バイナリログ" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "変数" @@ -6822,7 +6867,7 @@ msgstr "パーティションの定義" msgid "+ Add a new value" msgstr "+ 新しい値を追加する" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "時間" @@ -7017,7 +7062,7 @@ msgid "Protocol version" msgstr "プロトコルバージョン" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "ユーザ" @@ -7469,17 +7514,17 @@ msgstr "ファイルが存在しません" msgid "Select binary log to view" msgstr "表示するバイナリログを選択してください" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "ファイル" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "クエリの表示を切り詰める" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "クエリ全体を表示" @@ -7867,8 +7912,8 @@ msgstr "ユーザと同名のデータベースを削除する" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手" "作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの" @@ -7995,7 +8040,7 @@ msgstr "マスタサーバを %s へ切り替えるのに成功しました。" msgid "This server is configured as master in a replication process." msgstr "このサーバのレプリケーションプロセスに、マスタが設定されています。" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "マスタステータスの表示" @@ -8024,9 +8069,12 @@ msgid "" "ignore all databases by default and allow only certain databases to be " "replicated. Please select the mode:" msgstr "" -"このサーバは、レプリケーションプロセスのマスタサーバとして構成されていません。以下のいずれかを選択できます。1つは、特定のデータベースを無視して残り全て" -"のデータベースをレプリケーションするモード(データベースの大部分をレプリケーションする場合に便利です。)。もう1つは、デフォルトで全てのデータベースを無" -"視して、特定のデータベースだけのレプリケーションを許可するモード。以下よりいずれかのモードを選択してください。" +"このサーバは、レプリケーションプロセスのマスタサーバとして構成されていませ" +"ん。以下のいずれかを選択できます。1つは、特定のデータベースを無視して残り全" +"てのデータベースをレプリケーションするモード(データベースの大部分をレプリ" +"ケーションする場合に便利です。)。もう1つは、デフォルトで全てのデータベース" +"を無視して、特定のデータベースだけのレプリケーションを許可するモード。以下よ" +"りいずれかのモードを選択してください。" #: server_replication.php:219 msgid "Replicate all databases; Ignore:" @@ -8054,8 +8102,9 @@ msgid "" "should see a message informing you, that this server is configured as " "master" msgstr "" -"MySQL サーバが再起動したら、「実行する」ボタンをクリックしてください。その後、このサーバマスタとして設定されていることを知らせるメ" -"ッセージが表示されます。" +"MySQL サーバが再起動したら、「実行する」ボタンをクリックしてください。その" +"後、このサーバマスタとして設定されていることを知らせるメッセージが表" +"示されます。" #: server_replication.php:291 msgid "Slave SQL Thread not running!" @@ -8143,169 +8192,157 @@ msgstr "" "このサーバのレプリケーションプロセスには、スレーブが設定されていません。設定を行いますか?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "スレッド %s は正常終了しました" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "ハンドラ" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "クエリキャッシュ" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "スレッド" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "一時データ" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "遅延インサート" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "キーキャッシュ" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "結合" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "ソート中" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "トランザクションコーディネータ" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "すべてのテーブルをフラッシュする(閉じる)" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "開いているテーブルを表示する" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "スレーブホストを表示する" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "スレーブの状態を表示する" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "クエリキャッシュをフラッシュする" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "ランタイム情報" -#: server_status.php:371 -#| msgid "Server Choice" +#: server_status.php:385 msgid "Server traffic" msgstr "サーバのトラフィック" -#: server_status.php:372 -msgid "Query statistics" -msgstr "クエリの統計" - -#: server_status.php:373 -#| msgid "See slave status table" +#: server_status.php:387 msgid "All status variables" msgstr "全ての状態変数" -#: server_status.php:383 server_status.php:416 -#| msgid "Refresh" +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "再描画間隔" -#: server_status.php:384 server_status.php:417 -#| msgid "Second" +#: server_status.php:398 server_status.php:431 msgid "second" msgstr "秒" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 -#| msgid "Second" +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 msgid "seconds" msgstr "秒" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 -#| msgid "Minute" +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 msgid "minutes" msgstr "分" -#: server_status.php:446 -#| msgid "Do not change the password" +#: server_status.php:460 msgid "Containing the word:" msgstr "含まれている文字:" -#: server_status.php:451 -#| msgid "Show open tables" +#: server_status.php:465 msgid "Show only alert values" msgstr "警告値のみ表示する" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "種別によるフィルタ..." -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "関連リンク" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "/時" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "/分" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "/秒" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "クエリ種別" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 +#: server_status.php:623 #, php-format msgid "Network traffic since startup: %s" msgstr "起動してからのネットワークトラフィック:%s" -#: server_status.php:623 +#: server_status.php:631 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "この MySQL サーバの稼働時間: %s (起動時刻: %s)" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8313,34 +8350,35 @@ msgstr "" "この MySQL サーバは、レプリケーションプロセスのマスタス" "レーブとして動作しています。" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "この MySQL サーバは、レプリケーションプロセスのマスタとして動作" "しています。" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "この MySQL サーバは、レプリケーションプロセスのスレーブとして動" "作しています。" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -"サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" +"サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "レプリケーションステータス" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "トラフィック" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8348,44 +8386,39 @@ msgstr "" "処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ" "が報告してくる統計は不正確なことがあります" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "受信済" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "送信済" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "接続" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "最大同時接続数" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "失敗回数" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "中断" -#: server_status.php:784 -msgid "Processes" -msgstr "プロセス" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 -#| msgid "Whether to enable SSL for connection to MySQL server." +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL サーバへの接続を試みて失敗した回数。" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8394,16 +8427,16 @@ msgstr "" "一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた" "め一時ファイルにステートメントを保存したトランザクション数" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "一時バイナリログキャッシュを使用したトランザクション数" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL サーバへの接続試行回数(成否に関わらず)。" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8414,24 +8447,24 @@ msgstr "" "Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ" "スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "mysqld が生成した一時ファイル数" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8439,23 +8472,23 @@ msgstr "" "使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ" "ルの数だけ固有のスレッドが用意されます" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED で書き込まれた行数" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "FLUSH 文の実行回数" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "内部で COMMIT 文を実行した回数" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "テーブルから行を削除した回数" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8465,7 +8498,7 @@ msgstr "" "ての情報を持っているか問い合わせることができます。これを開示と言いますが、" "Handler_discover はその開示されたタイムテーブルの数です" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8475,7 +8508,7 @@ msgstr "" "もインデックスのフルスキャンを実行しているものと思われます。例えば SELECT " "col1 FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8483,7 +8516,7 @@ msgstr "" "キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ" "ルが適切にインデックスされているものと考えられます" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8492,7 +8525,7 @@ msgstr "" "キーの順序通りに次の行を読み込んだリクエストの数。この値はインデックス列のク" "エリに範囲指定をしているか、インデックススキャンを行っているときに増加します" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8500,7 +8533,7 @@ msgstr "" "キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER " "BY ... DESC の最適化に利用されます" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8512,7 +8545,7 @@ msgstr "" "キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に" "不適切なところがあります" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8523,36 +8556,36 @@ msgstr "" "キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適" "切か、クエリがインデックスを利用するように書かれていないことを意味します" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "内部で ROLLBACK 文を実行した回数" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "テーブル内の行を更新したリクエストの数" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "テーブル内に行を挿入したリクエストの数" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" "データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "現在のダーティページの数" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "フラッシュリクエストを受けたバッファプールのページ数" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "空きページ数" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8562,7 +8595,7 @@ msgstr "" "るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し" "たりできなくなっているページの数です" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8574,11 +8607,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計" "算できます" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "ページのバッファプールサイズの合計" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8586,7 +8619,7 @@ msgstr "" "InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン" "ダムな順番でスキャンするときに発生します" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8594,11 +8627,11 @@ msgstr "" "InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル" "なフルテーブルスキャンを行うときに発生します" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB が実行した論理読み込みリクエストの数" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8606,7 +8639,7 @@ msgstr "" "InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ" "ばならなかった論理読み込みの回数" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8620,51 +8653,51 @@ msgstr "" "そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され" "ていれば、この値は小さいはずです" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB バッファプールへの書き込み回数" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "これまでに fsync() を実行した回数" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "現在保留されている fsync() の回数" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "現在保留されている読み込みの数" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "現在保留されている書き込みの数" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "これまでのデータ読み込み量 (単位:バイト)" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "データ読み込み回数の合計" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "データ書き込み回数の合計" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "これまでのデータの書き込み量 (単位:バイト)" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8672,35 +8705,35 @@ msgstr "" "ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生" "したウェイトの回数" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "ログ書き込みリクエストの数" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "ログファイルへの物理書き込みの回数" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "ログファイルへの fsync 書き込みの回数" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "保留中のログファイルへの fsync 回数" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "保留中のログファイルへの書き込み回数" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "ログファイルに書き込んだバイト数" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "作成されたページ数" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8708,51 +8741,51 @@ msgstr "" "コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位" "で計算されますが、この値を使えば簡単にバイト単位に変換できます" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "読み込んだページ数" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "書き込んだページ数" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "現在待機中の行ロックの数" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要する平均時間 (単位:ミリ秒)" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "行ロック取得時に待機した回数" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB テーブルから削除した行数" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB テーブルに挿入した行数" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB テーブルから読み込んだ行数" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB テーブルで更新された行数" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8760,7 +8793,7 @@ msgstr "" "変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの" "数。以前は Not_flushed_key_blocks でした" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8768,7 +8801,7 @@ msgstr "" "キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え" "ます" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8777,11 +8810,11 @@ msgstr "" "キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ" "クの最大数です" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "キャッシュからキーブロックを読み込んだリクエストの数" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8791,15 +8824,15 @@ msgstr "" "く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/" "Key_read_requests で計算できます" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "キャッシュにキーブロックを書き込んだリクエストの数" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "ディスクにキーブロックを物理書き込みした回数" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8809,17 +8842,17 @@ msgstr "" "クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ" "フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "サーバが起動してからの同時接続の最大数。" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8827,40 +8860,41 @@ msgstr "" "開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ" "シュの値が小さすぎます" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "開いているファイルの数" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "開いているストリームの数 (主にログの記録用です)" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "開いているテーブルの数" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -"クエリキャッシュ内の空きメモリのブロック数。この値が高い場合は 断片化が起こっていることを示しています。FLUSH QUERY CACHE " -"文を発行することによって解決できるかもしれません。" +"クエリキャッシュ内の空きメモリのブロック数。この値が高い場合は 断片化が起こっ" +"ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解決でき" +"るかもしれません。" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "クエリキャッシュの空きメモリ量" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "キャッシュのヒット数" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "キャッシュに追加されたクエリの数" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8872,7 +8906,7 @@ msgstr "" "エリキャッシュは最後に使われた時刻が最も古いものから削除する(LRU)戦略に従って" "削除するクエリを決めます" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8880,19 +8914,19 @@ msgstr "" "キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ" "シュしないことになっている) クエリの数" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "キャッシュに登録されているクエリの数" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "クエリキャッシュの総ブロック数" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "フェイルセーフレプリケーションの状態 (未実装)" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8900,11 +8934,11 @@ msgstr "" "インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン" "デックスをよく確認してください" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "参照テーブルで範囲検索をした結合の数" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8912,7 +8946,7 @@ msgstr "" "キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数" "(0 でない場合はテーブルのインデックスをよく確認してください)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8920,15 +8954,15 @@ msgstr "" "最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ" "ん)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "最初のテーブルをフルスキャンした結合の数" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8936,22 +8970,22 @@ msgstr "" "レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起" "動時からの合計)" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "このサーバがマスタに接続するスレーブである場合は ON になります" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8960,23 +8994,23 @@ msgstr "" "ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合" "は sort_buffer_size システム変数の値を増やした方がよいでしょう" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "範囲指定付きでソートが行われた回数" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "ソート済の行数" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "テーブルをスキャンしたときに実行されたソートの回数" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "テーブルロックをすぐに取得できた回数" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8987,7 +9021,7 @@ msgstr "" "フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで" "もだめならテーブルを分割するか、レプリケーションを利用してください" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8997,11 +9031,11 @@ msgstr "" "Connections で計算できます。この値が赤くなっている場合は thread_cache_size を" "大きくしてください" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "現在開いている接続の数" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9012,7 +9046,7 @@ msgstr "" "thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題" "がない場合はふつうあまりパフォーマンスは向上しません)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "スリープしていないスレッドの数" @@ -9135,7 +9169,7 @@ msgstr "サーバ変数と設定値" msgid "Session value" msgstr "セッション値" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "グローバル値" @@ -9171,7 +9205,9 @@ msgstr "" msgid "" "If your server is also configured to accept HTTPS requests follow [a@%s]this " "link[/a] to use a secure connection." -msgstr "サーバが HTTPS 要求を受け入れるように構成されている場合、[a@%s]このリンク[/a]をたどり安全な接続を使用するようにしてください。" +msgstr "" +"サーバが HTTPS 要求を受け入れるように構成されている場合、[a@%s]このリンク[/a]" +"をたどり安全な接続を使用するようにしてください。" #: setup/frames/index.inc.php:64 msgid "Insecure connection" @@ -9349,7 +9385,8 @@ msgstr "" #: setup/lib/index.lib.php:256 #, php-format msgid "This %soption%s should be enabled if your web server supports it." -msgstr "ウェブサーバでサポートしている場合、この%sオプション%sを有効にするべきです。" +msgstr "" +"ウェブサーバでサポートしている場合、この%sオプション%sを有効にするべきです。" #: setup/lib/index.lib.php:258 #, php-format @@ -9399,10 +9436,11 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%" -"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し" -"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続" -"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。" +"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定" +"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ" +"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい" +"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま" +"せん。" #: setup/lib/index.lib.php:268 #, php-format @@ -9581,7 +9619,6 @@ msgid "Stacked" msgstr "積み上げ形式" #: tbl_chart.php:94 -#| msgid "Report title:" msgid "Chart title" msgstr "グラフの題名" @@ -9602,22 +9639,18 @@ msgid "The remaining columns" msgstr "textarea の 1 行の文字数" #: tbl_chart.php:128 -#| msgid "X Axis label" msgid "X-Axis label:" msgstr "横軸のラベル:" #: tbl_chart.php:128 -#| msgid "Value" msgid "X Values" msgstr "横軸の値" #: tbl_chart.php:129 -#| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "縦軸のラベル:" #: tbl_chart.php:129 -#| msgid "Value" msgid "Y Values" msgstr "縦軸の値" diff --git a/po/ka.po b/po/ka.po index ce3ece0d9d..fccd763c8c 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -46,7 +46,7 @@ msgstr "ძებნა" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -83,7 +83,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "აღწერილობა" @@ -167,7 +167,7 @@ msgstr "ტიპი" msgid "Null" msgstr "ნული" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -196,7 +196,7 @@ msgstr "Links to" msgid "Comments" msgstr "კომენტარები" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -212,7 +212,7 @@ msgstr "კომენტარები" msgid "No" msgstr "არა" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -272,7 +272,7 @@ msgstr "Database %s has been copied to %s" msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "ბრძანება" @@ -382,7 +382,7 @@ msgstr "სტრიქონები" msgid "Size" msgstr "ზომა" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "in use" @@ -408,7 +408,7 @@ msgstr "უკანასკნელი განახლება" msgid "Last check" msgstr "Last check" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -601,65 +601,65 @@ msgstr "ცხრილ(ებ)ში:" msgid "Inside column:" msgstr "ველში:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "No tables found in database." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "ხედო" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "რეპლიკაცია" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "ჯამი" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -667,23 +667,23 @@ msgstr "%s is the default storage engine on this MySQL server." msgid "With selected:" msgstr "With selected:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "ყველას შემოწმება" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "მონიშნვის მოხსნა ყველასთვის" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -691,59 +691,59 @@ msgstr "Check tables having overhead" msgid "Export" msgstr "ექსპორტი" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "ცარიელი" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Drop" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "ცხრილის შემოწმება" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "ცხრილის ოპტიმიზება" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "ცხრილის აღდგენა" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy msgid "Add prefix to table" msgstr "მონაცემთა ბაზები არაა" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Replace table data with file" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Replace table data with file" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "მონაცემების ლექსიკონი" @@ -759,7 +759,7 @@ msgstr "დაბლოკილი ცხრილების გამოტ #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -779,7 +779,7 @@ msgstr "შექმნა" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "მდგომარეობა" @@ -883,11 +883,11 @@ msgstr "Dump has been saved to file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1092,181 +1092,7 @@ msgstr "Remove selected users" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "სერვერის არჩევა" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "SQL Query box" -msgid "Live query chart" -msgstr "SQL Query box" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "სულ" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "გაუქმება" - -#: js/messages.php:83 -#, fuzzy -#| msgid "Load" -msgid "Loading" -msgstr "ჩატვირთვა" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "პროცესები" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Rename database to" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Rename database to" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Copy database to" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "სიმბოლოთა ნაკრები" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Table must have at least one field." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "ცხრილის შექმნა" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "გამოიყენე ცხრილები" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "ძებნა" - -#: js/messages.php:105 -#, fuzzy -#| msgid "SQL Query box" -msgid "Hide search results" -msgstr "SQL Query box" - -#: js/messages.php:106 -#, fuzzy -#| msgid "SQL Query box" -msgid "Show search results" -msgstr "SQL Query box" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "არჩევა" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "%s-ის წაშლა" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -#| msgid "SQL Query box" -msgid "Hide query box" -msgstr "SQL Query box" - -#: js/messages.php:115 -#, fuzzy -#| msgid "SQL Query box" -msgid "Show query box" -msgstr "SQL Query box" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "ძრავები" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1275,7 +1101,225 @@ msgstr "ძრავები" msgid "Edit" msgstr "რედაქტირება" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "სერვერის არჩევა" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "SQL Query box" +msgid "Live query chart" +msgstr "SQL Query box" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "სულ" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "სერვერის არჩევა" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "პროცესები" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "კავშირები" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL მოთხოვნები" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "სტატისტიკის ჩევნება" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "გაუქმება" + +#: js/messages.php:96 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "ჩატვირთვა" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "პროცესები" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Rename database to" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Rename database to" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Copy database to" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "სიმბოლოთა ნაკრები" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Table must have at least one field." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "ცხრილის შექმნა" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "გამოიყენე ცხრილები" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "ძებნა" + +#: js/messages.php:118 +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide search results" +msgstr "SQL Query box" + +#: js/messages.php:119 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show search results" +msgstr "SQL Query box" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "არჩევა" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s-ის წაშლა" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL Query box" + +#: js/messages.php:128 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL Query box" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "ძრავები" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1283,79 +1327,79 @@ msgstr "რედაქტირება" msgid "Save" msgstr "შენახვა" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "დამალვა" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL Query box" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL Query box" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "იგნორირება" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "აირჩიეთ საჩვენებელი ველი" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "პაროლის დაგენერირება" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "დაგენერირება" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "პაროლის შეცვლა" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "ორშ" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1365,33 +1409,33 @@ msgstr "" "upgrading. The newest version is %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "მონაცემთა ბაზები არაა" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "შემოწირულობა" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "წინა" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1399,96 +1443,96 @@ msgid "Next" msgstr "შემდეგი" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "სულ" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ბინარული" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "მარ" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "აპრ" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "მაი" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ივნ" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ივლ" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "აგვ" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ოქტ" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1496,178 +1540,178 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "დეკ" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "კვი" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "ორშ" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "სამ" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "პარ" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "შაბ" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "კვი" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "ორშ" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "სამ" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ოთხ" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "ხუთ" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "პარ" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "შაბ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "ვიკი" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1908,11 +1952,11 @@ msgstr "მოგესალმებათ %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -2053,7 +2097,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "ცხრილები" @@ -2191,7 +2235,7 @@ msgid "Documentation" msgstr "დოკუმენტაცია" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL მოთხოვნა" @@ -2222,7 +2266,7 @@ msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "განახლება" @@ -5089,12 +5133,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5113,7 +5157,7 @@ msgstr "შეკუმშვა" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "არაა" @@ -5375,7 +5419,7 @@ msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Kill" @@ -5468,7 +5512,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB-ის მდგომარეობა" @@ -5862,8 +5906,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5990,7 +6034,7 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "ჰოსტი" @@ -6698,13 +6742,13 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "ცვლადი" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "მნიშვნელობა" @@ -6947,12 +6991,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "ბინარული ჟურნალი" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "ცვლადები" @@ -7252,7 +7296,7 @@ msgstr "PARTITION definition" msgid "+ Add a new value" msgstr "ახალი სერვერის დამატება" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "დრო" @@ -7498,7 +7542,7 @@ msgid "Protocol version" msgstr "ოქმის ვერსია" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "მომხმარებელი" @@ -8000,17 +8044,17 @@ msgstr "ცხრილი \"%s\" არ არსებობს!" msgid "Select binary log to view" msgstr "აირჩიეთ საჩვენებელი ორობითი ჟურნალი" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "ფაილები" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -8407,13 +8451,13 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -8541,7 +8585,7 @@ msgstr "The privileges were reloaded successfully." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 #, fuzzy msgid "Show master status" msgstr "Show slave status" @@ -8684,207 +8728,201 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Handler" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Query cache" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Threads" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "დროებითი მონაცემები" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Key cache" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Joins" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "დალაგება" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Show open tables" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Show slave hosts" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Show slave status" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Runtime Information" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "სერვერის არჩევა" -#: server_status.php:372 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "სტატისტიკის ჩევნება" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "განახლება" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "წამში" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "წამში" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "in use" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "არ შეცვალო პაროლი" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Show open tables" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "საათში" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "წუთში" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "წამში" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "მოთხოვნის ტიპი" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL სერვერის მუშაობის პერიოდი - %s. გაშვების დრო - %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 #, fuzzy msgid "Replication status" msgstr "რეპლიკაცია" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "ტრაფიკი" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8892,45 +8930,41 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "მიღებულია" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "გაიგზავნა" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "კავშირები" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Failed attempts" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "შეწყვეტილია" -#: server_status.php:784 -msgid "Processes" -msgstr "პროცესები" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8940,16 +8974,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8961,109 +8995,109 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:852 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - -#: server_status.php:853 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." - -#: server_status.php:854 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." - -#: server_status.php:855 -msgid "The number of INSERT DELAYED rows written." -msgstr "The number of INSERT DELAYED rows written." - -#: server_status.php:856 -msgid "The number of executed FLUSH statements." -msgstr "The number of executed FLUSH statements." - -#: server_status.php:857 -msgid "The number of internal COMMIT statements." -msgstr "The number of internal COMMIT statements." - -#: server_status.php:858 -msgid "The number of times a row was deleted from a table." -msgstr "The number of times a row was deleted from a table." - -#: server_status.php:859 -msgid "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." -msgstr "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." - #: server_status.php:860 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." #: server_status.php:861 msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." #: server_status.php:862 msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." #: server_status.php:863 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." +msgid "The number of INSERT DELAYED rows written." +msgstr "The number of INSERT DELAYED rows written." #: server_status.php:864 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." +msgid "The number of executed FLUSH statements." +msgstr "The number of executed FLUSH statements." #: server_status.php:865 +msgid "The number of internal COMMIT statements." +msgstr "The number of internal COMMIT statements." + +#: server_status.php:866 +msgid "The number of times a row was deleted from a table." +msgstr "The number of times a row was deleted from a table." + +#: server_status.php:867 +msgid "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." +msgstr "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." + +#: server_status.php:868 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: server_status.php:869 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: server_status.php:870 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: server_status.php:871 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + +#: server_status.php:872 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9075,36 +9109,36 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "The number of free pages." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -9114,7 +9148,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9126,11 +9160,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -9138,7 +9172,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9146,11 +9180,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9158,7 +9192,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9172,51 +9206,51 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "The number of pages that have been written for doublewrite operations." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9224,35 +9258,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsync() writes done to the log file." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9260,51 +9294,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9312,7 +9346,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9320,7 +9354,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9330,11 +9364,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9344,15 +9378,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9362,17 +9396,17 @@ msgstr "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9380,38 +9414,38 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9423,7 +9457,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9431,19 +9465,19 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9451,11 +9485,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9463,7 +9497,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9471,15 +9505,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9487,78 +9521,78 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: server_status.php:943 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." - -#: server_status.php:944 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" -"The number of queries that have taken more than long_query_time seconds." - -#: server_status.php:945 -msgid "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." -msgstr "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." - -#: server_status.php:946 -msgid "The number of sorts that were done with ranges." -msgstr "The number of sorts that were done with ranges." - -#: server_status.php:947 -msgid "The number of sorted rows." -msgstr "The number of sorted rows." - -#: server_status.php:948 -msgid "The number of sorts that were done by scanning the table." -msgstr "The number of sorts that were done by scanning the table." - -#: server_status.php:949 -msgid "The number of times that a table lock was acquired immediately." -msgstr "The number of times that a table lock was acquired immediately." - -#: server_status.php:950 -msgid "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." - #: server_status.php:951 msgid "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." msgstr "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." #: server_status.php:952 -msgid "The number of currently open connections." -msgstr "The number of currently open connections." +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"The number of queries that have taken more than long_query_time seconds." #: server_status.php:953 msgid "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." +msgstr "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." + +#: server_status.php:954 +msgid "The number of sorts that were done with ranges." +msgstr "The number of sorts that were done with ranges." + +#: server_status.php:955 +msgid "The number of sorted rows." +msgstr "The number of sorted rows." + +#: server_status.php:956 +msgid "The number of sorts that were done by scanning the table." +msgstr "The number of sorts that were done by scanning the table." + +#: server_status.php:957 +msgid "The number of times that a table lock was acquired immediately." +msgstr "The number of times that a table lock was acquired immediately." + +#: server_status.php:958 +msgid "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." + +#: server_status.php:959 +msgid "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." +msgstr "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." + +#: server_status.php:960 +msgid "The number of currently open connections." +msgstr "The number of currently open connections." + +#: server_status.php:961 +msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " "doesn't give a notable performance improvement if you have a good thread " @@ -9569,7 +9603,7 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." @@ -9697,7 +9731,7 @@ msgstr "სერვერის ცვლადები და პარამ msgid "Session value" msgstr "სესიის მნიშვნელობა" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "გლობალური მნიშვნელობა" @@ -10007,9 +10041,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/ko.po b/po/ko.po index 744aea2d61..6e7eaed6a8 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -46,7 +46,7 @@ msgstr "검색" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -83,7 +83,7 @@ msgstr "키 이름" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "설명" @@ -165,7 +165,7 @@ msgstr "종류" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -194,7 +194,7 @@ msgstr "링크 대상:" msgid "Comments" msgstr "설명(코멘트)" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,7 +210,7 @@ msgstr "설명(코멘트)" msgid "No" msgstr " 아니오 " -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -270,7 +270,7 @@ msgstr "데이터베이스 %s 를 %s 로 복사하였습니다." msgid "Rename database to" msgstr "데이터베이스 이름 변경" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "커맨드" @@ -349,8 +349,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" -"s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " +"%s여기를 클릭%s하십시오." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -378,7 +378,7 @@ msgstr "행(레코드)" msgid "Size" msgstr "크기" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "사용중" @@ -404,7 +404,7 @@ msgstr "업데이트" msgid "Last check" msgstr "검사" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -587,63 +587,63 @@ msgstr "찾을 테이블:" msgid "Inside column:" msgstr "검색할 컬럼:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "데이터베이스에 테이블이 없습니다." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "테이블 %s 을 비웠습니다" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "뷰 %s가 제거되었습니다." -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "테이블 %s 을 제거했습니다." -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "트래킹이 활성화되었습니다." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "트래킹이 활성화되어 있지 않습니다." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "계" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -651,23 +651,23 @@ msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다." msgid "With selected:" msgstr "선택한 것을:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "모두 체크" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "모두 체크안함" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -675,58 +675,58 @@ msgstr "" msgid "Export" msgstr "내보내기" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "인쇄용 보기" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "비우기" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "삭제" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "테이블 검사" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "테이블 최적화" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "테이블 복구" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "테이블 분석" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "파일로 테이블 대치하기" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "파일로 테이블 대치하기" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "데이터 사전 (전체 구조보기)" @@ -741,7 +741,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -760,7 +760,7 @@ msgstr " 만들기 " msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "상태" @@ -864,8 +864,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1063,170 +1063,7 @@ msgstr "선택한 사용자를 삭제" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "서버 선택" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL 질의" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "전체 사용량" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Local" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "프로세스 목록" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "데이터베이스 이름 변경" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "데이터베이스 이름 변경" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "데이터베이스 복사" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one column." -msgid "Table must have at least one column" -msgstr "테이블은 적어도 1개 이상의 컬럼을 갖고 있어야 합니다." - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "새 페이지 만들기" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "사용할 테이블" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "검색" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL 질의" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL 질의" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "보기" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr " %s 을 삭제합니다" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL 질의" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL 질의" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1235,7 +1072,212 @@ msgstr "" msgid "Edit" msgstr "수정" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "서버 선택" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL 질의" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "전체 사용량" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "서버 선택" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "프로세스 목록" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "연결 수" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL 질의" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "행(레코드) 통계" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Local" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "프로세스 목록" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "데이터베이스 이름 변경" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "데이터베이스 이름 변경" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "데이터베이스 복사" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one column." +msgid "Table must have at least one column" +msgstr "테이블은 적어도 1개 이상의 컬럼을 갖고 있어야 합니다." + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "새 페이지 만들기" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "사용할 테이블" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "검색" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL 질의" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL 질의" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "보기" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr " %s 을 삭제합니다" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL 질의" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL 질의" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1243,77 +1285,77 @@ msgstr "수정" msgid "Save" msgstr "저장" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL 질의" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL 질의" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "출력할 필드 선택" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "암호 변경" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "암호 변경" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mo" msgid "More" msgstr "월" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1321,27 +1363,27 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "데이터베이스가 없습니다" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "완료" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "이전" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1349,231 +1391,231 @@ msgid "Next" msgstr "다음" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "오늘" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "1월" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "2월" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "3월" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "4월" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "5월" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "6월" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "7월" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "8월" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "9월" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "10월" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "11월" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "12월" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "일요일" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "월요일" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "화요일" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "수요일" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "목요일" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "금요일" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "토요일" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "토" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "일" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "월" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "화" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "수" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "목" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "금" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "토" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "주" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "시" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "분" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "초" @@ -1801,8 +1843,8 @@ msgstr "%s에 오셨습니다" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파" "일을 생성할 수 있습니다." @@ -1941,7 +1983,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "테이블 수" @@ -2071,7 +2113,7 @@ msgid "Documentation" msgstr "문서" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL 질의" @@ -2100,7 +2142,7 @@ msgid "Create PHP Code" msgstr "PHP 코드 보기" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4762,8 +4804,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4783,7 +4825,7 @@ msgstr "압축" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "없음" @@ -5029,7 +5071,7 @@ msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Kill" @@ -5119,7 +5161,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "" @@ -5463,8 +5505,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5577,7 +5619,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "호스트" @@ -6270,13 +6312,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "변수" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "값" @@ -6514,13 +6556,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "바이너리" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "환경설정값" @@ -6801,7 +6843,7 @@ msgstr "" msgid "+ Add a new value" msgstr "새 사용자 추가" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "시간" @@ -6957,7 +6999,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "사용자" @@ -7065,8 +7107,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" -"s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " +"%s여기를 클릭%s하십시오." #: main.php:314 msgid "" @@ -7413,18 +7455,18 @@ msgstr "\"%s\" 테이블이 존재하지 않습니다!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "필드" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "" @@ -7822,8 +7864,8 @@ msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7951,7 +7993,7 @@ msgstr "권한을 다시 로딩했습니다." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8090,263 +8132,254 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "쓰레드 %s 를 죽였습니다." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 #, fuzzy msgid "Query cache" msgstr "질의 종류" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "확장된 inserts" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "테이블 보기" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "런타임 정보" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "서버 선택" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "행(레코드) 통계" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "초" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "초" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "분" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "암호를 변경하지 않음" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "테이블 보기" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy msgid "Related links:" msgstr "테이블 작업" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "질의 종류" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 +#: server_status.php:623 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:623 +#: server_status.php:631 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" "이 MySQL 서버는 %s 동안 구동되었습니다.
구동 시작날짜는 %s 입니다." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "소통량" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "받음" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "보냄" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "연결 수" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "실패한 시도" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "" -#: server_status.php:784 -msgid "Processes" -msgstr "프로세스 목록" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8354,78 +8387,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8433,7 +8466,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8441,42 +8474,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8484,33 +8517,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8519,227 +8552,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8747,99 +8780,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8847,18 +8880,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8866,7 +8899,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -8989,7 +9022,7 @@ msgstr "서버의 환경설정" msgid "Session value" msgstr "세션 값" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "" diff --git a/po/lt.po b/po/lt.po index 5cc20f7500..eb450c8720 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-04-05 15:52+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -47,7 +47,7 @@ msgstr "Paieška" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Indekso pavadinimas" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Paaiškinimas" @@ -166,7 +166,7 @@ msgstr "Tipas" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Sąryšis su" msgid "Comments" msgstr "Komentarai" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Komentarai" msgid "No" msgstr "Ne" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Duomenų bazė %s buvo nukopijuota į %s" msgid "Rename database to" msgstr "Pervadinti duomenų bazę į" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Komanda" @@ -372,7 +372,7 @@ msgstr "Eilutės" msgid "Size" msgstr "Dydis" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "šiuo metu naudojama" @@ -398,7 +398,7 @@ msgstr "Paskutinis atnaujinimas" msgid "Last check" msgstr "Paskutinis patikrinimas" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -584,63 +584,63 @@ msgstr "Lentelės(ių) viduje:" msgid "Inside column:" msgstr "Stulpelio viduje:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Duomenų bazėje nerasta jokių lentelių." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Lentelės reikšmės %s ištuštintos" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Rodinys %s buvo panaikintas" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Lentelė %s panaikinta" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Sekimas yra aktyvus." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Sekimas yra neaktyvus." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %" -"sdokumentacijoje%s." +"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos " +"%sdokumentacijoje%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Rodinys" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikavimas" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Sumos" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -648,23 +648,23 @@ msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje." msgid "With selected:" msgstr "Pasirinktus:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Pažymėti visas" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Atžymėti visas" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -672,60 +672,60 @@ msgstr "Pažymėti turinčias perteklių" msgid "Export" msgstr "Eksportuoti" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Spausdinti struktūrą" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Išvalyti" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Šalinti" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Patikrinti lentelę" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimizuoti" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Taisyti lentelę" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analizuoti lentelę" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Eiti į lentelę" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Pakeisti lentelės turinį failo duomenimis " -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Pakeisti lentelės turinį failo duomenimis " -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Duomenų žodynas" @@ -740,7 +740,7 @@ msgstr "Sekamos lentelės" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -758,7 +758,7 @@ msgstr "Sukurta" msgid "Updated" msgstr "Atnaujinta" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Būsena" @@ -858,11 +858,11 @@ msgstr "Atvaizdis įrašytas faile %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %" -"sdokumentaciją%s būdams kaip apeiti šį apribojimą." +"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti " +"%sdokumentaciją%s būdams kaip apeiti šį apribojimą." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1061,157 +1061,7 @@ msgstr "Šalinami pažymėti vartotojai" msgid "Close" msgstr "Uždaryti" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Pasirinkti serverį" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query box" -msgid "Live query chart" -msgstr "Rodyti užklausos laukelį" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Iš viso" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Atšaukti" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Įkeliama" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Vykdoma užklausa" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Klaida vykdant užklausą" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Šalinamas stulpelis" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Pridedamas pirminis raktas" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "Gerai" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Keičiamas duomenų bazės pavadinimas" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Perkrauti duomenų bazę" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Kopijuojama duomenų bazė" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Keičiama koduotė" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Lentelė turi turėti bent vieną stulpelį" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Lentelės kūrimas" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Naudoti lenteles" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Ieškoma" - -#: js/messages.php:105 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Hide search results" -msgstr "Slėpti paieškos kriterijų" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Show search criteria" -msgid "Show search results" -msgstr "Rodyti paieškos kriterijų" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Peržiūrėti" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Šaliname: %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Slėpti užklausos laukelį" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Rodyti užklausos laukelį" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Redaguoti čia" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1220,7 +1070,199 @@ msgstr "Redaguoti čia" msgid "Edit" msgstr "Redaguoti" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Pasirinkti serverį" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query box" +msgid "Live query chart" +msgstr "Rodyti užklausos laukelį" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Iš viso" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Pasirinkti serverį" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Procesai" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Prisijungimai" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL užklausos" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Užklausų statistika" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Atšaukti" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Įkeliama" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Vykdoma užklausa" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Klaida vykdant užklausą" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Šalinamas stulpelis" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Pridedamas pirminis raktas" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "Gerai" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Keičiamas duomenų bazės pavadinimas" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Perkrauti duomenų bazę" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Kopijuojama duomenų bazė" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Keičiama koduotė" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Lentelė turi turėti bent vieną stulpelį" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Lentelės kūrimas" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Naudoti lenteles" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Ieškoma" + +#: js/messages.php:118 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Hide search results" +msgstr "Slėpti paieškos kriterijų" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Show search criteria" +msgid "Show search results" +msgstr "Rodyti paieškos kriterijų" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Peržiūrėti" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Šaliname: %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Slėpti užklausos laukelį" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Rodyti užklausos laukelį" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Redaguoti čia" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1228,67 +1270,67 @@ msgstr "Redaguoti" msgid "Save" msgstr "Išsaugoti" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Paslėpti" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Slėpti paieškos kriterijų" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoruoti" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Pasirinkite siejamą raktą" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Pasirinkti Foreign Key" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Pasirinkite laukus peržiūrai" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Pridėti parinktį stulpeliui/skilčiai" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Generuoti slaptažodį" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generuoti" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Pakeisti slaptažodį" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Daugiau" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1298,28 +1340,28 @@ msgstr "" "atnaujinimą. Naujausia versija yra %s, išleista %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", naujausia stabili versija:" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Eiti į duomenų bazę" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Atlikta" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Ankstesnis" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1327,231 +1369,231 @@ msgid "Next" msgstr "Kitas" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Šiandien" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "sausio" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "vasario" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "kovo" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "balandžio" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Geg" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "birželio" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "liepos" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "rugpjūčio" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "rugsėjo" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "spalio" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "lapkričio" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "gruodžio" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Sau" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Vas" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Kov" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Bal" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Geg" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Bir" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Lie" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Rgp" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Rgs" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Spa" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Lap" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Grd" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Sekmadienis" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Pirmadienis" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Antradienis" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Trečiadienis" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Penktadienis" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Šeštadienis" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Sek" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Pir" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Ant" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Tre" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Ket" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Pen" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Šeš" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Sk" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "An" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Tr" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Kt" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Pn" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Št" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Sav." -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Valanda" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minutė" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Sekundės" @@ -1787,8 +1829,8 @@ msgstr "Jūs naudojate %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų " "skriptu%2$s, kad sukurtumėte failą." @@ -1932,7 +1974,7 @@ msgstr "padalintas" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Lentelės" @@ -2063,7 +2105,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL užklausa" @@ -2092,7 +2134,7 @@ msgid "Create PHP Code" msgstr "PHP kodas" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Atnaujinti" @@ -4761,8 +4803,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite " "keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " @@ -4783,7 +4825,7 @@ msgstr "Glaudinti:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Ne" @@ -5020,7 +5062,7 @@ msgid "The row has been deleted" msgstr "Eilutė buvo ištrinta" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Stabdyti procesą" @@ -5109,7 +5151,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buferio Pool'as" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB būsena" @@ -5469,8 +5511,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5569,7 +5611,7 @@ msgstr "Rodyti MIME-tipus" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Darbinė stotis" @@ -6292,13 +6334,13 @@ msgid "Slave status" msgstr "Pavaldžiojo serverio būklė (Slave status)" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Kintamasis" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Reikšmė" @@ -6527,12 +6569,12 @@ msgid "Synchronize" msgstr "Sinchronizuoti" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Dvejetainis log'as" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Kintamieji" @@ -6821,7 +6863,7 @@ msgstr "SKAIDINIO (PARTITION) apibrėžimas" msgid "+ Add a new value" msgstr "Pridėti naują serverį" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Laikas" @@ -7038,7 +7080,7 @@ msgid "Protocol version" msgstr "Protokolo versija" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Naudotojas" @@ -7509,17 +7551,17 @@ msgstr "Failo nėra" msgid "Select binary log to view" msgstr "Pasirinkti dvejetainį žurnalą (log) peržiūrai" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Failai" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Trumpinti rodomas užklausas" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Rodyti pilnas užklausas" @@ -7918,8 +7960,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų " "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " @@ -8053,7 +8095,7 @@ msgstr "" "Šis serveris sukonfigūruotas kaip pagrindinis (master) daugintuvo " "(replication) procese." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Rodyti pagrindinio serverio būklę" @@ -8212,180 +8254,176 @@ msgstr "" "Serveris nesukonfigūruotas daugintuvo (replication) procese kaip pavaldusis " "(slave). Konfigūruoti!" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Gija %s buvo sėkmingai išjungta." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin negalėjo išjungti %s proceso. Gali būti jog jis jau užbaigė darbą." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Užklausų saugykla" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Gijos" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Laikini duomenys" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "Naudoti užlaikytus įterpimus" -#: server_status.php:240 +#: server_status.php:254 #, fuzzy msgid "Key cache" msgstr "Užklausų saugykla" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Rūšiavimas" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Rodyti atidarytas lenteles" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Rodyti pavaldinio būklę" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Veikimo informacija" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Pasirinkti serverį" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Užklausų statistika" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Peržiūrėti pavaldžiojo serverio būklės lentelę" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Atnaujinti" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Sekundės" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Sekundės" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Minutė" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nekeisti slaptažodžio" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Rodyti atidarytas lenteles" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Sąryšiai" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "per valandą" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "per minutę" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "per sekundę" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Užklausos tipas" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8393,19 +8431,19 @@ msgstr "" "Šis MySQL serveris veikia kaip pagrindinis ir kaip pavaldusis " "serveris dauginimo procese." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Šis MySQL serveris veikia kaip pagrindinis serveris dauginimo " "procese." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Šis MySQL serveris veikia kaip pavaldusis serveris dauginimo " "procese." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8413,75 +8451,71 @@ msgstr "" "Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Dauginimo būsena" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Apkrovimas" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Gauta" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Siųsta" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Prisijungimai" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "Daugiausia lygiagrečių prisijungimų" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Nepavykę bandymai" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Nutraukta" -#: server_status.php:784 -msgid "Processes" -msgstr "Procesai" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nepavyko prisijungti prie MySQL serverio" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8489,78 +8523,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Kiek laikinųjų failų mysqld sukūrė." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Įvykdytų FLUSH užklausų skaičius." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Vidinių COMMIT užklausų skaičius." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8568,7 +8602,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8576,44 +8610,44 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Vidinių ROLLBACK užklausų skaičius." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 #, fuzzy msgid "The number of pages currently dirty." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 #, fuzzy msgid "The number of free pages." msgstr "Įkeltų eilučių skaičius" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8621,33 +8655,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8656,237 +8690,237 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 #, fuzzy msgid "The current number of pending fsync() operations." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:884 +#: server_status.php:892 #, fuzzy msgid "The current number of pending reads." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:885 +#: server_status.php:893 #, fuzzy msgid "The current number of pending writes." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 #, fuzzy msgid "The number of log write requests." msgstr "Įkeltų eilučių skaičius" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 #, fuzzy msgid "The number of pages created." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 #, fuzzy msgid "The number of pages read." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:902 +#: server_status.php:910 #, fuzzy msgid "The number of pages written." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 #, fuzzy msgid "The number of files that are open." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 #, fuzzy msgid "The number of tables that are open." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 #, fuzzy msgid "The number of cache hits." msgstr "Įkeltų eilučių skaičius" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8894,100 +8928,100 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 #, fuzzy msgid "The number of sorted rows." msgstr "Įkeltų eilučių skaičius" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8995,18 +9029,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9014,7 +9048,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9139,7 +9173,7 @@ msgstr "Serverio kintamieji ir nustatymai" msgid "Session value" msgstr "Sesijos reikšmė" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Globali reikšmė" @@ -9414,9 +9448,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/lv.po b/po/lv.po index fef5e941bf..86b226d511 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -46,7 +46,7 @@ msgstr "Meklēt" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -83,7 +83,7 @@ msgstr "Atslēgas nosaukums" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Apraksts" @@ -165,7 +165,7 @@ msgstr "Tips" msgid "Null" msgstr "Nulle" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -194,7 +194,7 @@ msgstr "Linki uz" msgid "Comments" msgstr "Komentāri" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,7 +210,7 @@ msgstr "Komentāri" msgid "No" msgstr "Nē" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -270,7 +270,7 @@ msgstr "Datubāze %s tika pārkopēta uz %s" msgid "Rename database to" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Komanda" @@ -380,7 +380,7 @@ msgstr "Rindas" msgid "Size" msgstr "Izmērs" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "lietošanā" @@ -406,7 +406,7 @@ msgstr "Pēdējā atjaunošana" msgid "Last check" msgstr "Pēdējā pārbaude" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -599,64 +599,64 @@ msgstr "Tabulā(s):" msgid "Inside column:" msgstr "Tabulā(s):" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Tabulas nav atrastas šajā datubāzē." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabula %s tika iztukšota" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Lauks %s tika izdzēsts" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabula %s tika izdzēsta" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 #, fuzzy msgid "Replication" msgstr "Relācijas" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Kopumā" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -664,23 +664,23 @@ msgstr "" msgid "With selected:" msgstr "Ar iezīmēto:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Iezīmēt visu" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Neiezīmēt neko" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -688,58 +688,58 @@ msgstr "Iezīmēt tabulas ar pārtēriņu" msgid "Export" msgstr "Eksports" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Izdrukas versija" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Iztukšot" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Likvidēt" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Pārbaudīt tabulu" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimizēt tabulu" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Restaurēt tabulu" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analizēt tabulu" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Datu vārdnīca" @@ -754,7 +754,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -773,7 +773,7 @@ msgstr "Izveidot" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Statuss" @@ -877,8 +877,8 @@ msgstr "Damps tika saglabāts failā %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1074,172 +1074,7 @@ msgstr "Dzēst izvēlētos lietotājus" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Servera izvēle" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL vaicājums" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Kopā" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Lokāls" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Procesi" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "Labi" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Pārsaukt datubāzi par" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Pārsaukt datubāzi par" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Kopēt datubāzi uz" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Kodējums" - -#: js/messages.php:95 -#, fuzzy -#| msgid "You have to choose at least one column to display" -msgid "Table must have at least one column" -msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "Izveidot jaunu lapu" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Lietot tabulas" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Meklēt" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL vaicājums" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL vaicājums" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Apskatīt" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Dzēšam %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL vaicājums" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL vaicājums" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1248,7 +1083,214 @@ msgstr "" msgid "Edit" msgstr "Labot" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Servera izvēle" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL vaicājums" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Kopā" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Servera izvēle" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Procesi" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Konekcijas" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL vaicājums" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Rindas statistika" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Lokāls" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesi" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "Labi" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Pārsaukt datubāzi par" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Pārsaukt datubāzi par" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Kopēt datubāzi uz" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Kodējums" + +#: js/messages.php:108 +#, fuzzy +#| msgid "You have to choose at least one column to display" +msgid "Table must have at least one column" +msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "Izveidot jaunu lapu" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Lietot tabulas" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Meklēt" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL vaicājums" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL vaicājums" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Apskatīt" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Dzēšam %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL vaicājums" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL vaicājums" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1256,78 +1298,78 @@ msgstr "Labot" msgid "Save" msgstr "Saglabāt" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL vaicājums" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL vaicājums" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorēt" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izvēlieties, kuru lauku rādīt" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Mainīt paroli" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Mainīt paroli" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "P" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1335,31 +1377,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Nav datubāzu" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nav" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Iepriekšējie" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1367,96 +1409,96 @@ msgid "Next" msgstr "Nākamie" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kopā" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binārais" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mai" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jūn" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jūl" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1464,176 +1506,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dec" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sv" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "P" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "O" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pk" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "S" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sv" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "O" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pk" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "S" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lietošanā" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1862,8 +1904,8 @@ msgstr "Laipni lūgti %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -2004,7 +2046,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabulas" @@ -2137,7 +2179,7 @@ msgid "Documentation" msgstr "Dokumentācija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL vaicājums" @@ -2166,7 +2208,7 @@ msgid "Create PHP Code" msgstr "Izveidot PHP kodu" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Atjaunot" @@ -4827,8 +4869,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4848,7 +4890,7 @@ msgstr "Kompresija" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Nav" @@ -5097,7 +5139,7 @@ msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Nogalināt" @@ -5188,7 +5230,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB statuss" @@ -5533,8 +5575,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5660,7 +5702,7 @@ msgstr "Pieejamie MIME tipi" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Hosts" @@ -6360,13 +6402,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Mainīgais" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Vērtība" @@ -6607,12 +6649,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binārais log-fails" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Mainīgie" @@ -6910,7 +6952,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Pievienot jaunu lietotāju" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Laiks" @@ -7129,7 +7171,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Lietotājs" @@ -7590,18 +7632,18 @@ msgstr "Tabula \"%s\" neeksistē!" msgid "Select binary log to view" msgstr "Izvēlieties bināro log-failu apskatei" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "Lauki" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Ierobežot parādīto vaicājumu garumu" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Rādīt pilnos vaicājumus" @@ -8005,13 +8047,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL " "privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko " -"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %" -"spārlādēt privilēģijas%s pirms Jūs turpināt." +"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " +"%spārlādēt privilēģijas%s pirms Jūs turpināt." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -8139,7 +8181,7 @@ msgstr "Privilēģijas tika veiksmīgi pārlādētas." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8278,12 +8320,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Process %s tika veiksmīgi nogalināts." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8291,255 +8333,246 @@ msgstr "" "phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika " "izbeigts." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 #, fuzzy msgid "Query cache" msgstr "Vaicājuma tips" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "Lietot aizturētos INSERT" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "Rādīt tabulas" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Izpildes laika informācija" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Servera izvēle" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Rindas statistika" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Atjaunot" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "sekundē" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "sekundē" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "lietošanā" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nemainīt paroli" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "Rādīt tabulas" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relācijas" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "stundā" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "minūtē" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "sekundē" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Vaicājuma tips" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Šis MySQL serveris strādā %s. Tas tika palaists %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Datu apmaiņa" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Saņemts" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Nosūtīts" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Konekcijas" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Neveiksmīgi mēģinājumi" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Pārtraukts" -#: server_status.php:784 -msgid "Processes" -msgstr "Procesi" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8547,78 +8580,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8626,7 +8659,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8634,42 +8667,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8677,33 +8710,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8712,227 +8745,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8940,99 +8973,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9040,18 +9073,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9059,7 +9092,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9182,7 +9215,7 @@ msgstr "Servera mainīgie un konfigurācija" msgid "Session value" msgstr "Sesijas vērtība" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Globālā vērtība" diff --git a/po/mk.po b/po/mk.po index f2c740cd82..c918ae3c23 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-05-19 17:04+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "Пребарување" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Име на клуч" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Опис" @@ -166,7 +166,7 @@ msgstr "Тип" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Врски кон" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Коментари" msgid "No" msgstr "Не" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Базата на податоци %s е ископирана во %s" msgid "Rename database to" msgstr "Преименувај ја базата на податоци во" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Наредба" @@ -381,7 +381,7 @@ msgstr "Записи" msgid "Size" msgstr "Големина" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "се користи" @@ -407,7 +407,7 @@ msgstr "Последна измена" msgid "Last check" msgstr "Последна проверка" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -600,64 +600,64 @@ msgstr "во табела(и):" msgid "Inside column:" msgstr "во табела(и):" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Табелите не се пронајдени во базата на податоци." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Табелата %s е испразнета" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Прегледот %s е избришан" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Табелата %s е избришана" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Поглед" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 #, fuzzy msgid "Replication" msgstr "Релации" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Вкупно" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е основно складиште на овој MySQL сервер." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -665,23 +665,23 @@ msgstr "%s е основно складиште на овој MySQL сервер msgid "With selected:" msgstr "Обележаното:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "обележи ги сите" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "ниедно" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -689,58 +689,58 @@ msgstr "табели кои имаат пречекорувања" msgid "Export" msgstr "Извоз" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Преглед за печатење" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Испразни" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Бриши" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Проверка на табелата" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Оптимизација на табелата" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Поправка на табелата" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Анализа на табелата" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Замени ги податоците во табелата со подаците од податотеката" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замени ги податоците во табелата со подаците од податотеката" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Речник на податоци" @@ -755,7 +755,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -774,7 +774,7 @@ msgstr "Креирај" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Статус" @@ -878,8 +878,8 @@ msgstr "Содржината на базата на податоци е сочу #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1073,173 +1073,7 @@ msgstr "Избриши ги селектираните корисници" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Избор на сервер" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL упит" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Вкупно" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Локален" - -#: js/messages.php:84 -#, fuzzy -msgid "Processing Request" -msgstr "Листа на процеси" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "ОК" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Преименувај ја базата на податоци во" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Преименувај ја базата на податоци во" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Копирај ја базата на податоци во" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Кодна страна" - -#: js/messages.php:95 -#, fuzzy -#| msgid "You have to choose at least one column to display" -msgid "Table must have at least one column" -msgstr "Морате да изберете барем една колона за приказ" - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "Направи нова страница" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Користи табели" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Пребарување" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL упит" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL упит" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Преглед" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Бришам %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL упит" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL упит" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Складишта" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1248,7 +1082,216 @@ msgstr "Складишта" msgid "Edit" msgstr "Промени" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Избор на сервер" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL упит" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Вкупно" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Избор на сервер" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +#, fuzzy +msgid "Processes" +msgstr "Листа на процеси" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Конекции" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL упит" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Статистики за записите" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Локален" + +#: js/messages.php:97 +#, fuzzy +msgid "Processing Request" +msgstr "Листа на процеси" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "ОК" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Преименувај ја базата на податоци во" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Преименувај ја базата на податоци во" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Копирај ја базата на податоци во" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Кодна страна" + +#: js/messages.php:108 +#, fuzzy +#| msgid "You have to choose at least one column to display" +msgid "Table must have at least one column" +msgstr "Морате да изберете барем една колона за приказ" + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "Направи нова страница" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Користи табели" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Пребарување" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL упит" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL упит" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Преглед" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Бришам %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL упит" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL упит" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Складишта" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1256,77 +1299,77 @@ msgstr "Промени" msgid "Save" msgstr "Сочувај" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Игнорирај" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Избери полиња за прикажување" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Генерирање на лозинка" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Генерирај" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Промена на лозинка" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1334,31 +1377,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Базата на податоци не постои" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "нема" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1366,96 +1409,96 @@ msgid "Next" msgstr "Следен" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Вкупно" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарен" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "мај" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1463,176 +1506,176 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "дек" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вто" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Саб" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вто" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Саб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1863,8 +1906,8 @@ msgstr "%s Добредојдовте" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -2006,7 +2049,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Табели" @@ -2141,7 +2184,7 @@ msgid "Documentation" msgstr "Документација" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL упит" @@ -2170,7 +2213,7 @@ msgid "Create PHP Code" msgstr "Направи PHP код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Освежи" @@ -4844,8 +4887,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4865,7 +4908,7 @@ msgstr "Компресија" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "нема" @@ -5114,7 +5157,7 @@ msgid "The row has been deleted" msgstr "Записот е избришан" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Прекини" @@ -5209,7 +5252,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Бафер" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB статус" @@ -5570,8 +5613,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5697,7 +5740,7 @@ msgstr "Достапни MIME-типови" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Host" @@ -6399,13 +6442,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Вредност" @@ -6646,12 +6689,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Бинарен дневник" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Променливи" @@ -6949,7 +6992,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Додади нов корисник" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Време" @@ -7184,7 +7227,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Корисник" @@ -7651,18 +7694,18 @@ msgstr "Табелата \"%s\" не постои!" msgid "Select binary log to view" msgstr "Изберете бинарен дневник за преглед" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "Полиња" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Прикажи скратени упити" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Прикажи комплетни упити" @@ -8071,8 +8114,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL " "табелата на привилегии. Содржината на оваа табела табела може да се " @@ -8205,7 +8248,7 @@ msgstr "Привилегиите се успешно вчитани." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8344,269 +8387,259 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесот %s е успешно прекинат." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 #, fuzzy msgid "Query cache" msgstr "Вид на упит" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "Користи одложен внес" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "Прикажи табели" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Информации за работата" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Избор на сервер" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Статистики за записите" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Освежи" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "во секунда" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "во секунда" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "се користи" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Немој да ја менуваш лозинката" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "Прикажи табели" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Релации" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "на час" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "во минута" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "во секунда" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Вид на упит" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Овој MySQL сервер работи %s. Стартуван е на %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Сообраќај" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Примено" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Пратено" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Конекции" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Неуспешни обиди" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Прекинато" -#: server_status.php:784 -#, fuzzy -msgid "Processes" -msgstr "Листа на процеси" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8614,78 +8647,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8693,7 +8726,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8701,42 +8734,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8744,33 +8777,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8779,227 +8812,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9007,99 +9040,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9107,18 +9140,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9126,7 +9159,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9249,7 +9282,7 @@ msgstr "Серверски променливи и подесувања" msgid "Session value" msgstr "Вредност на сесијата" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Глобална вредност" diff --git a/po/ml.po b/po/ml.po index 519c148d34..5bce13c79c 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" +"Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" "X-Generator: Translate Toolkit 1.7.0\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -45,7 +45,7 @@ msgstr "" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -82,7 +82,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "" @@ -162,7 +162,7 @@ msgstr "" msgid "Null" msgstr "" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -191,7 +191,7 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,7 +207,7 @@ msgstr "" msgid "No" msgstr "" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -267,7 +267,7 @@ msgstr "" msgid "Rename database to" msgstr "" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "" @@ -367,7 +367,7 @@ msgstr "" msgid "Size" msgstr "" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "" @@ -393,7 +393,7 @@ msgstr "" msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -576,61 +576,61 @@ msgstr "" msgid "Inside column:" msgstr "" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -638,23 +638,23 @@ msgstr "" msgid "With selected:" msgstr "" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -662,54 +662,54 @@ msgstr "" msgid "Export" msgstr "" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "" @@ -724,7 +724,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -742,7 +742,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -840,8 +840,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1022,143 +1022,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -msgid "Live traffic chart" -msgstr "" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -msgid "Live query chart" -msgstr "" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "" - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "" - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -msgid "Loading" -msgstr "" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "" - -#: js/messages.php:104 -msgid "Searching" -msgstr "" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1167,7 +1031,179 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +msgid "Live query chart" +msgstr "" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "" + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "" + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +msgid "Server traffic (in kB)" +msgstr "" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "" + +#: js/messages.php:85 +msgid "Connections / Processes" +msgstr "" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +msgid "Issued queries" +msgstr "" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +msgid "Loading" +msgstr "" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "" + +#: js/messages.php:117 +msgid "Searching" +msgstr "" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1175,67 +1211,67 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1243,26 +1279,26 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1270,231 +1306,231 @@ msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "" @@ -1716,8 +1752,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1851,7 +1887,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "" @@ -1975,7 +2011,7 @@ msgid "Documentation" msgstr "" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "" @@ -2004,7 +2040,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4528,8 +4564,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4547,7 +4583,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "" @@ -4768,7 +4804,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "" @@ -4854,7 +4890,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "" @@ -5195,8 +5231,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5295,7 +5331,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "" @@ -5971,13 +6007,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6200,12 +6236,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "" @@ -6460,7 +6496,7 @@ msgstr "" msgid "+ Add a new value" msgstr "" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "" @@ -6613,7 +6649,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "" @@ -7024,17 +7060,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "" @@ -7416,8 +7452,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7537,7 +7573,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -7670,245 +7706,237 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "" -#: server_status.php:371 +#: server_status.php:385 msgid "Server traffic" msgstr "" -#: server_status.php:372 -msgid "Query statistics" -msgstr "" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 msgid "second" msgstr "" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 msgid "seconds" msgstr "" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 msgid "minutes" msgstr "" -#: server_status.php:446 +#: server_status.php:460 msgid "Containing the word:" msgstr "" -#: server_status.php:451 +#: server_status.php:465 msgid "Show only alert values" msgstr "" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 msgid "Related links:" msgstr "" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "" -#: server_status.php:784 -msgid "Processes" -msgstr "" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "" -#: server_status.php:846 +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7916,78 +7944,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -7995,7 +8023,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8003,42 +8031,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8046,33 +8074,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8081,227 +8109,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8309,99 +8337,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8409,18 +8437,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8428,7 +8456,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -8549,7 +8577,7 @@ msgstr "" msgid "Session value" msgstr "" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "" diff --git a/po/mn.po b/po/mn.po index 5fc29803d7..8fa5f7cf73 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -45,7 +45,7 @@ msgstr "Хайх" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -82,7 +82,7 @@ msgstr "Түлхүүрийн нэр" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Тайлбар" @@ -164,7 +164,7 @@ msgstr "Төрөл" msgid "Null" msgstr "Хоосон" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -193,7 +193,7 @@ msgstr "Холбоос" msgid "Comments" msgstr "Тайлбар" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -209,7 +209,7 @@ msgstr "Тайлбар" msgid "No" msgstr "Үгүй" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -269,7 +269,7 @@ msgstr "ӨС %s нь %s руу хуулагдлаа" msgid "Rename database to" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Команд" @@ -380,7 +380,7 @@ msgstr "Мөрүүд" msgid "Size" msgstr "Хэмжээ" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "хэрэглэгдэж байна" @@ -406,7 +406,7 @@ msgstr "Сүүлийн шинэчлэл" msgid "Last check" msgstr "Сүүлийн шалгалт" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -599,63 +599,63 @@ msgstr "Хүснэгт(үүд) дотор:" msgid "Inside column:" msgstr "Хүснэгт(үүд) дотор:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "ӨС-д хүснэгт олдсонгүй." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Хүснэгт %s нь хоослогдлоо" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Харц %s нь устгагдсан" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Хүснэгт %s нь устгагдлаа" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Харц" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Олшруулалт" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Нийт" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -663,23 +663,23 @@ msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хө msgid "With selected:" msgstr "Сонгогдсонтой:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Бүгдийг чагтлах" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Бүх чагтыг болих" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -687,58 +687,58 @@ msgstr "Дээдхийг шалгах" msgid "Export" msgstr "Гаргах" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Хэвлэхээр харах" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Хоосон" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Устгах" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Хүснэгт шалгах" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Хүснэгтийг зүгшрүүлэх" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Хүснэгт засах" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Хүснэгтийг задлах" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Өгөгдлийн толь" @@ -753,7 +753,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -771,7 +771,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Статус" @@ -870,8 +870,8 @@ msgstr "Асгалт %s файлд хадгалагдсан." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1068,179 +1068,7 @@ msgstr "Сонгогдсон хэрэглэгчдийг хасах" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Сервэр сонго" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Showing SQL query" -msgid "Live query chart" -msgstr "SQL асуудал харуулах" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Нийт" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Болих" - -#: js/messages.php:83 -msgid "Loading" -msgstr "" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Процессууд" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "Бэлэн" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Өгөгдлийн санг д.нэрлэх нь" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Өгөгдлийн санг д.нэрлэх нь" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Өгөгдлийн сан хуулах нь" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Кодлол" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Хүснэгт нь багадаа нэг талбартай байх хэрэгтэй." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Хүснэгт үүсгэх" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Хүснэгт хэрэглэх" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Хайх" - -#: js/messages.php:105 -#, fuzzy -#| msgid "in query" -msgid "Hide search results" -msgstr "асуултад" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Showing SQL query" -msgid "Show search results" -msgstr "SQL асуудал харуулах" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Хөтлөх" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "%s-г устгаж байна" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -#| msgid "in query" -msgid "Hide query box" -msgstr "асуултад" - -#: js/messages.php:115 -#, fuzzy -#| msgid "Showing SQL query" -msgid "Show query box" -msgstr "SQL асуудал харуулах" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Хөдөлгүүрүүд" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1249,7 +1077,221 @@ msgstr "Хөдөлгүүрүүд" msgid "Edit" msgstr "Засах" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Сервэр сонго" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Showing SQL query" +msgid "Live query chart" +msgstr "SQL асуудал харуулах" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Нийт" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Сервэр сонго" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Процессууд" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Холболт" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +msgid "Issued queries" +msgstr "" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +#| msgid "Databases statistics" +msgid "Query statistics" +msgstr "Өгөгдлийн сангийн статистик" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Болих" + +#: js/messages.php:96 +msgid "Loading" +msgstr "" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Процессууд" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "Бэлэн" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Өгөгдлийн санг д.нэрлэх нь" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Өгөгдлийн санг д.нэрлэх нь" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Өгөгдлийн сан хуулах нь" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Кодлол" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Хүснэгт нь багадаа нэг талбартай байх хэрэгтэй." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Хүснэгт үүсгэх" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Хүснэгт хэрэглэх" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Хайх" + +#: js/messages.php:118 +#, fuzzy +#| msgid "in query" +msgid "Hide search results" +msgstr "асуултад" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Showing SQL query" +msgid "Show search results" +msgstr "SQL асуудал харуулах" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Хөтлөх" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s-г устгаж байна" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +#| msgid "in query" +msgid "Hide query box" +msgstr "асуултад" + +#: js/messages.php:128 +#, fuzzy +#| msgid "Showing SQL query" +msgid "Show query box" +msgstr "SQL асуудал харуулах" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Хөдөлгүүрүүд" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1257,79 +1299,79 @@ msgstr "Засах" msgid "Save" msgstr "Хадгалах" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Нуух" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "асуултад" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Үл тоох" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Хамаарагдсан түлхүүр сонгох" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Гадаад түлхүүр сонгох" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Харуулах талбарыг соль" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Нууц үг бий болгох" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Бий болгох" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Нууц үг солих" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Да" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1337,32 +1379,32 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "ӨС байхгүй" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "Байхгүй" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Өмнөх" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1370,96 +1412,96 @@ msgid "Next" msgstr "Цааш" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Нийт" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Хоёртын " -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "3-р" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "4-р" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "5-р" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "6-р" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "7-р" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "8-р" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "10р" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1467,176 +1509,176 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "12р" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ня" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Да" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Мя" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ба" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Бя" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ня" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Да" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Мя" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Лх" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пү" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ба" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Бя" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "хэрэглэгдэж байна" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1866,11 +1908,11 @@ msgstr "%s-д тавтай морилно уу" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1" -"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." +"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та " +"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -2007,7 +2049,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Хүснэгт" @@ -2143,7 +2185,7 @@ msgid "Documentation" msgstr "Баримт" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-асуулт" @@ -2172,7 +2214,7 @@ msgid "Create PHP Code" msgstr "PHP-код үүсгэх" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Да.дуудах" @@ -4826,12 +4868,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны " -"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %" -"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." +"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " +"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -4850,7 +4892,7 @@ msgstr "Шахалт" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Байхгүй" @@ -5109,7 +5151,7 @@ msgid "The row has been deleted" msgstr "Мөр устгагдсан" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Алах" @@ -5203,7 +5245,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Буффер Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB байдал" @@ -5559,8 +5601,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5687,7 +5729,7 @@ msgstr "Идэвхтэй MIME-төрлүүд" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Хост" @@ -6386,13 +6428,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Хувьсагч" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Утга" @@ -6633,12 +6675,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Хоёртын log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Утгууд" @@ -6933,7 +6975,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Шинэ хэрэглэгч нэмэх" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Цаг" @@ -7155,7 +7197,7 @@ msgid "Protocol version" msgstr "Протоколын хувилбар" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Хэрэглэгч" @@ -7620,17 +7662,17 @@ msgstr "Хүснэгт \"%s\" байхгүй байна!" msgid "Select binary log to view" msgstr "Харах хоёртын log сонго" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Файлууд" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Бүтэн асуулт харуулах" @@ -8025,8 +8067,8 @@ msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн сан msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " "онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " @@ -8157,7 +8199,7 @@ msgstr "Онцгой эрхүүд дахин дуудагдлаа." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8294,250 +8336,240 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s нь устгагдав." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Баригч" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Асуудлын нөөцлөл" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Thread-үүд" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Завсрын өгөгдөл" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Давталттай оруулалт" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Түлхүүрийн нөөцлөл" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Нэгдэл" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Эрэмбэлж байна" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Хэлэлцээр зохицуулагч" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Дагавар хостыг харуулах" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Дагавар төлвийг харуулах" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Асуудлын утгыг цэвэрлэх" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Ажиллах үеийн мэдээлэл" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Сервэр сонго" -#: server_status.php:372 -#, fuzzy -#| msgid "Databases statistics" -msgid "Query statistics" -msgstr "Өгөгдлийн сангийн статистик" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Да.дуудах" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "секундэд" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "секундэд" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "хэрэглэгдэж байна" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Нууц үгийг солихгүй" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Хамаарал" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "цагт" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "минутад" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "секундэд" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Асуултын төрөл" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Энэ MySQL сервэр %s-д ажиллаж байна. Эхэлсэн нь %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Гуйвуулга" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Ирсэн" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Илгээгдэв" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Холболт" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "ХИ. давхацсан холболтууд" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Бүтэлгүйтсэн оролдлого" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Таслагдсан" -#: server_status.php:784 -msgid "Processes" -msgstr "Процессууд" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Limits the number of simultaneous connections the user may have." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8547,16 +8579,16 @@ msgstr "" "хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд " "хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8568,11 +8600,11 @@ msgstr "" "оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг " "нэмэгдүүлэхийг хүсэж байж болно." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8580,7 +8612,7 @@ msgstr "" "Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн " "хүснэгтүүдийн тоо." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8588,7 +8620,7 @@ msgstr "" "Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-" "аар бичигдсэн мөрүүдийн тоо." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8596,23 +8628,23 @@ msgstr "" "Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай " "хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "дотоод COMMIT хэлэлцээриийн тоо." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Хүснэгтээс мөр устгасан тоо." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8622,7 +8654,7 @@ msgstr "" "NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. " "Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8632,7 +8664,7 @@ msgstr "" "бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 " "FROM foo, энд col1 индекслэгдсэн байна." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8640,7 +8672,7 @@ msgstr "" "Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны " "асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8650,7 +8682,7 @@ msgstr "" "та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд " "нэмэгдэж байдаг." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8658,7 +8690,7 @@ msgstr "" "Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь " "голчлон ORDER BY ... DESC-д хэрэглэгддэг." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8670,7 +8702,7 @@ msgstr "" "Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд " "түлхүүрийг зөв ашиглаагүй байх." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8682,35 +8714,35 @@ msgstr "" "ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь " "асуудалд зөв бичигдээгүйг илтгэнэ." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Одоогоор бохир байгаа хуудсын тоо." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Чөлөөтэй байгаа хуудсуудын тоо." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8720,7 +8752,7 @@ msgstr "" "одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас " "хасагдсан." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8732,11 +8764,11 @@ msgstr "" "InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт " "хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8744,7 +8776,7 @@ msgstr "" "InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй " "эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8752,11 +8784,11 @@ msgstr "" "InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн " "шалгалтыг InnoDB хийснийг илэрхийлнэ." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8764,7 +8796,7 @@ msgstr "" "InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик " "уншилтын тоо." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8773,227 +8805,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Уншихаар хүлээгдэж буй тухайн тоо." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Өгөгдөл уншилтийн нийт тоо." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Өгөгдөл бичилтийн нийт тоо." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Тэмдэглэл бичих хүсэлтийн тоо." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Тэмдэглэлийн файл руу бичих хүлээлт." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9001,99 +9033,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Эрэмбэлэгдсэн мөрийн тоо." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9101,18 +9133,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9120,7 +9152,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9243,7 +9275,7 @@ msgstr "Сервэрийн утгууд болон тохиргоонууд" msgid "Session value" msgstr "Сессон утга" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Глобал утга" @@ -10339,8 +10371,8 @@ msgstr "" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%" -#~ "s дарж шалгах." +#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд" +#~ "%s дарж шалгах." #~ msgid "Ignore duplicate rows" #~ msgstr "Давхардсан мөрүүдийг алгасах" diff --git a/po/ms.po b/po/ms.po index d09d21093f..ced0663739 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -43,7 +43,7 @@ msgstr "Cari" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -80,7 +80,7 @@ msgstr "Nama Kekunci" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Keterangan" @@ -163,7 +163,7 @@ msgstr "Jenis" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -192,7 +192,7 @@ msgstr "Pautan ke" msgid "Comments" msgstr "Komen" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,7 +208,7 @@ msgstr "Komen" msgid "No" msgstr "Tidak" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -270,7 +270,7 @@ msgstr "Jadual %s telah disalin ke %s." msgid "Rename database to" msgstr "Tukarnama jadual ke" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Arahan" @@ -380,7 +380,7 @@ msgstr "Baris" msgid "Size" msgstr "Saiz" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "sedang digunakan" @@ -407,7 +407,7 @@ msgstr "" msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -600,63 +600,63 @@ msgstr "Di dalam jadual:" msgid "Inside column:" msgstr "Di dalam jadual:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Tiada jadual dijumpai pada pangkalan data." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Jadual %s telah dikosongkan" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Medan %s telah digugurkan" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Jadual %s telah digugurkan" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Jumlah" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -664,23 +664,23 @@ msgstr "" msgid "With selected:" msgstr "Dengan pilihan:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Tanda Semua" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Nyahtanda Semua" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -688,58 +688,58 @@ msgstr "" msgid "Export" msgstr "Eksport" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Paparan Cetak" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Kosong" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Gugur" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Periksa Jadual" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimakan jadual" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Baiki jadual" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Ganti data jadual dengan fail" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Ganti data jadual dengan fail" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Kamus Data" @@ -754,7 +754,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -773,7 +773,7 @@ msgstr "Cipta" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -875,8 +875,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1065,167 +1065,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Pilihan Pelayan" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "kueri-SQL" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Jumlah" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Local" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Proses-proses" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -#, fuzzy -msgid "Renaming Databases" -msgstr "Tukarnama jadual ke" - -#: js/messages.php:92 -#, fuzzy -msgid "Reload Database" -msgstr "Tukarnama jadual ke" - -#: js/messages.php:93 -#, fuzzy -msgid "Copying Database" -msgstr "Tiada pangkalan data" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "" - -#: js/messages.php:95 -#, fuzzy -#| msgid "You have to choose at least one column to display" -msgid "Table must have at least one column" -msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "Cipta Halaman baru" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Guna Jadual" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Cari" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "kueri-SQL" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "kueri-SQL" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Lungsur" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Delete" -msgid "Deleting" -msgstr "Padam" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "kueri-SQL" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "kueri-SQL" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1234,7 +1074,209 @@ msgstr "" msgid "Edit" msgstr "Ubah" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Pilihan Pelayan" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "kueri-SQL" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Jumlah" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Pilihan Pelayan" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Proses-proses" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Hubungan" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "kueri-SQL" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Statistik Baris" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Local" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Proses-proses" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +#, fuzzy +msgid "Renaming Databases" +msgstr "Tukarnama jadual ke" + +#: js/messages.php:105 +#, fuzzy +msgid "Reload Database" +msgstr "Tukarnama jadual ke" + +#: js/messages.php:106 +#, fuzzy +msgid "Copying Database" +msgstr "Tiada pangkalan data" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "" + +#: js/messages.php:108 +#, fuzzy +#| msgid "You have to choose at least one column to display" +msgid "Table must have at least one column" +msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "Cipta Halaman baru" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Guna Jadual" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Cari" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "kueri-SQL" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "kueri-SQL" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Lungsur" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "Padam" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "kueri-SQL" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "kueri-SQL" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1242,78 +1284,78 @@ msgstr "Ubah" msgid "Save" msgstr "Simpan" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "kueri-SQL" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "kueri-SQL" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Abai" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Pilih Medan untuk dipapar" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ubah Katalaluan" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Dijana oleh" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ubah Katalaluan" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Isn" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1321,31 +1363,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Tiada pangkalan data" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "Tiada" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Terdahulu" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1353,96 +1395,96 @@ msgid "Next" msgstr "Berikut" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mac" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mei" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ogos" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1450,176 +1492,176 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dis" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Aha" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Isn" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sel" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Aha" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Isn" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sel" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rab" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kha" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "Records" msgid "Second" @@ -1845,8 +1887,8 @@ msgstr "Selamat Datang ke %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1981,7 +2023,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Jadual-jadual" @@ -2113,7 +2155,7 @@ msgid "Documentation" msgstr "Dokumentasi" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "kueri-SQL" @@ -2142,7 +2184,7 @@ msgid "Create PHP Code" msgstr "Cipta Kod PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4781,8 +4823,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4802,7 +4844,7 @@ msgstr "Mampatan" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Tiada" @@ -5049,7 +5091,7 @@ msgid "The row has been deleted" msgstr "Baris telah dipadam" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Bunuh" @@ -5140,7 +5182,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "" @@ -5484,8 +5526,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5601,7 +5643,7 @@ msgstr "Paparkan Ciri-ciri" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Hos" @@ -6292,13 +6334,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Pembolehubah" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Nilai" @@ -6536,13 +6578,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Binari" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Pemboleh-pembolehubah" @@ -6835,7 +6877,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Tambah Pengguna Baru" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Masa" @@ -6997,7 +7039,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Pengguna" @@ -7452,18 +7494,18 @@ msgstr "Jadual \"%s\" tidak wujud!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "Medan" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "" @@ -7859,8 +7901,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7984,7 +8026,7 @@ msgstr "Bebenang %s telah berjaya dimatikan." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8123,264 +8165,255 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Bebenang %s telah berjaya dimatikan." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin tidak dapat mematikan bebenang %s. Ianya mungkin telah ditutup." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 #, fuzzy msgid "Query cache" msgstr "Jenis Kueri" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "Penyelitan Lanjutan" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "Papar jadual" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Informasi MasaJana" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Pilihan Pelayan" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Statistik Baris" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy msgid "Refresh rate" msgstr "Dijana oleh" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Records" msgid "second" msgstr "Rekod" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Records" msgid "seconds" msgstr "Rekod" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "sedang digunakan" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Jangan tukar katalaluan" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "Papar jadual" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy msgid "Related links:" msgstr "Operasi" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "per jam" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Jenis Kueri" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Pelayan MySQL ini telah berjalan selama %s. Ia dihidupkan pada %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Kesibukan" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "DiTerima" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Hantar" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Hubungan" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Percubaan Gagal" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "DiBatalkan" -#: server_status.php:784 -msgid "Processes" -msgstr "Proses-proses" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8388,78 +8421,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8467,7 +8500,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8475,42 +8508,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8518,33 +8551,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8553,227 +8586,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8781,99 +8814,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8881,18 +8914,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8900,7 +8933,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9023,7 +9056,7 @@ msgstr "Pembolehubah dan Penetapan Pelayan" msgid "Session value" msgstr "Nilai Sessi" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Nilai Global" diff --git a/po/nb.po b/po/nb.po index a3262ca52d..3620264ff4 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -46,7 +46,7 @@ msgstr "Søk" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -83,7 +83,7 @@ msgstr "Nøkkel" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Beskrivelse" @@ -165,7 +165,7 @@ msgstr "Type" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -194,7 +194,7 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,7 +210,7 @@ msgstr "Kommentarer" msgid "No" msgstr "Nei" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -270,7 +270,7 @@ msgstr "Databasen %s har blitt kopiert til %s" msgid "Rename database to" msgstr "Endre databasens navn til" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Kommando" @@ -371,7 +371,7 @@ msgstr "Rader" msgid "Size" msgstr "Størrelse" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "i bruk" @@ -397,7 +397,7 @@ msgstr "Sist oppdatert" msgid "Last check" msgstr "Sist kontrollert" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -580,61 +580,61 @@ msgstr "I tabell(ene):" msgid "Inside column:" msgstr "I kolonne:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Ingen tabeller funnet i databasen" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har blitt tømt" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Visningen %s har blitt slettet" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har blitt slettet" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Overvåkning er aktiv." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Overvåkning er ikke aktiv." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Vis" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikering" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Sum" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard lagringsmotor for denne MySQL tjeneren." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -642,23 +642,23 @@ msgstr "%s er standard lagringsmotor for denne MySQL tjeneren." msgid "With selected:" msgstr "Med avkrysset:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Merk alle" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Fjern merking" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Merk overheng" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -666,60 +666,60 @@ msgstr "Merk overheng" msgid "Export" msgstr "Eksporter" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Tøm" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Slett" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Kontroller tabell" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimiser tabell" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Reparer tabell" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analyser tabell" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Gå til tabell" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Erstatt tabell med filen" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Erstatt tabell med filen" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dataordbok" @@ -734,7 +734,7 @@ msgstr "Overvåkede tabeller" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -752,7 +752,7 @@ msgstr "Opprettet" msgid "Updated" msgstr "Oppdatert" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -853,8 +853,8 @@ msgstr "Dump har blitt lagret til fila %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen" "%s for måter å omgå denne begrensningen." @@ -1057,157 +1057,7 @@ msgstr "Fjern valgte brukere" msgid "Close" msgstr "Lukk" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Tjenervalg" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query box" -msgid "Live query chart" -msgstr "Vis spørringsboks" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Totalt" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Avbryt" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Laster" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Prosessforespørsel" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Feil i prosesseringsforespørsel" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Dropper kolonne" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Legger til primærnøkkel" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Endrer databasenes navn" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Gjennlast database" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Kopierer database" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Endrer tegnsett" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Tabellen må ha minst en kolonne" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Opprett tabell" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Bruk tabeller" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Søker" - -#: js/messages.php:105 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Hide search results" -msgstr "Skjul søkekriterier" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Show search criteria" -msgid "Show search results" -msgstr "Vis søkekriterier" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Se på" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Sletter %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Skjul spørringsboks" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Vis spørringsboks" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Inline Edit" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1216,7 +1066,199 @@ msgstr "Inline Edit" msgid "Edit" msgstr "Rediger" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Tjenervalg" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query box" +msgid "Live query chart" +msgstr "Vis spørringsboks" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Totalt" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Tjenervalg" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Prosesser" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "tilkoblinger" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL spørringer" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Spørringsstatistikk" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Avbryt" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Laster" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Prosessforespørsel" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Feil i prosesseringsforespørsel" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Dropper kolonne" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Legger til primærnøkkel" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Endrer databasenes navn" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Gjennlast database" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Kopierer database" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Endrer tegnsett" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Tabellen må ha minst en kolonne" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Opprett tabell" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Bruk tabeller" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Søker" + +#: js/messages.php:118 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Hide search results" +msgstr "Skjul søkekriterier" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Show search criteria" +msgid "Show search results" +msgstr "Vis søkekriterier" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Se på" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Sletter %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Skjul spørringsboks" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Vis spørringsboks" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Inline Edit" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1224,67 +1266,67 @@ msgstr "Rediger" msgid "Save" msgstr "Lagre" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Skjul" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Skjul søkekriterier" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Vis søkekriterier" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Velg referert nøkkel" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Velg fremmednøkkel" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Velg primærnøkkelen eller en unik nøkkel" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Velg kolonne for visning" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Legg til valg for kolonne" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Generer passord" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generer" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Endre passord" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Mer" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1294,28 +1336,28 @@ msgstr "" "versjon er %s, utgitt den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", siste tilgjengelige versjon:" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Gå til database" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Utført" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1323,231 +1365,231 @@ msgid "Next" msgstr "Neste" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "I dag" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Januar" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Februar" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Mars" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "April" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mai" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Juni" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Juli" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "August" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "September" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Oktober" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "November" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Des" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Søndag" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Mandag" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Tirsdag" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Fredag" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Lør" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Søndag" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Man" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Tir" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Tor" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Uke" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Time" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minutt" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Sekund" @@ -1783,8 +1825,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør " "kanskje bruke %1$ssetup script%2$s for å opprette en." @@ -1927,7 +1969,7 @@ msgstr "delt" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabeller" @@ -2058,7 +2100,7 @@ msgid "Documentation" msgstr "Dokumentasjon" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-spørring" @@ -2087,7 +2129,7 @@ msgid "Create PHP Code" msgstr "Lag PHP kode" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Oppdater" @@ -4814,8 +4856,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke " "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " @@ -4836,7 +4878,7 @@ msgstr "Komprimering:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Ingen" @@ -5091,7 +5133,7 @@ msgid "The row has been deleted" msgstr "Raden er slettet" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Avslutt" @@ -5185,7 +5227,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Mellomlager" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB status" @@ -5578,8 +5620,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5694,7 +5736,7 @@ msgstr "Vis MIME-typer" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Vert" @@ -6403,13 +6445,13 @@ msgid "Slave status" msgstr "Slavestatus" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variabler" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Verdi" @@ -6644,12 +6686,12 @@ msgid "Synchronize" msgstr "Synkroniser" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binærlogg" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variabler" @@ -6856,8 +6898,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"For en liste over tilgjengelige transformasjonsvalg, klikk på %" -"stransformasjonsbeskrivelser%s" +"For en liste over tilgjengelige transformasjonsvalg, klikk på " +"%stransformasjonsbeskrivelser%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -6933,7 +6975,7 @@ msgstr "Partisjonsdefinisjon" msgid "+ Add a new value" msgstr "+ Legg til ny verdi" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Tid" @@ -7132,7 +7174,7 @@ msgid "Protocol version" msgstr "Protokollversjon" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Bruker" @@ -7629,17 +7671,17 @@ msgstr "Tabellen %s eksisterer ikke!" msgid "Select binary log to view" msgstr "Velg binærlogg for visning" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Filer" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Forkort vist spørring" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Vis hele spørringen" @@ -8033,8 +8075,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL " "privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de " @@ -8164,7 +8206,7 @@ msgstr "Mastertjener endret til %s" msgid "This server is configured as master in a replication process." msgstr "Denne tjeneren er konfigurert som master i en replikasjonsprosess." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Vis masterstatus" @@ -8319,178 +8361,174 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s ble avsluttet med suksess." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke avslutte tråd %s. Den er sansynligvis alt avsluttet." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Handler" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Spørringsmellomlager" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Tråder" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Midlertidige data" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Forsinkede innsettinger" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Nøkkelmellomlager" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Sammenføyninger" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Sortering" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Transaksjonskoordinator" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Vis åpne tabeller" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Vis slaveverter" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Vis slavestatus" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Kjøringsinformasjon" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Tjenervalg" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Spørringsstatistikk" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Se slavestatustabell" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Oppdater" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Sekund" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Sekund" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Minutt" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Ikke endre passordet" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Vis åpne tabeller" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relasjoner" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "per time" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "per minutt" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "per sekund" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Spørringstype" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8498,19 +8536,19 @@ msgstr "" "Denne tjeneren jobber både som tjener og slave i " "replikasjonsprosessen." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Denne tjeneren er konfigurert som tjener i en replikasjonsprosess." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Denne tjeneren er konfigurert som slave i en replikasjonsprosess." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8518,15 +8556,15 @@ msgstr "" "For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Replikasjonsstatus" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Trafikk" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8534,45 +8572,41 @@ msgstr "" "På en travel tjener så kan byte-tellerene overflyte, så denne statistikken " "som rapportert av MySQL tjeneren kan være unøyaktig." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Mottatt" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Sendt" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "tilkoblinger" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "maks. samtidige tilkoblinger" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Feilede forsøk" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Avbrutt" -#: server_status.php:784 -msgid "Processes" -msgstr "Prosesser" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kunne ikke koble til MySQL tjener" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8582,17 +8616,17 @@ msgstr "" "som overskred verdien av binlog_size og brukte en midlertidig fil for å " "lagre spørringer fra transaksjonen." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antall transaksjoner som brukte den midlertidige binærloggmellomlageret." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8604,11 +8638,11 @@ msgstr "" "bør du vurdere å øke tmp_table_size verdien slik at midlertidige tabeller " "blir lagret i minnet og ikke på harddisken." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Antall midlertidige filer mysqld har opprettet." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8616,7 +8650,7 @@ msgstr "" "Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under " "utføriing av spørringer." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8624,7 +8658,7 @@ msgstr "" "Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil " "oppstod (mest sannsynlig duplisert nøkkel)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8632,23 +8666,23 @@ msgstr "" "Antall INSERT DELAYED håndterertråder i bruk. Hver eneste tabell hvor det " "blir brukt INSERT DELAYE får sin egen tråd." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Antall INSERT DELAYED rader skrevet." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Antall utførte FLUSH uttrykk." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Antall interne COMMIT uttrykk." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Antall ganger en rad ble slettet fra en tabell." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8658,7 +8692,7 @@ msgstr "" "tabell med et gitt navn. Dette blir kalt oppdaging (discovery). " "Handler_discover indikerer antall ganger tabeller har blitt oppdaget." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8668,7 +8702,7 @@ msgstr "" "er høyt tyder det på at tjeneren utfører en god del fullindekssøk; for " "eksempel, SELECT col1 FROM foo, da forutsatt at col1 er indeksert." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8677,7 +8711,7 @@ msgstr "" "er høyt gir dette en god indikasjon på at dine spørringer og tabeller er " "riktig indeksert." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8688,7 +8722,7 @@ msgstr "" "har sansynligvis mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som ikke bruker nøkler korrekt." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8696,7 +8730,7 @@ msgstr "" "Antall forespørsler for å lese den forrige raden i nøkkelrekkefølge. Denne " "lesemetoden er hovedsakelig brukt for å optimalisere ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8708,7 +8742,7 @@ msgstr "" "har mest sansynlig mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som som ikke bruker nøkler korrekt." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8720,37 +8754,37 @@ msgstr "" "tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for " "å utnytte de indeksene du har." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Antall interne ROLLBACK kommandoer." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Antall forespørsler for å oppdatere en rad i en tabell." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Antall forespørsler for å sette inn en rad i en tabell." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Antall sider som inneholder data (endret eller uendret)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Antall sider for tiden endret." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Antall midlertidige mellomlagersider som det har vært " "oppfriskningsforespørsler på." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Antall tomme sider." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8759,7 +8793,7 @@ msgstr "" "Antallet låste sider i InnoDBs mellomlager. Dette er sider som er under " "lesing eller skriving eller ikke kan tømmes eller fjernes av en annen grunn." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8771,11 +8805,11 @@ msgstr "" "kan også regnes ut som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på midlertidig mellomlager i sider." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8783,7 +8817,7 @@ msgstr "" "Antall \"tilfeldige\" \"read-aheads\" InnoDB startet. Dette skjer når en " "spørring skanner en stor andel av en tabell men i en tilfeldig rekkefølge." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8791,11 +8825,11 @@ msgstr "" "Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB " "utfører en sekvensiell full tabellskanning." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Antall logiske leseforespørsler InnoDB har utført." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8803,7 +8837,7 @@ msgstr "" "Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra " "mellomlageret og måtte utføre en enkelsidelesnining." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8817,55 +8851,55 @@ msgstr "" "telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt " "innstilt så vil denne verdien være liten." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Antall fsync() operasjoner så langt." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Antall ventende fsync() operasjoner." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Antall ventende lesinger." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Antall ventende skrivinger." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Mengden data lest så langt, i bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Antall utførte lesninger." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Antall utførte skrivinger." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Mengden data skrevet så langt, i bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8873,35 +8907,35 @@ msgstr "" "Antall ganger ventinger vi hadde fordi loggmellomlageret var for lite og vi " "måtte vente for at det skulle bli tømt før vi kunne fortsette." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Antall loggskrivingsforespørsler." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Antall fysiske skrivinger til loggfila." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Antall fsync-skrivinger utført på loggfila." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Antall ventende loggfil-fsyncs." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Ventende loggfilskrivinger." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Antall bytes skrevet til loggfila." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Antall sider opprettet." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8909,51 +8943,51 @@ msgstr "" "Den innkompilerte InnoDB sidestørrelsen (standard 16KB). Mange verdier måles " "i sider; sidestørrelsen gjør at det er lett å konvertere dem til bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Antall sidelesninger." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Antall sideskrivinger." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Antall ventende radlåsinger." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brukt for å få radlåsinger, i millisekunder." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimum tid brukt for å oppnå en radlåsing, i millisekunder." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Antall ganger en radlås måtte ventes på." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Antall rader slettet fra InnoDB tabeller." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Antall rader satt inn i InnoDB tabeller." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Antall rader lest fra InnoDB tabeller." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Antall rader oppdatert i InnoDB tabeller." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8962,7 +8996,7 @@ msgstr "" "ennå har blitt skrevet til harddisken. Dette var tidligere kjent som " "Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8970,7 +9004,7 @@ msgstr "" "Antall ubrukte blokker i nøkkelmellomlageret. Du kan bruke denne verdien til " "å bestemme hvor mye av nøkkelmellomlageret som er i bruk." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8979,11 +9013,11 @@ msgstr "" "Antall brukte blokker i nøkkelmellomlageret. Denne verdien er et høyvannsmål " "som viser maksimum antall blokker som har vært brukt på en gang." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Antall forespørsler for å lese en nøkkelblokk fra mellomlageret." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8993,15 +9027,15 @@ msgstr "" "stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan " "kalkuleres med Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Antall forespørsler for å skrive en nøkkelblokk til mellomlageret." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Antall fysiske skrivinger av en nøkkelblokk til disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9012,17 +9046,17 @@ msgstr "" "forskjellige spørringsplaner for den samme spørringen. Standardverdien på 0 " "betyr at ingen spørring har blitt kompilert ennå." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antall rader som venter på å bli skrevet i INSERT DELAYED køer." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9030,38 +9064,38 @@ msgstr "" "Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din " "tabellmellomlagerverdi for liten." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Antall åpne filer." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Antall åpne tabeller." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Mengden ledig minne i spørringsmellomlager." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Antall mellomlagertreff." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Antall spørringer lagt til i mellomlageret." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9074,7 +9108,7 @@ msgstr "" "og sist brukt (least recently used (LRU)) strategi for å finne hvilke " "spørringer som skal fjernes fra mellomlageret." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9082,19 +9116,19 @@ msgstr "" "Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. " "query_cache_type innstillingen)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Antall spørringer registrert i mellomlageret." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Totale antall blokker i spørringsmellomlageret." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9102,11 +9136,11 @@ msgstr "" "Antall joins som ikke bruker indekser. Hvis denne verdien ikke er 0 bør du " "nøye sjekke indeksene til dine tabeller." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "Antall joins som trenger en rekkefølgesøk i en referansetabell." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9114,7 +9148,7 @@ msgstr "" "Antall joins uten nøkler som kontrollerer for nøkkelbruk etter hver rad " "(Hvis denne ikke er 0 bør du nøye kontrollere dine tabellindekser.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9122,15 +9156,15 @@ msgstr "" "Antall joins som brukte rekkefølger på den første tabellen. (Det er normalt " "ikke kritisk selv om denne verdien er stor.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Antall joins som utførte en full skann av den første tabellen." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antall midlertidige tabeller for tiden åpnet av slave SQL tråden." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9138,12 +9172,12 @@ msgstr "" "Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har " "gjentatt transaksjoner." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denne er ON hvis denne tjeneren er en slave som er koblet til en master." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9151,12 +9185,12 @@ msgstr "" "Antall tråder som har brukt mer enn slow_launch_time sekunder under " "opprettelse." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antall spørringer som har brukt mer enn long_query_time sekunder." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9166,24 +9200,24 @@ msgstr "" "denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size " "systemvariabelen." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Antall sorteringer som ble utført med rekkefølger." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Antall sorterte rader." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" "Antall sorteringer som har vært utført ved hjelp av skanning av tabellen." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Antall ganger en tabellåsing ble utført umiddelbart." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9195,7 +9229,7 @@ msgstr "" "først optimalisere dine spørringer, og deretter enten splitte din tabell " "eller tabeller eller bruke replikasjon." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9205,11 +9239,11 @@ msgstr "" "Threads_created/Connections. Hvis denne verdien er rød bør du øke din " "thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Antall åpne tilkoblinger." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9220,7 +9254,7 @@ msgstr "" "stor bør du vurdere å øke thread_cache_size størrelsen. (Normalt vil dette " "ikke gi noen merkbar forbedring hvis du har en god trådimplementering.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Antall tråder som ikke sover." @@ -9343,7 +9377,7 @@ msgstr "Tjenervariabler og -innstillinger" msgid "Session value" msgstr "Økts verdi" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Global verdi" @@ -9642,8 +9676,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Hvis du føler at dette er nødvending, så bruk ekstra " -"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" +"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" "page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. " "Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en " "Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet." @@ -9654,9 +9688,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/nl.po b/po/nl.po index 36016324e9..c74e1c6e9b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-04 15:19+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -46,7 +46,7 @@ msgstr "Zoeken" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -83,7 +83,7 @@ msgstr "Sleutelnaam" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Beschrijving" @@ -165,7 +165,7 @@ msgstr "Type" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -194,7 +194,7 @@ msgstr "Verwijst naar" msgid "Comments" msgstr "Opmerkingen" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,7 +210,7 @@ msgstr "Opmerkingen" msgid "No" msgstr "Nee" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -270,7 +270,7 @@ msgstr "Database %s is gekopieerd naar %s" msgid "Rename database to" msgstr "Hernoem database naar" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Commando" @@ -372,7 +372,7 @@ msgstr "Rijen" msgid "Size" msgstr "Grootte" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "in gebruik" @@ -398,7 +398,7 @@ msgstr "Laatst bijgewerkt" msgid "Last check" msgstr "Laatst gecontroleerd" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -581,62 +581,62 @@ msgstr "In de tabel(len):" msgid "Inside column:" msgstr "In de kolom:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Geen tabellen gevonden in de database" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaakt" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "View %s is verwijderd" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is vervallen" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Tracking is ingeschakeld." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Tracking is niet actief." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "View" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replicatie" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Som" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is de standaard storage engine op deze MySQL-server." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -644,23 +644,23 @@ msgstr "%s is de standaard storage engine op deze MySQL-server." msgid "With selected:" msgstr "Met geselecteerd:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Selecteer alles" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Deselecteer alles" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -668,54 +668,54 @@ msgstr "Selecteer tabellen met overhead" msgid "Export" msgstr "Exporteer" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Afdrukken" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Legen" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Verwijderen" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Controleer tabel" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Repareer tabel" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analyseer tabel" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Voeg voorvoegsel toe aan tabel" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Vervang tabelvoorvoegsel" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Vervang tabel met voorvoegsel" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Data Woordenboek" @@ -730,7 +730,7 @@ msgstr "Tabellen met tracker" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -748,7 +748,7 @@ msgstr "Aangemaakt" msgid "Updated" msgstr "Bijgewerkt" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -850,11 +850,11 @@ msgstr "Dump is bewaard als %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %" -"sdocumentatie%s voor mogelijkheden om dit te omzeilen." +"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de " +"%sdocumentatie%s voor mogelijkheden om dit te omzeilen." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1056,153 +1056,7 @@ msgstr "Geselecteerde gebruikers worden verwijderd" msgid "Close" msgstr "Sluiten" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Serverkeuze" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Query grafiek tonen" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Totaal" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Annuleren" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Laden" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Bezig met verwerken" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Fout tijdens het verwerken van de opdracht" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Kolom komt te vervallen" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Primaire sleutel wordt toegevoegd" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "Correct" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Database hernoemen" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Ververs database" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Database kopiëren" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Karakterset aanpassen" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Tabel moet minimaal één kolom hebben" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Maak tabel" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Gebruik tabellen" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Zoeken" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Verberg zoekresultaten" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Toon zoekresultaten" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Verkennen" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Verwijderen" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" -"Opmerking : Als het bestand meerdere tabellen bevat, zullen deze " -"samengevoegd worden tot één tabel." - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "SQL-query veld verbergen" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "SQL-query veld tonen" - -# "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen -# iets anders. -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Wijzig inline" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1211,7 +1065,195 @@ msgstr "Wijzig inline" msgid "Edit" msgstr "Wijzig" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Serverkeuze" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query chart" +msgid "Live query chart" +msgstr "Query grafiek tonen" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Totaal" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Serverkeuze" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Processen" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Connecties" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL-queries" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Toon statistieken" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Annuleren" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Laden" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Bezig met verwerken" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Fout tijdens het verwerken van de opdracht" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Kolom komt te vervallen" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Primaire sleutel wordt toegevoegd" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "Correct" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Database hernoemen" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Ververs database" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Database kopiëren" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Karakterset aanpassen" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Tabel moet minimaal één kolom hebben" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Maak tabel" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Gebruik tabellen" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Zoeken" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Verberg zoekresultaten" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Toon zoekresultaten" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Verkennen" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Verwijderen" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" +"Opmerking : Als het bestand meerdere tabellen bevat, zullen deze " +"samengevoegd worden tot één tabel." + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "SQL-query veld verbergen" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "SQL-query veld tonen" + +# "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen +# iets anders. +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Wijzig inline" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1219,41 +1261,41 @@ msgstr "Wijzig" msgid "Save" msgstr "Opslaan" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Verberg" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Verberg zoekcriteria" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Toon zoek-criteria" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Negeer" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Selecteer de gerefereerde sleutel" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Selecteer vreemde sleutel" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Selecteer de primaire sleutel of een unieke sleutel" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Kies weer te geven veld" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1261,27 +1303,27 @@ msgstr "" "U hebt de layoutwijzigingen niet opgeslagen. Deze zullen verloren gaan als u " "deze niet opslaat. Wilt u doorgaan?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Voeg een optie toe voor komom " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Genereer wachtwoord" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Genereer" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Wijzig wachtwoord" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Meer" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1291,26 +1333,26 @@ msgstr "" "overwegen. De nieuwe versie is %s, uitgebracht op %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", meest recente versie:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "Recent bijgewerkt" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Klaar" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1318,231 +1360,231 @@ msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Vandaag" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "januari" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "februari" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "maart" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "april" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "mei" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "juni" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "juli" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "augustus" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "september" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "oktober" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "november" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "dec" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "zondag" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "maandag" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "dinsdag" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "woensdag" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "donderdag" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "vrijdag" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "zaterdag" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "zo" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "ma" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "do" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "za" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "zo" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "do" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "vr" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "za" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Week" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Uur" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minuut" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Seconde" @@ -1774,8 +1816,8 @@ msgstr "Welkom op %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u " "%1$ssetup script%2$s gebruiken om een te maken." @@ -1921,7 +1963,7 @@ msgstr "gedeeld" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabellen" @@ -2054,7 +2096,7 @@ msgid "Documentation" msgstr "Documentatie" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-query" @@ -2083,7 +2125,7 @@ msgid "Create PHP Code" msgstr "Genereer PHP-Code" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Vernieuw" @@ -4825,13 +4867,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabel naam" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het " "gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende " -"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5" -"$s voor meer details." +"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ" +"%5$s voor meer details." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -4848,7 +4890,7 @@ msgstr "Compressie:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Geen" @@ -5088,7 +5130,7 @@ msgid "The row has been deleted" msgstr "De rij is verwijderd" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "stop proces" @@ -5180,7 +5222,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5587,11 +5629,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Documentatie en meer informatie over PBXT kan gevonden worden op de %" -"sPrimeBase XT home pagina%s." +"Documentatie en meer informatie over PBXT kan gevonden worden op de " +"%sPrimeBase XT home pagina%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -5689,7 +5731,7 @@ msgstr "Toon beschikbare MIME-types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Machine" @@ -6410,13 +6452,13 @@ msgid "Slave status" msgstr "Slave status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variabelen" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Waarde" @@ -6645,12 +6687,12 @@ msgid "Synchronize" msgstr "Synchronizatie" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binaire log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variabelen" @@ -6934,7 +6976,7 @@ msgstr "PARTITION definitie" msgid "+ Add a new value" msgstr "+ Een nieuwe waarde toevoegen" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Tijd" @@ -7134,7 +7176,7 @@ msgid "Protocol version" msgstr "Protocolversie" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Gebruiker" @@ -7590,17 +7632,17 @@ msgstr "Bestand bestaat niet" msgid "Select binary log to view" msgstr "Selecteer de te bekijken binaire log" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Bestanden" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Getoonde queries afkappen" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Toon volledige Queries" @@ -8006,8 +8048,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL " "privileges tabel. De content van deze tabel kan verschillen met de rechten " @@ -8142,7 +8184,7 @@ msgstr "Master server succesvol gewijzigd in %s" msgid "This server is configured as master in a replication process." msgstr "Deze server is ingesteld als master in een replicatie proces." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Toon master status" @@ -8292,12 +8334,12 @@ msgstr "" "Deze server is niet ingesteld als slave in een replicatie proces. Wilt u dit " "nu instellen?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s is succesvol afgesloten." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8305,166 +8347,162 @@ msgstr "" "phpMyAdmin is er niet in geslaagd om de %s te sluiten.Waarschijnlijk is het " "al gesloten." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Handler" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Query cache" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Threads" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Tijdelijke data" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Vertraagde inserts" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Sleutelcache" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Joins" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Sortering" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Transactie coördinator" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Schoon (sluit) alle tabellen" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Toon open tabellen" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Toon slave hosts" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Toon slave status" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Schoon query cache" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Runtime-informatie" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Serverkeuze" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Toon statistieken" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Slave status tabel" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Vernieuw" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Seconde" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Seconde" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Minuut" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Wijzig het wachtwoord niet" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Toon open tabellen" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "Gerelateerde links" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "per uur" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "per minuut" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "per seconde" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Query-type" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Deze MySQL-server draait inmiddels %s. Hij is gestart op %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8472,13 +8510,13 @@ msgstr "" "Deze MySQL server is ingesteld als master en slave in een " "replicatie proces." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Deze MySQL server is ingesteld als master in een replicatie " "proces." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Deze MySQL server is ingesteld als slave in een replicatie " @@ -8487,7 +8525,7 @@ msgstr "" # Er moet een betere vertaling voor "replication" zijn. "Nadoen"? # "Deze MySQL-server functioneert als %s in een replicatie proces." # weggehaald. -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8495,15 +8533,15 @@ msgstr "" "Kijk voor meer informatie over de replicatiestatus op deze server in de replicatiestatus sectie." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Replicatie status" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Verkeer" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8511,45 +8549,41 @@ msgstr "" "Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor " "kunnen de gerapporteerde statistieken afwijken." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Ontvangen" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Verzonden" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Connecties" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "Max. gelijktijdige verbindingen" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Mislukte pogingen" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Afgehaakte" -#: server_status.php:784 -msgid "Processes" -msgstr "Processen" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Er kan geen verbinding worden gemaakt met de server" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8560,18 +8594,18 @@ msgstr "" "hebben gemaakt van een tijdelijkbestand om opdrachten uit de transactie op " "te slaan." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Het aantal transactie dat gebruik maakte van het tijdelijke binaire log " "cache." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8583,11 +8617,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8595,7 +8629,7 @@ msgstr "" "Het aantal in het geheugen geplaatste tijdelijke tabellen dat automatisch " "door de server werd aangemaakt tijdens het uitvoeren van opdrachten." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8603,7 +8637,7 @@ msgstr "" "Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad " "(mogelijk een reeds bestaande sleutel)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8612,23 +8646,23 @@ msgstr "" "afzonderlijke tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen " "thread." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Het aantal met INSERT DELAYED opgeslagen rijen." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Het aantal uitgevoerde FLUSH opdrachten." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Het aantal interne COMMIT opdrachten." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Het aantal keer dat een rij werd verwijderd uit een tabel." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8638,7 +8672,7 @@ msgstr "" "met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft " "aan hoeveel tabellen met discovery werden opgezocht." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8648,7 +8682,7 @@ msgstr "" "hoog geeft dit een indicatie dat de server veel scans doet op de volledige " "index; bijvoorbeeld SELECT kolom1 FROM foo, waarbij kolom1 is geïndexeerd." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8657,7 +8691,7 @@ msgstr "" "hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige " "indexen." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8667,7 +8701,7 @@ msgstr "" "wordt verhoogd wanneer u een index kolom raadpleegt met een bereik beperking " "of bij het doen van een index scan." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8675,7 +8709,7 @@ msgstr "" "Het aantal leesopdrachten voor de voorgaande rij in de sleutel volgorde. Dit " "wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8688,7 +8722,7 @@ msgstr "" "gehele tabel moet scannen of er worden joins toegepast die niet goed " "gebruikmaken van sleutels." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8701,35 +8735,35 @@ msgstr "" "zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van " "maken." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Het aantal interne ROLLBACK opdrachten." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Het aantal update opdrachten voor een tabel rij." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Het aantal opdrachten om een rij aan een tabel toe te voegen." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Het aantal pages dat data bevat (dirty en clean)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Het aantal pages dat momenteel dirty is." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Het aantal buffer pool pages dat is geschoond." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Het aantal vrije pages." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8739,7 +8773,7 @@ msgstr "" "momenteel wordt gelezen of geschreven, of die om een andere reden niet " "geschoond of verwijderd kunnen worden." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8751,11 +8785,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Totale formaat van de buffer pool, in pages." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8764,7 +8798,7 @@ msgstr "" "gebeurd wanneer een query een groot deel van een tabel laat scannen, maar in " "willekeurige volgorde." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8772,11 +8806,11 @@ msgstr "" "Het aantal sequentiele read-aheads dat door InnoDB werd geïnitieerd. Dit " "gebeurd wanneer er een volledige tabelscan wordt uitgevoerd." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Het aantal logische read requests dat door InnoDB werd uitgevoerd." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8784,7 +8818,7 @@ msgstr "" "Het aantal logische lees operaties dat InnoDB niet kon doen vanuit de buffer " "pool maar waarvoor een extra page ingeladen moest worden." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8798,86 +8832,86 @@ msgstr "" "geschoond. Deze teller houd bij hoe vaak dit voorkomt. Indien het buffer " "pool formaat goed is ingesteld hoort deze waarde laag te zijn." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Het aantal schrijf operaties uitgevoerd op de InnoDB buffer pool." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Het aantal fsync() operaties." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Het aantal momenteel openstaande fsync() operaties." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Het aantal momenteel openstaande lees operaties." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Het aantal momenteel openstaande schrijf operaties." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "De hoeveelheid gelezen data, in bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Het totale aantal data lees operaties." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Het totale aantal data schrijf operaties." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "De hoeveelheid geschreven data, in bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "Het aantal pagina's dat werd geschreven voor doublewrite operaties." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "Het aantal uitgevoerde doublewrite operaties." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Het aantal keer dat er gewacht moest worden vanwege een volle log buffer." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Het aantal log schrijf opdrachten." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Het aantal fysieke schrijf operaties op het log bestand." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Het aantal fsync() schrijf operaties uitgevoerd op het log bestand." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Het aantal momenteel openstaande fsync operaties op het logbestand." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Het aantal momenteel openstaande schrijf operaties op het logbestand." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Het aantal bytes dat naar het logbestand werd geschreven." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Het aantal pages dat werd aangemaakt." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8886,54 +8920,54 @@ msgstr "" "Veel waarden worden geteld in pages. Een vaste page grootte maakt het " "eenvoudig deze te converteren naar bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Het aantal gelezen pages." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Het aantal geschreven pages." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "De gemiddelde tijd nodig om een rij lock te verkrijgen, in milliseconden." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "De totale tijd besteed aan het verkrijgen van rij locks, in milliseconden." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "De maximale tijd nodig om een rij lock te verkrijgen, in milliseconden." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Het aantal keer dat er op een rij lock moest worden gewacht." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Het aantal rijen dat werd verwijderd uit InnoDB tabellen." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Het aantal rijen dat werd ingevoegd in InnoDB tabellen." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Het aantal rijen dat werd gelezen uit InnoDB tabellen." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB tabellen." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8942,13 +8976,13 @@ msgstr "" "niet naar disk zijn geschreven. Dit stond voorheen bekend als " "Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "Het aantal ongebruikte blokken in het sleutelcache." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8957,11 +8991,11 @@ msgstr "" "Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal " "behaalde waarde sinds het starten van de server." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Het aantal leesopdrachten voor een sleutelblok uit het cache." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8971,15 +9005,15 @@ msgstr "" "key_reads groot is, is de waarde van key_buffer_size mogelijk te laag. De " "cache miss rate kan worden berekend met Key_reads / Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Het aantal schrijf opdrachten voor een sleutelblok naar het cache." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Het aantal fysieke schrijf opdrachten voor een sleutelblok naar disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8990,19 +9024,19 @@ msgstr "" "verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend " "dat er nog geen query is gecompiled." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Het aantal rijen dat klaar staan om te worden geschreven in INSERT DELAYED " "wachtrijen." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9010,39 +9044,39 @@ msgstr "" "Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de table " "cache waarde te laag." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Het totaal aantal geopende bestanden." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven van log)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Het totaal aantal open tabellen." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "De hoeveelheid vrij geheugen voor het query cache." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Het aantal cache hits." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Het aantal queries dat aan het cache werd toegevoegd." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9055,7 +9089,7 @@ msgstr "" "recent gebruikt (least recently used, LRU) strategie om te bepalen welke " "queries worden verwijderd." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9063,19 +9097,19 @@ msgstr "" "Het aantal niet gecachte queries (niet cachebaar, danwel niet gecached " "vanwege de query_cache_type instelling)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Het aantal queries dat in het cache staat." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Het totaal aantal blokken in het query cache." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "De status van failsafe replicatie (nog niet geïmplementeerd)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9083,13 +9117,13 @@ msgstr "" "Het aantal joins dat geen gebruik maakt van een index. Indien dit geen 0 is, " "is het aan te raden om het gebruik van indexen te controleren." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Het aantal joins dat een bereik beperking toepassen op een gerefereerde " "tabel." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9098,7 +9132,7 @@ msgstr "" "van een sleutel. (Indien dit geen 0 is, is het aan te raden om het gebruik " "van indexen te controleren.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9106,17 +9140,17 @@ msgstr "" "Het aantal joins dat een bereik beperking gebruikt op de eerste tabel. (Dit " "hoeft geen groot probleem te zijn, zelfs niet bij grote tabellen.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Het aantal joins dat een volledige scan van de eerste tabel uitvoerde." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Het aantal momenteel openstaande tijdelijke tabellen voor de slave SQL " "threas." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9124,13 +9158,13 @@ msgstr "" "Het totaal aantal transacties dat moest worden herhaald door de replicatie " "slave SQL thread (sinds het opstarten van de server)." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dit staat op 'ON' indien deze server als een replicatie slave verbonden is " "met een master server." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9138,14 +9172,14 @@ msgstr "" "Het aantal threads waarvoor het opstarten langer dan slow_launch_time " "seconden duurde." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Het aantal queries waarvan het uitvoeren langer dan long_query_time seconden " "duurde." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9155,24 +9189,24 @@ msgstr "" "uitvoeren. Indien deze waarde hoog is, is het een optie om de systeem " "variabele sort_buffer_size te vergroten." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Het aantal gesorteerde rijen." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" "Het aantal sorteringen dat werd uitgevoerd door het scannen van de tabel." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Het aantal keer dat een tabel lock direct kon worden verkregen." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9184,7 +9218,7 @@ msgstr "" "problemen, kunt u het beste eerst uw queries optimalizeren. Daarna kunt u " "nog kijken naar het splitsen van tabellen en het gebruik van replicatie." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9194,11 +9228,11 @@ msgstr "" "berekend met Threads_created/Connections. Indien deze waarde rood staat " "aangegeven is het aan te raden om thread_cache_size te vergroten." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Het aantal momenteel openstaande verbindingen." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9210,7 +9244,7 @@ msgstr "" "verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede " "thead implementatie, geen noemenswaardige prestatie verbetering.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Het aantal threads dat actief bezig is." @@ -9333,7 +9367,7 @@ msgstr "Servervariabelen en -instellingen" msgid "Session value" msgstr "Sessievariabelen" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Globale waarde" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 3b1199d147..eb189e77ff 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,10 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" @@ -47,7 +48,7 @@ msgstr "" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +85,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "" @@ -164,7 +165,7 @@ msgstr "" msgid "Null" msgstr "" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -193,7 +194,7 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -209,7 +210,7 @@ msgstr "" msgid "No" msgstr "" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -269,7 +270,7 @@ msgstr "" msgid "Rename database to" msgstr "" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "" @@ -369,7 +370,7 @@ msgstr "" msgid "Size" msgstr "" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "" @@ -395,7 +396,7 @@ msgstr "" msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, possible-php-format msgid "%s table" msgid_plural "%s tables" @@ -578,61 +579,61 @@ msgstr "" msgid "Inside column:" msgstr "" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, possible-php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, possible-php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, possible-php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, possible-php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, possible-php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -640,23 +641,23 @@ msgstr "" msgid "With selected:" msgstr "" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -664,54 +665,54 @@ msgstr "" msgid "Export" msgstr "" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "" @@ -726,7 +727,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -744,7 +745,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -842,8 +843,8 @@ msgstr "" #: import.php:58 #, possible-php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1024,143 +1025,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -msgid "Live traffic chart" -msgstr "" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -msgid "Live query chart" -msgstr "" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "" - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "" - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -msgid "Loading" -msgstr "" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "" - -#: js/messages.php:104 -msgid "Searching" -msgstr "" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1169,7 +1034,179 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +msgid "Live query chart" +msgstr "" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "" + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "" + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +msgid "Server traffic (in kB)" +msgstr "" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "" + +#: js/messages.php:85 +msgid "Connections / Processes" +msgstr "" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +msgid "Issued queries" +msgstr "" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +msgid "Loading" +msgstr "" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "" + +#: js/messages.php:117 +msgid "Searching" +msgstr "" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1177,67 +1214,67 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, possible-php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1245,26 +1282,26 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1272,231 +1309,231 @@ msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "" @@ -1718,8 +1755,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, possible-php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1853,7 +1890,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "" @@ -1977,7 +2014,7 @@ msgid "Documentation" msgstr "" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "" @@ -2006,7 +2043,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4530,8 +4567,8 @@ msgstr "" #, possible-php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4549,7 +4586,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "" @@ -4770,7 +4807,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "" @@ -4856,7 +4893,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "" @@ -5197,8 +5234,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, possible-php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5297,7 +5334,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "" @@ -5973,13 +6010,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6202,12 +6239,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "" @@ -6462,7 +6499,7 @@ msgstr "" msgid "+ Add a new value" msgstr "" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "" @@ -6615,7 +6652,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "" @@ -7026,17 +7063,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "" @@ -7418,8 +7455,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7539,7 +7576,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -7672,245 +7709,237 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, possible-php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:107 +#: server_status.php:121 #, possible-php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "" -#: server_status.php:371 +#: server_status.php:385 msgid "Server traffic" msgstr "" -#: server_status.php:372 -msgid "Query statistics" -msgstr "" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 msgid "second" msgstr "" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 msgid "seconds" msgstr "" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 msgid "minutes" msgstr "" -#: server_status.php:446 +#: server_status.php:460 msgid "Containing the word:" msgstr "" -#: server_status.php:451 +#: server_status.php:465 msgid "Show only alert values" msgstr "" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 msgid "Related links:" msgstr "" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, possible-php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, possible-php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, possible-php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "" -#: server_status.php:784 -msgid "Processes" -msgstr "" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "" -#: server_status.php:846 +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7918,78 +7947,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -7997,7 +8026,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8005,42 +8034,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8048,33 +8077,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8083,227 +8112,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8311,99 +8340,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8411,18 +8440,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8430,7 +8459,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -8551,7 +8580,7 @@ msgstr "" msgid "Session value" msgstr "" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "" diff --git a/po/pl.po b/po/pl.po index b732b4d3e8..efeb0afe8c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: polish \n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" @@ -48,7 +48,7 @@ msgstr "Szukaj" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "Nazwa klucza" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Opis" @@ -167,7 +167,7 @@ msgstr "Typ" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -196,7 +196,7 @@ msgstr "Łącze" msgid "Comments" msgstr "Komentarze" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -212,7 +212,7 @@ msgstr "Komentarze" msgid "No" msgstr "Nie" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -272,7 +272,7 @@ msgstr "Baza danych %s została przekopiowana do %s" msgid "Rename database to" msgstr "Zmień nazwę bazy danych na" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Polecenie" @@ -377,7 +377,7 @@ msgstr "Rekordów" msgid "Size" msgstr "Rozmiar" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "w użyciu" @@ -403,7 +403,7 @@ msgstr "Ostatnia aktualizacja" msgid "Last check" msgstr "Ostatnie sprawdzenie" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -591,63 +591,63 @@ msgstr "Wewnątrz tabel(i):" msgid "Inside column:" msgstr "Wewnątrz kolumny:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Nie znaleziono żadnych tabel w bazie danych." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s została opróżniona" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Widok %s został usunięty" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s została usunięta" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Monitorowanie jest aktywne." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Monitorowanie nie jest aktywne." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %" -"sdocumentation%s." +"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w " +"%sdocumentation%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Widok" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikacja" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Suma" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s to domyślny mechanizm składowania tego serwera MySQL." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -655,23 +655,23 @@ msgstr "%s to domyślny mechanizm składowania tego serwera MySQL." msgid "With selected:" msgstr "Zaznaczone:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Zaznacz wszystkie" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Usuń zaznaczenie" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Zaznacz nieoptymalne" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -679,60 +679,60 @@ msgstr "Zaznacz nieoptymalne" msgid "Export" msgstr "Eksport" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Widok do druku" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Wyczyść" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Usuń" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Sprawdź tabelę" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optymalizuj tabelę" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Napraw tabelę" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analizuj tabelę" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Przejdź do tabeli" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Zamiana danych tabeli z plikiem" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zamiana danych tabeli z plikiem" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Słownik danych" @@ -747,7 +747,7 @@ msgstr "Monitorowane tabele" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -765,7 +765,7 @@ msgstr "Utworzone" msgid "Updated" msgstr "Zaktualizowane" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -865,8 +865,8 @@ msgstr "Zrzut został zapisany do pliku %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego " "limitu, proszę zapoznać się z %sdokumenacją%s." @@ -1071,163 +1071,7 @@ msgstr "Usuń zaznaczonych użytkowników" msgid "Close" msgstr "Zamknij" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Wybór serwera" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "SQL Query box" -msgid "Live query chart" -msgstr "Okno zapytania SQL" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Sumarycznie" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Anuluj" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Wczytywanie" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Przetwarzanie wywołania" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Błąd przetwarzania wywołania" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Usuwanie Kolumny" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Dodawanie klucza głównego" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Zmiana nazwy bazy danych" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Przeładowanie bazy danych" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Kopiowanie bazy danych" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Kodowanie napisów" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Tabela musi mieć przynajmniej jedną kolumnę" - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Utwórz tabelę" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Użyj tabel" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Wyszukiwanie" - -#: js/messages.php:105 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Hide search results" -msgstr "Ukryj okno zapytania SQL" - -#: js/messages.php:106 -#, fuzzy -#| msgid "SQL Query box" -msgid "Show search results" -msgstr "Okno zapytania SQL" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Przeglądaj" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Usuwanie %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Ukryj okno zapytań" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Pokaż okno zapytań" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Mechanizmy" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1236,7 +1080,205 @@ msgstr "Mechanizmy" msgid "Edit" msgstr "Edytuj" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Wybór serwera" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "SQL Query box" +msgid "Live query chart" +msgstr "Okno zapytania SQL" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Sumarycznie" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Wybór serwera" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Procesy" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Połączenia" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "Zapytania SQL" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Statystyki zapytań" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Anuluj" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Wczytywanie" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Przetwarzanie wywołania" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Błąd przetwarzania wywołania" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Usuwanie Kolumny" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Dodawanie klucza głównego" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Zmiana nazwy bazy danych" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Przeładowanie bazy danych" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Kopiowanie bazy danych" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Kodowanie napisów" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Tabela musi mieć przynajmniej jedną kolumnę" + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Utwórz tabelę" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Użyj tabel" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Wyszukiwanie" + +#: js/messages.php:118 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Hide search results" +msgstr "Ukryj okno zapytania SQL" + +#: js/messages.php:119 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show search results" +msgstr "Okno zapytania SQL" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Przeglądaj" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Usuwanie %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Ukryj okno zapytań" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Pokaż okno zapytań" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Mechanizmy" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1244,71 +1286,71 @@ msgstr "Edytuj" msgid "Save" msgstr "Zachowaj" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Ukryj" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Ukryj okno zapytania SQL" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "Okno zapytania SQL" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoruj" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Wybierz klucz odwołujący" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Wybierz klucz zewnętrzny" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Należy wybrać klucz główny lub klucz jednoznaczny" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Wybierz kolumny do wyświetlenia" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Dodaj opcję do kolumny" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Wygeneruj hasło" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generuj" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Zmień hasło" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Więcej" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1318,28 +1360,28 @@ msgstr "" "werja to %s, wydana dnia %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", ostatnia stabiln()a wersja:" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Przejdź do bazy danych" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Zakończ" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Poprzedni" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1347,80 +1389,80 @@ msgid "Next" msgstr "Następne" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Dzisiaj" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr " Styczeń" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Luty" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Marzec" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Kwiecień" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Maj" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Czerwiec" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Lipiec" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Sierpień" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Wrzesień" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Październik" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Listopad" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Grudzień" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1428,166 +1470,166 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Gru" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Niedziela" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Poniedziałek" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Wtorek" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Środa" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Czwartek" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Piątek" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Nie" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Wto" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Śro" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Czw" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pią" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sob" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Wk" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Godzina" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minuta" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Sekunda" @@ -1827,8 +1869,8 @@ msgstr "Witamy w %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego " "stworzenia można użyć %1$sskryptu instalacyjnego%2$s." @@ -1971,7 +2013,7 @@ msgstr "współdzielone" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabele" @@ -2108,7 +2150,7 @@ msgid "Documentation" msgstr "Dokumentacja" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "Zapytanie SQL" @@ -2139,7 +2181,7 @@ msgid "Create PHP Code" msgstr "Utwórz kod PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Odśwież" @@ -4959,8 +5001,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć " "jej napisów formatujących. Dodatkowo zostaną zastosowane następujące " @@ -4983,7 +5025,7 @@ msgstr "Typ kompresji" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Brak" @@ -5255,7 +5297,7 @@ msgid "The row has been deleted" msgstr "Rekord został skasowany" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Unicestwij" @@ -5347,7 +5389,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Rezerwy buforowe" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Status InnoDB" @@ -5744,8 +5786,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5867,7 +5909,7 @@ msgstr "Dostępne typy MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Host" @@ -6584,13 +6626,13 @@ msgid "Slave status" msgstr "Stan serwera podrzędnego" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Zmienna" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Wartość" @@ -6837,12 +6879,12 @@ msgid "Synchronize" msgstr "Synchronizacja" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Dziennik binarny" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Zmienne" @@ -7004,8 +7046,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy " -"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %" -"sdokumentacji%s." +"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w " +"%sdokumentacji%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7059,8 +7101,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %" -"sopisy transformacji%s" +"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij " +"%sopisy transformacji%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -7141,7 +7183,7 @@ msgstr "Definicja partycji" msgid "+ Add a new value" msgstr "Dodaj nowy serwer" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Czas" @@ -7389,7 +7431,7 @@ msgid "Protocol version" msgstr "Wersja protokołu" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Użytkownik" @@ -7547,8 +7589,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%" -"s." +"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja" +"%s." #: navigation.php:207 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -7885,17 +7927,17 @@ msgstr "Tabela \"%s\" nie istnieje!" msgid "Select binary log to view" msgstr "Wybierz dziennik binarny do podglądu" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Pliki" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Ucinaj wyświetlane zapytania" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Pokaż pełne zapytania" @@ -8295,8 +8337,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień " "MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, " @@ -8432,7 +8474,7 @@ msgstr "Serwer główny zmieniony pomyślnie na %s" msgid "This server is configured as master in a replication process." msgstr "Ten serwer jest skonfigurowany jako główny w procesie replikacji." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Pokaż stan serwera głównego" @@ -8589,12 +8631,12 @@ msgstr "" "Ten serwer nie jest skonfigurowany jako podrzędny w procesie replikacji. Czy " "chcesz go skonfigurować ?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Wątek %s został pomyślnie unicestwiony." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8602,166 +8644,162 @@ msgstr "" "phpMyAdminowi nie udało się unicestwić wątku %s. Prawdopodobnie został on " "już zamknięty." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Obsługa" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Pamięć podręczna zapytań" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Wątki" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Dane tymczasowe" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Opóźnione dodania" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Bufor podręczny indeksów" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Złączenia" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Sortowanie" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Koordynator transakcji" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Przeładuj (zamknij) wszystkie tabele" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Pokaż otwarte tabele" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Pokaż podrzędne hosty" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Status serwera podrzędnego" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Opróżnij bufor podręczny zapytań" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Informacje o działaniu serwera" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Wybór serwera" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Statystyki zapytań" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Zobacz status tabeli serwera podrzędnego" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Odśwież" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Sekunda" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Sekunda" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Minuta" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nie zmieniaj hasła" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Pokaż otwarte tabele" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacje" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "na godzinę" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "na minutę" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "na sekundę" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Rodzaj zapytania" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Serwer MySQL działa przez %s. Początek pracy: %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8769,29 +8807,29 @@ msgstr "" "Ten serwer MySQL jest ustawiony jako master i slave w procesie " "replikacji." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Stan replikacji" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Ruch" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8799,45 +8837,41 @@ msgstr "" "Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki " "jakich dostarcza serwer MySQL nie są wiarygodne." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Otrzymane" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Wysłane" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Połączenia" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "Maks. jednoczesnych połączeń" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Nieudane próby" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Przerwane" -#: server_status.php:784 -msgid "Processes" -msgstr "Procesy" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nie można połączyć się z serwerem MySQL" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8847,18 +8881,18 @@ msgstr "" "binarnego, które przekroczyły wartość binlog_cache_size i do zapisania " "instrukcji transakcji został użyty plik tymczasowy." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika " "binarnego." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8870,11 +8904,11 @@ msgstr "" "zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w " "pamięci, a nie na dysku." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Ile plików tymczasowych utworzył mysqld." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8882,7 +8916,7 @@ msgstr "" "Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer " "podczas wykonywania instrukcji." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8890,7 +8924,7 @@ msgstr "" "Liczba rekordów zapisanych przy pomocy INSERT DELAYED, dla których wystąpił " "jakiś błąd (prawdopodobnie zdublowany klucz)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8898,23 +8932,23 @@ msgstr "" "Liczba użytych wątków obsługujących INSERT DELAYED. Każda osobna tabela, na " "której wykonuje się INSERT DELAYED dostaje własny wątek." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Liczba rekordów zapisanych poprzez INSERT DELAYED." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Liczba wykonanych instrukcji FLUSH." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Liczba wewnętrznych instrukcji COMMIT." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Ile razy rekord został usunięty z tabeli." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8924,7 +8958,7 @@ msgstr "" "informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery). Handler_discover wskazuje, ile razy tabela została odkryta." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8934,7 +8968,7 @@ msgstr "" "sugeruje, że serwer wykonuje pełnych przeszukań indeksów; na przykład SELECT " "col1 FROM foo, przy założeniu, że col1 jest zindeksowane." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8942,7 +8976,7 @@ msgstr "" "Liczba żądań odczytu rekordu na podstawie indeksu. Duża wartość to dobra " "oznaka tego, że zapytania i tabele są właściwie zindeksowane." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8952,7 +8986,7 @@ msgstr "" "jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym " "przedziale lub przy przeszukiwaniu indeksu." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8960,7 +8994,7 @@ msgstr "" "Liczba żądań odczytu poprzedniego rekordu w porządku indeksowym. Metoda " "używana głównie do optymalizacji ORDER BY … DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8972,7 +9006,7 @@ msgstr "" "sortowania rezultatu. Prawdopodobnie wykonano wiele zapytań wymagających " "przeszukania całej tabeli lub złączeń, które nie używają poprawnie indeksów." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8984,35 +9018,35 @@ msgstr "" "nie są poprawnie zindeksowane lub że zapytania nie są napisane w sposób " "pozwalający skorzystać z istniejących indeksów." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Liczba wewnętrznych instrukcji ROLLBACK." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Liczba żądań zmiany rekordu w tabeli." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Liczba żądań dodania rekordu do tabeli." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Liczba stron zawierających dane (brudnych lub czystych)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Liczba aktualnie brudnych stron." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Liczba stron w puli bufora, których wymiecienia zażądano." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Liczba wolnych stron." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -9022,7 +9056,7 @@ msgstr "" "odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub " "usunięte z jakiegoś innego powodu." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9035,11 +9069,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Łączny rozmiar puli bufora, w stronach." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -9048,7 +9082,7 @@ msgstr "" "Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej " "kolejności." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9056,11 +9090,11 @@ msgstr "" "Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " "Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9068,7 +9102,7 @@ msgstr "" "Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i " "musiał wykonać odczyt pojedynczej strony." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9082,51 +9116,51 @@ msgstr "" "wskazuje liczbę wystąpień takich oczekiwań. Jeżeli rozmiar puli bufora był " "ustawiony właściwie, wartość ta powinna być mała." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Liczba wykonanych zapisów do puli bufora InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Liczba dotąd wykonanych operacji fsync()." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Aktualna liczba operacji fsync() w toku." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Aktualna liczba odczytów w toku." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Aktualna liczba zapisów w toku." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Ilość dotąd odczytanych danych, w bajtach." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Łączna liczba odczytów danych." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Łączna liczba zapisów danych." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Ilość dotąd zapisanych danych, w bajtach." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "Liczba przeprowadzonych zapisów typu doublewrite." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "Liczba stron zapisanych przy zapisie typu doublewrite." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9134,35 +9168,35 @@ msgstr "" "Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy " "oczekiwano na jego opróżnienie." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Liczba żądań zapisów do dziennika." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Liczba fizycznych zapisów do pliku dziennika." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Liczba synchronicznych zapisów do pliku dziennika." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Liczba wywołań fsync dla pliku dziennika w toku." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Liczba zapisów do pliku dziennika w toku." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Liczba bajtów zapisanych do pliku dziennika." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Liczba utworzonych stron." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9171,51 +9205,51 @@ msgstr "" "mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą " "konwersję na bajty." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Liczba odczytanych stron." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Liczba zapisanych stron." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Liczba blokad rekordów na które aktualnie się czeka." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Średni czas uzyskania blokady rekordu, w milisekundach." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Całkowity czas zużyty na uzyskiwanie blokad rekordów, w milisekundach." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksymalny czas uzyskania blokady rekordu, w milisekundach." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Ile razy czekano na blokadę rekordu." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Liczba rekordów usuniętych z tabel InnoDB." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Liczba rekordów dodanych do tabel InnoDB." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Liczba rekordów odczytanych z tabel InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Liczba rekordów zmienionych w tabelach InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9224,7 +9258,7 @@ msgstr "" "jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę " "Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9232,7 +9266,7 @@ msgstr "" "Liczba nieużywanych bloków w buforze podręcznym indeksów. Można użyć tej " "wartości do określenia jaka część bufora indeksów jest w użyciu." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9241,11 +9275,11 @@ msgstr "" "Liczba użytych bloków w buforze podręcznym indeksów. Ta wartość to próg, " "który wskazuje maksymalną liczbę kiedykolwiek jednocześnie użytych bloków." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Liczba żądań odczytu bloku z bufora podręcznego indeksów." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9256,15 +9290,15 @@ msgstr "" "Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/" "Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Liczba żądań zapisów bloków indeksów to bufora podręcznego." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Liczba fizycznych zapisów bloków indeksów na dysk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9275,17 +9309,17 @@ msgstr "" "wykonania tego samego zapytania. Domyślna wartość 0 oznacza, że jeszcze " "żadne zapytanie nie zostało skompilowane." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Liczba rekordów oczekujących na zapisanie w kolejkach INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9293,39 +9327,39 @@ msgstr "" "Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, " "prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Liczba otwartych plików." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Liczba otwartych strumieni (używanych głownie do rejestracji w dzienniku)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Liczba otwartych tabel." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Liczba trafień pamięci podręcznej." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Liczba zapytań dodanych do pamięci podręcznej." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9338,7 +9372,7 @@ msgstr "" "bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany" "\" (least recently used - LRU)." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9346,19 +9380,19 @@ msgstr "" "Liczba niezbuforowanych zapytań (nie dających się zbuforować lub " "niezbuforowanych z powodu ustawienia query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Całkowita liczba bloków w buforze podręcznym zapytań." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan replikacji zabezpieczającej (jeszcze nie zaimplementowane)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9366,13 +9400,13 @@ msgstr "" "Liczba złączeń nie używających indeksów. Wartość różna od 0 sugeruje " "staranne przyjrzenie się indeksom tabel." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Liczba złączeń w których użyto wyszukiwania zakresowego na pierwszej " "złączanej tabeli." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9381,7 +9415,7 @@ msgstr "" "dla każdego rekordu. (Wartość różna od 0 sugeruje staranne przyjrzenie się " "indeksom tabel.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9389,16 +9423,16 @@ msgstr "" "Liczba złączeń w których użyto zakresów w stosunku do pierwszej tabeli. " "(Nawet duża wartość nie ma kluczowego znaczenia.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Liczba złączeń, które przeszukały w pełni pierwszą tabelę." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Liczba tymczasowych tabel aktualnie otwartych przez podrzędny wątek SQL." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9406,26 +9440,26 @@ msgstr "" "Ile raz łącznie (od startu) podrzędny wątek SQL replikacji ponawiał " "transakcje." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "ON oznacza, że ten serwer jest podrzędny i jest podłączony go serwera " "głównego." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Liczba wątków, których utworzenie trwało dłużej niż slow_launch_time sekund." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Liczba zapytań, których wykonanie zajęło więcej niż long_query_time sekund." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9435,23 +9469,23 @@ msgstr "" "dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej " "systemowej sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Liczba sortowań wykonanych przy użyciu zakresów." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Liczba posortowanych rekordów." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9463,7 +9497,7 @@ msgstr "" "się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) " "lub użyć replikacji." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9473,11 +9507,11 @@ msgstr "" "może być wyliczony ze wzoru Threads_created/Connections. Kolor czerwony " "oznacza, że powinno się zwiększyć thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Liczba aktualnie otwartych połączeń." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9489,7 +9523,7 @@ msgstr "" "(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego " "polepszenia wydajności.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Liczba nieuśpionych wątków." @@ -9616,7 +9650,7 @@ msgstr "Zmienne i ustawienia serwera" msgid "Session value" msgstr "Wartość sesji" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Wartość globalna" @@ -9914,8 +9948,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień " -"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" +"bezpieczeństwa — [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" "page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/" "a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli " "używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników." @@ -9926,9 +9960,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/pt.po b/po/pt.po index e6f09903de..b6af4a2c5d 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-03-26 03:23+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -48,7 +48,7 @@ msgstr "Pesquisar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "Nome do Índice" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Descrição" @@ -165,7 +165,7 @@ msgstr "Tipo" msgid "Null" msgstr "Nulo" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -194,7 +194,7 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,7 +210,7 @@ msgstr "Comentários" msgid "No" msgstr "Não" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -270,7 +270,7 @@ msgstr "A base de dados %s foi copiada para %s." msgid "Rename database to" msgstr "Alterar o nome da base de dados para" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Comando" @@ -372,7 +372,7 @@ msgstr "Registos" msgid "Size" msgstr "Tamanho" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "em uso" @@ -398,7 +398,7 @@ msgstr "Última actualização" msgid "Last check" msgstr "Última Verificação" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -581,64 +581,64 @@ msgstr "Dentro de Tabela(s):" msgid "Inside column:" msgstr "Dentro da coluna:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Não foram encontradas tabelas na base de dados" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "A tabela %s foi limpa" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "A Vista %s foi eliminada" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "A tabela %s foi eliminada" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Detecção de Alterações está activa." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Detecção de Alterações está desactivada." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta vista tem número de linhas aproximado. Por favor, consulte a %" -"sdocumentação%s." +"Esta vista tem número de linhas aproximado. Por favor, consulte a " +"%sdocumentação%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Vista" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 #, fuzzy msgid "Replication" msgstr "Replicação" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Soma" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o storage engine por defeito neste MySQL server." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -646,23 +646,23 @@ msgstr "%s é o storage engine por defeito neste MySQL server." msgid "With selected:" msgstr "Com os seleccionados:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Todos" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Nenhum" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Verificar tabelas com overhead" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -670,59 +670,59 @@ msgstr "Verificar tabelas com overhead" msgid "Export" msgstr "Exportar" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Vista de impressão" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Limpa" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Elimina" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimizar tabela" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy msgid "Add prefix to table" msgstr "Sem bases de dados" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Substituir os dados da tabela pelos do arquivo" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Substituir os dados da tabela pelos do arquivo" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dicionario de dados" @@ -737,7 +737,7 @@ msgstr "Tabelas em tracking" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Criado" msgid "Updated" msgstr "Actualizado" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Estado" @@ -855,8 +855,8 @@ msgstr "O Dump foi gravado para o ficheiro %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por " "favor reveja a %sdocumentação%s para encontrar formas de contornar este " @@ -1069,154 +1069,7 @@ msgstr "Removendo os utilizadores seleccionados" msgid "Close" msgstr "Fechar" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Escolha do Servidor" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "Comando SQL" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Total" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Cancelar" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Carregando" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Processando Pedido" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Erro a Processar Pedido" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Apagando Coluna" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Adicionando Chave Primária" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Renomeando Bases de Dados" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Recarregar Base de Dados" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Copiando Bases de Dados" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Mudando Mapa de Caracteres" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "A tabela terá que ter pelo menos uma coluna" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Criar uma Tabela" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Usar Tabelas" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Pesquisando" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "Comando SQL" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "Comando SQL" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Visualizar" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "A apagar %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Esconder Caixa do query" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Mostrar Caixa do query" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Editar em linha" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1225,7 +1078,196 @@ msgstr "Editar em linha" msgid "Edit" msgstr "Edita" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Escolha do Servidor" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "Comando SQL" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Escolha do Servidor" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Processos" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Ligações" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "Comando SQL" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Estatísticas dos registos" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Cancelar" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Carregando" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Processando Pedido" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Erro a Processar Pedido" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Apagando Coluna" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Adicionando Chave Primária" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Renomeando Bases de Dados" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Recarregar Base de Dados" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Copiando Bases de Dados" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Mudando Mapa de Caracteres" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "A tabela terá que ter pelo menos uma coluna" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Criar uma Tabela" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Usar Tabelas" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Pesquisando" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "Comando SQL" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "Comando SQL" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Visualizar" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "A apagar %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Esconder Caixa do query" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Mostrar Caixa do query" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Editar em linha" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1233,78 +1275,78 @@ msgstr "Edita" msgid "Save" msgstr "Guarda" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "Comando SQL" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "Comando SQL" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Seleccione chave de referencia" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Seleccione Foreign Key" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolha campo para mostrar" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Alterar a palavra-passe" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Gerado por" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Alterar a palavra-passe" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Seg" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1312,31 +1354,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy msgid ", latest stable version:" msgstr "Versão do servidor" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Sem bases de dados" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy msgid "Done" msgstr "Dados" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1344,96 +1386,96 @@ msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binário " -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mai" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Out" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1441,176 +1483,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dez" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dom" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Seg" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ter" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Sex" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "em uso" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1838,11 +1880,11 @@ msgstr "Bemvindo ao %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%" -"2$s pode ser utilizado para criar um." +"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script" +"%2$s pode ser utilizado para criar um." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -1979,7 +2021,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabelas" @@ -2113,7 +2155,7 @@ msgid "Documentation" msgstr "Documentação" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "Comando SQL" @@ -2142,7 +2184,7 @@ msgid "Create PHP Code" msgstr "Criar código PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4812,8 +4854,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4833,7 +4875,7 @@ msgstr "Compressão" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Nenhum" @@ -5084,7 +5126,7 @@ msgid "The row has been deleted" msgstr "Registo eliminado" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Termina" @@ -5175,7 +5217,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Estado da InnoDB" @@ -5520,8 +5562,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5641,7 +5683,7 @@ msgstr "MIME-types disponíveis" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Máquina" @@ -6342,13 +6384,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variável" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -6588,13 +6630,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr " Binário " #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variáveis" @@ -6889,7 +6931,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Acrescenta um utilizador" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Tempo" @@ -7057,7 +7099,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Utilizador" @@ -7519,18 +7561,18 @@ msgstr "A tabela \"%s\" não existe!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "Qtd Campos" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Truncar os Queries mostrados" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Mostrar queries completos" @@ -7932,8 +7974,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da " "tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos " @@ -8065,7 +8107,7 @@ msgstr "O privilégios foram recarregados com sucesso." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8205,266 +8247,257 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 #, fuzzy msgid "Query cache" msgstr "Tipo de Query" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "Instrucções de inserção múltiplas" -#: server_status.php:240 +#: server_status.php:254 #, fuzzy msgid "Key cache" msgstr "Tipo de Query" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "Mostra tabelas" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Informação de Runtime" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Escolha do Servidor" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Estatísticas dos registos" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy msgid "Refresh rate" msgstr "Gerado por" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "por segundo" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "por segundo" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "em uso" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Mantendo a palavra-passe " -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "Mostra tabelas" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relações" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "por hora" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "por minuto" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "por segundo" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Tipo de Query" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 #, fuzzy msgid "Replication status" msgstr "Relações" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Tráfego" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Recebido" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Enviado" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Ligações" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Tentativas falhadas" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Abortado" -#: server_status.php:784 -msgid "Processes" -msgstr "Processos" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8472,78 +8505,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8551,7 +8584,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8559,42 +8592,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8602,33 +8635,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8637,227 +8670,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8865,99 +8898,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8965,18 +8998,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8984,7 +9017,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9108,7 +9141,7 @@ msgstr "Variáveis do servidor e configurações" msgid "Session value" msgstr "Valor de sessão" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Valor Global" diff --git a/po/pt_BR.po b/po/pt_BR.po index 72eb80d057..6e088bf8d6 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-15 13:55+0200\n" "Last-Translator: Jose Ivan Bezerra Vilarouca Filho \n" "Language-Team: brazilian_portuguese \n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "Procurar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Nome chave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Descrição" @@ -166,7 +166,7 @@ msgstr "Tipo" msgid "Null" msgstr "Nulo" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Comentários" msgid "No" msgstr "Não" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Banco de Dados %s copiado para %s" msgid "Rename database to" msgstr "Renomear Banco de Dados para" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Comando" @@ -373,7 +373,7 @@ msgstr "Registros" msgid "Size" msgstr "Tamanho" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "em uso" @@ -399,7 +399,7 @@ msgstr "Última atualização" msgid "Last check" msgstr "Última verificação" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -584,63 +584,63 @@ msgstr "Dentro da(s) tabela(s):" msgid "Inside column:" msgstr "Dentro do campo:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Nenhuma tabela encontrada no banco de dados" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s foi esvaziada" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Visão %s foi apagada" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s foi eliminada" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Rastreamento está ativo." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Rastreamento não está ativo." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %" -"sdocumentação%s." +"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a " +"%sdocumentação%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Visão" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replicação" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Soma" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o mecanismo de armazenamento padrão neste servidor MySQL." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -648,23 +648,23 @@ msgstr "%s é o mecanismo de armazenamento padrão neste servidor MySQL." msgid "With selected:" msgstr "Com marcados:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Desmarcar todos" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Verificar sobre-carga" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -672,56 +672,54 @@ msgstr "Verificar sobre-carga" msgid "Export" msgstr "Exportar" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Visualização para impressão" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Limpar" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Eliminar" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Otimizar tabela" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Adicionar prefixo à tabela" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Substituir prefixo da tabela" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Copiar tabela com o prefixo" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dicionário de dados" @@ -736,7 +734,7 @@ msgstr "Tabelas rastreadas" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -754,7 +752,7 @@ msgstr "Criado" msgid "Updated" msgstr "Atualizado" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -854,8 +852,8 @@ msgstr "Dump foi salvo no arquivo %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentation%s para burlar esses limites." @@ -968,12 +966,10 @@ msgid "You are about to DESTROY a complete database!" msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!" #: js/messages.php:32 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" msgstr "Você está prestes à DESTRUIR completamente a tabela" #: js/messages.php:33 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" msgstr "Você está prestes à TRUNCAR completamente uma tabela!" @@ -1059,164 +1055,7 @@ msgstr "Remover os usuários selecionados" msgid "Close" msgstr "Fechar" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Seleção do Servidor" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "consulta SQL" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Total" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Cancelar" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Carregando" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Processando a requisição" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Erro no processamento da requisição" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Excluindo coluna" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Adicionar chave primária" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Renomeando o Banco de Dados" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Recarregar o Banco de Dados" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Copiar Banco de Dados" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Modificando charset" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Tabela deve ter pelo menos um campo." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Criar tabela" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Usar tabelas" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Procurar" - -#: js/messages.php:105 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Hide search results" -msgstr "Ocultar critério de pesquisa" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Show search criteria" -msgid "Show search results" -msgstr "Exibir critério de pesquisa" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Visualizar" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Eliminando %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Ocultar caixa de consulta" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Mostrar caixa de consulta" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Engines" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1225,7 +1064,207 @@ msgstr "Engines" msgid "Edit" msgstr "Editar" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Seleção do Servidor" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "consulta SQL" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Seleção do Servidor" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Processos" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Conexões" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "Consultas SQL" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Estatísticas do registros" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Cancelar" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Carregando" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Processando a requisição" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Erro no processamento da requisição" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Excluindo coluna" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Adicionar chave primária" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Renomeando o Banco de Dados" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Recarregar o Banco de Dados" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Copiar Banco de Dados" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Modificando charset" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Tabela deve ter pelo menos um campo." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Criar tabela" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Usar tabelas" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Procurar" + +#: js/messages.php:118 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Hide search results" +msgstr "Ocultar critério de pesquisa" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Show search criteria" +msgid "Show search results" +msgstr "Exibir critério de pesquisa" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Visualizar" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Eliminando %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Ocultar caixa de consulta" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Mostrar caixa de consulta" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Engines" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1233,73 +1272,73 @@ msgstr "Editar" msgid "Save" msgstr "Salvar" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Ocultar" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Ocultar critério de pesquisa" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Exibir critério de pesquisa" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Seleciona chave referenciada" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Selecionar Chave Estrangeira" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Por favor, selecione uma chave primária ou uma chave única" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolha o campo para exibir" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Gerar Senha" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Gerar" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Alterar a senha" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Mais" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1307,29 +1346,29 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ". última versão estável:" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Sem bases" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Concluído" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1337,80 +1376,80 @@ msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Hoje" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Janeiro" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Fevereiro" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Março" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Abril" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Maio" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Junho" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Julho" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Agosto" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Setembro" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Outubro" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Novembro" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1418,166 +1457,166 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dez" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Segunda" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Sexta" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Sem" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Hora" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minuto" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Segundo" @@ -1815,8 +1854,8 @@ msgstr "Bem vindo ao %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "A provável razão para isso é que você não criou o arquivo de configuração. " "Você deve usar o %1$ssetup script%2$s para criar um." @@ -1961,7 +2000,7 @@ msgstr "compartilhado" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabelas" @@ -2097,7 +2136,7 @@ msgid "Documentation" msgstr "Documentação" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "consulta SQL" @@ -2126,7 +2165,7 @@ msgid "Create PHP Code" msgstr "Criar código PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Atualizar" @@ -4790,8 +4829,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as " "strings de formatação de tempo. Adicionalmente a seguinte transformação " @@ -4814,7 +4853,7 @@ msgstr "Compressão" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Nenhum" @@ -5079,7 +5118,7 @@ msgid "The row has been deleted" msgstr "Registro eliminado" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Matar" @@ -5173,7 +5212,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Status do InnoDB" @@ -5533,8 +5572,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5660,7 +5699,7 @@ msgstr "MIME-type disponíveis" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Servidor" @@ -6366,13 +6405,13 @@ msgid "Slave status" msgstr "Exibir status dos escravos" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variáveis" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -6613,12 +6652,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Log binário" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variáveis" @@ -6917,7 +6956,7 @@ msgstr "Definição da PARTIÇÃO" msgid "+ Add a new value" msgstr "Adicionar novo usuário" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Tempo" @@ -7159,7 +7198,7 @@ msgid "Protocol version" msgstr "Versão do Protocolo" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Usuário" @@ -7639,17 +7678,17 @@ msgstr "A tabela \"%s\" não existe!" msgid "Select binary log to view" msgstr "Selecionar log binário para exibir" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Arquivos" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Truncar as consultas SQL exibidas" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Mostrar consultas completas" @@ -8047,8 +8086,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela " "de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos " @@ -8181,7 +8220,7 @@ msgstr "Os privilégios foram recarregados com sucesso." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 #, fuzzy msgid "Show master status" msgstr "Exibir status dos escravos" @@ -8322,12 +8361,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Processo %s foi morto com sucesso." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8335,194 +8374,189 @@ msgstr "" "phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já " "esteja fechado." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Manipulador" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Consulta do cache" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Processos" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Dados temporários" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Inserções demoradas" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Chave do cache" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Junções" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Ordenando" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Coordenador da transação" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Nivelar (fechar) todas as tabelas" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Exibir tabelas abertas" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Exibir servidores escravos" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Exibir status dos escravos" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Nivelar cache da consulta" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Informações de Runtime" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Seleção do Servidor" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Estatísticas do registros" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Atualizar" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Segundo" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Segundo" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Minuto" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Não mudar a senha" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Exibir tabelas abertas" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relações" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "por hora" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "por minuto" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "por segundo" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Tipo de consulta" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Esse servidor MySQL está rodando por %s. Ele foi iniciado em %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 #, fuzzy msgid "Replication status" msgstr "Replicação" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Tráfego" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8530,45 +8564,41 @@ msgstr "" "Em servidores ocupados, os contadores de byte podem sobrecarregar, então as " "estatísticas como relatadas pelo servidor MySQL podem estar incorretas." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Recebido" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Enviar" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Conexões" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "máx. de conexões concorrentes" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Tentativas falharam" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Abortado" -#: server_status.php:784 -msgid "Processes" -msgstr "Processos" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Caso queira ativar o SSL para conexões com o servidor MySQL." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8578,16 +8608,16 @@ msgstr "" "excederam o valor do binlog_cache_size e usaram o arquivo temporário para " "armazenar enunciados da transação." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "O número de transações que usaram o cache do log binário temporário." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8599,11 +8629,11 @@ msgstr "" "grande, você pode aumentar o valor de tmp_table_size para fazer as tabelas " "temporárias serem baseadas na memória ou invés de baseadas no disco" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Quantos arquivos temporários o MySQL tinha criado." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8611,7 +8641,7 @@ msgstr "" "O número de tabelas temporárias na memória criadas automaticamente pelo " "servidor enquanto executava os enunciados." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8619,7 +8649,7 @@ msgstr "" "O número de linhas escritas com INSERT DELAYED para cada erro ocorrido " "(provavelmente chave duplicada)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8627,23 +8657,23 @@ msgstr "" "O número de processos manipuladores de INSERT DELAYED em uso. Cada tabela " "diferente em que se usa INSERT DELAYED começa seu próprio processo." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "O número de linhas INSERT DELAYED escritas." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "O número de enunciados FLUSH executados." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "O número de enunciados COMMIT internos." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "O número de vezes que uma linha foi deletada de uma tabela." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8653,7 +8683,7 @@ msgstr "" "ele sabe sobre uma tabela com um nome dado. Isto é chamado descoberta. " "Handler_discover indica o número de vezes que tabelas foram descobertas." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8663,7 +8693,7 @@ msgstr "" "alto, sugere que o usuário está fazendo muitas varreduras completas do " "índice; por exemplo, SELECT col1 FROM foo, supondo que col1 é um índice." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8672,7 +8702,7 @@ msgstr "" "alto, é uma boa indicação de que suas consultas e tabelas estejam " "corretamente indexadas." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8682,7 +8712,7 @@ msgstr "" "incrementado se você estiver consultando uma coluna do índice com uma " "restrição da escala ou se você estiver fazendo uma varredura do índice." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8690,7 +8720,7 @@ msgstr "" "O número de requisições para ler a linha precedente na ordem da chave. Este " "método de leitura é usado principalmente para otimizar ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8703,7 +8733,7 @@ msgstr "" "faça a varredura de tabelas inteiras ou você tem junções que não usam as " "chaves corretamente." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8715,37 +8745,37 @@ msgstr "" "sugere que suas tabelas não estão corretamente indexadas ou que suas " "consultas não estão escritas para tomar vantagem dos índices que você têm." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "O número de enunciados ROLLBACK internos." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "O número de requisições para atualizar uma linha na tabela." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "O número de requisições para inserir uma linha na tabela." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "O número de páginas que contém dados (sujos ou limpos)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "O número de páginas atualmente sujas." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "O número de páginas do buffer pool que foram requisitadas para serem " "niveladas." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "O número de páginas livres." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8755,7 +8785,7 @@ msgstr "" "que estão sendo lidas ou escritas atualmente ou aquela não pode ser nivelada " "ou removido por alguma outra razão." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8767,11 +8797,11 @@ msgstr "" "Este valor pode também ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Tamanho total do buffer pool, em páginas." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8780,7 +8810,7 @@ msgstr "" "uma consulta faz a varredura de uma parcela grande de uma tabela mas na " "ordem aleatória." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8788,11 +8818,11 @@ msgstr "" "O número de ler-adiante sequenciais InnoDB iniciado. Isto acontece quando o " "InnoDB faz uma varredura sequencial completa da tabela." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "O número de requisições de leitura lógica InnoDB que foram feitas." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8800,7 +8830,7 @@ msgstr "" "O número de leituras lógicas que o InnoDB não pode satisfer do buffer pool e " "teria que fazer uma leitura de página simples" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8814,55 +8844,55 @@ msgstr "" "primeiramente. Este contador conta instâncias dessas esperas. Se o tamanho " "do buffer pool for ajustado corretamente, este valor deve ser pequeno." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "O número de escritas feitas para o buffer pool do InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "O número de operações fsync() à fazer." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "O número atual de operações fsync() pendentes." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "O número atual de leituras pendentes." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "O número atual de escritas pendentes." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "O montante de leitura de dados à fazer, em bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "O número total de dados lidos." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "O número total de dados escritos." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "O montante de escrita de dados à fazer, em bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "O número de escritas doublewrite que foram executadas e o número de páginas " "que foram escritas para esta finalidade." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "O número de escritas doublewrite que foram executadas e o número de páginas " "que foram escritas para esta finalidade." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8870,35 +8900,35 @@ msgstr "" "O número de esperas geradas porque o buffer do log era muito pequeno e teve " "que esperar que fosse nivelada antes de continuar." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "O número de requisições de escrita de log." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "O número de escritas físicas para o arquivo de log." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "O número de escritas fsyncs feitas no arquivo de log." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "O número de arquivos de log fsyncs pendentes." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Escrita de arquivos de log pendentes." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "O número de bytes escritos para o arquivo de log." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "O número de páginas criadas." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8907,52 +8937,52 @@ msgstr "" "contados em páginas; o tamanho de página permite que sejam facilmente " "convertidos em bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "O número de páginas lidas." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "O número de páginas escritas." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "O número de linhas trancadas que estão esperando atualmente." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "O tempo médio para recuperar uma linha trancada, em milísegundo." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "O tempo total gasto para recuperar linhas trancadas, em milísegundo." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "O máximo de tempo para recuperar uma linha trancada, em milísegundo." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" "O número de vezes que uma linhas trancada teve que esperar para ser escrita." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "O número de linhas deletadas de tabelas InnoDB." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "O número de linhas inseridas em tabelas InnoDB." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "O número de linhas lidas de tabelas InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "O número de linhas atualizadas em tabelas InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8960,7 +8990,7 @@ msgstr "" "O número de blocos chave no cache chave que mudaram mas não foram nivelados " "ainda ao disco. Antes era chamado de Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8968,7 +8998,7 @@ msgstr "" "O número de blocos não usados no cache chave. Você pode usar este valor para " "determinar quanto do cache chave está no uso." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8978,11 +9008,11 @@ msgstr "" "indica o número máximo de blocos que estiveram sempre em uso em algum " "momento." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "O número de requisições para ler um bloco chave do cache." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8992,15 +9022,15 @@ msgstr "" "alto, então seu valor do key_buffer_size é provavelmente muito baixo. A taxa " "de falta de cache pode ser calculada como Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "O número de requisições para escrever um bloco chave para o cache." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "O número de escritas físicas para um bloco chave para o disco." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9011,18 +9041,18 @@ msgstr "" "a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi " "compilada ainda." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "O número de linhas esperando para serem escritas na fila de INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9030,39 +9060,39 @@ msgstr "" "O número de tabelas que devem estar abertas. Se aberta, as tabelas são " "grandes, o valor do cache de suas tabelas é provavelmente muito pequeno." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "O número de arquivos que estão abertos." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "O número de streams que estão abertos (usados principalmente para log)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "O número de tabelas que estão abertas." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "O montante de memória livre para a consulta do cache." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "O número de hits do cache." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "O número de consultas adicionadas no cache." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9075,7 +9105,7 @@ msgstr "" "recentemente\" (LRU - least recently used) para decidir qual consulta " "remover do cache." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9083,19 +9113,19 @@ msgstr "" "O número de consultas sem cache (não cacheável, ou não pode ser cacheável " "devido à configuração em query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "O número de consultas registradas no cache." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "O número total de blocos na consulta do cache." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "O status da replicação à prova de falhas (não implementado)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9103,13 +9133,13 @@ msgstr "" "O número de junções que não usaram índices. Se este valor não for 0, você " "deve cuidadosamente verificar os índices de suas tabelas." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "O número de junções que usaram uma pesquisa de escala na tabela de " "referência." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9118,7 +9148,7 @@ msgstr "" "após cada linha. (Se este não for 0, você deve cuidadosamente verificar os " "índices de suas tabelas.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9126,16 +9156,16 @@ msgstr "" "O número de junções que usaram escalas na primeira tabela. (Não é " "normalmente crítico mesmo se este for grande.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "O número junções que fez uma varredura completa da primeira tabela." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "O número de tabelas temporárias abertas atualmente pelo processo SQL escravo." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9143,11 +9173,11 @@ msgstr "" "Número total (desde o início) de vezes que o processo SQL escravo de " "replicação teve que tentar transações." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Isto é ON se este servidor é um escravo conectado à um mestre." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9155,12 +9185,12 @@ msgstr "" "O número de processos que levaram mais que slow_launch_time segundos para " "serem criadas." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "O número de consultas que levaram mais que long_query_time segundos." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9170,24 +9200,24 @@ msgstr "" "valor for alto, você deve considerar aumentar o valor da variável " "sort_buffer_size do sistema." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "O número de ordenações que foram feitas com escalas." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "O número de linhas ordenadas." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "O número de ordenações que foram feitas scaneando a tabela." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" "O número de vezes que uma tabela trancada foi recuperada imediatamente." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9199,7 +9229,7 @@ msgstr "" "performance, você precisa primeiramente otimizar suas consultas e então, ou " "dividir sua tabela ou usar replicação." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9209,11 +9239,11 @@ msgstr "" "ser calculada como Threads_created/conexões. Se este valor for vermelho você " "deve aumentar seu thread_cache_size" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "O número de conexões atualmente abertas." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9225,7 +9255,7 @@ msgstr "" "isso não da um aumento notável de performance se você tem uma boa " "implementação de processos.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "O número de processos que não estão dormindo." @@ -9349,7 +9379,7 @@ msgstr "Variáveis e configurações do servidor" msgid "Session value" msgstr "Valor da sessão" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Valor global" diff --git a/po/ro.po b/po/ro.po index f0e116b22f..3a70fdff4a 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.1\n" @@ -48,7 +48,7 @@ msgstr "Caută" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "Nume cheie" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Descriere" @@ -169,7 +169,7 @@ msgstr "Tip" msgid "Null" msgstr "Nul" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -198,7 +198,7 @@ msgstr "Trimitere la" msgid "Comments" msgstr "Comentarii" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -214,7 +214,7 @@ msgstr "Comentarii" msgid "No" msgstr "Nu" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -274,7 +274,7 @@ msgstr "Baza de date %s a fost copiata la %s" msgid "Rename database to" msgstr "Redenumire bază de date în" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Comanda" @@ -384,7 +384,7 @@ msgstr "Linie" msgid "Size" msgstr "Mărime" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "în folosință" @@ -410,7 +410,7 @@ msgstr "Ultima actualizare" msgid "Last check" msgstr "Ultima verficare" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -603,64 +603,64 @@ msgstr "În interiorul tabelei(lor):" msgid "Inside column:" msgstr "In interiorul coloanei::" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Nu s-a găsit nici un tabel în baza de date." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabelul %s a fost golit" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Vizualizarea %s a fost eliminată" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabelul %s a fost aruncat" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Monitorizarea este activată" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Monitorizarea nu este activată" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Vizualizare" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replicare" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Sumă" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -668,23 +668,23 @@ msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL." msgid "With selected:" msgstr "Cele bifate:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Marchează toate" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Demarchează toate" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Verificare depășit" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -692,59 +692,59 @@ msgstr "Verificare depășit" msgid "Export" msgstr "Exportă" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Vizualizare imprimare" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Golește" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Aruncă" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Verificare tabel" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimizare tabel" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Reparare tabel" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analizare tabel" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy msgid "Add prefix to table" msgstr "Nu sînt baze de date" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Înlocuiește datele tabelului cu fișier" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Înlocuiește datele tabelului cu fișier" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dicționar de date" @@ -760,7 +760,7 @@ msgstr "Tabelele urmărite" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -778,7 +778,7 @@ msgstr "Creat(ă)" msgid "Updated" msgstr "Actualizat(ă)" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stare" @@ -885,11 +885,11 @@ msgstr "Copia a fost salvată în fișierul %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %" -"sdocumentație%s pentru căi de ocolire a acestei limite." +"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la " +"%sdocumentație%s pentru căi de ocolire a acestei limite." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1098,175 +1098,7 @@ msgstr "Eliminarea utilizatorilor selectați" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Alegerea serverului" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "Comanda SQL" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Total" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Renunță" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Local" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Procese" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "E bine" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Redenumire bază de date în" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Redenumire bază de date în" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Copiază baza de date" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Set de caractere" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Tabelul trebuie să conțină cel puțin un cîmp." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Creare tabel" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Utilizare tabele" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Caută" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "Comanda SQL" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "Comanda SQL" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Navigare" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Șterge %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "Comanda SQL" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "Comanda SQL" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Motoare" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1275,7 +1107,217 @@ msgstr "Motoare" msgid "Edit" msgstr "Editare" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Alegerea serverului" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "Comanda SQL" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Alegerea serverului" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Procese" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Conexiuni" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "Comanda SQL" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Statisticile rîndului" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Renunță" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Local" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procese" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "E bine" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Redenumire bază de date în" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Redenumire bază de date în" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Copiază baza de date" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Set de caractere" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Tabelul trebuie să conțină cel puțin un cîmp." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Creare tabel" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Utilizare tabele" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Caută" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "Comanda SQL" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "Comanda SQL" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Navigare" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Șterge %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "Comanda SQL" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "Comanda SQL" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Motoare" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1283,77 +1325,77 @@ msgstr "Editare" msgid "Save" msgstr "Salveaza" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Ascunde" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "Comanda SQL" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "Comanda SQL" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoră" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Alegere cheie referențiată" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Alegeți cheia străină" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Vă rugăm să alegeți cheia primară sau o cheie unică" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Selectează un cîmp" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generează parolă" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generează" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Schimbare parolă" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Lun" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1363,31 +1405,31 @@ msgstr "" "procesul de actualizare. Noua versiune este %s, publicată în data de %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "Ultima versiune" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Nu sînt baze de date" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Gata" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1395,84 +1437,84 @@ msgid "Next" msgstr "Următorul" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Ianuarie" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Februarie" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Martie" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Aprilie" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mai" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Iunie" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Iulie" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Septembrie" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Octombrie" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Noiembrie" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Decembrie" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1480,178 +1522,178 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dec" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dum" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Lun" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Mar" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Vin" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sâm" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dum" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Lun" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Mar" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mie" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Joi" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Vin" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sâm" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "în folosință" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1889,8 +1931,8 @@ msgstr "Bine ați venit la %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Motivul probabil pentru aceasta este că nu ați creat un fișier de " "configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un " @@ -2036,7 +2078,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabele" @@ -2175,7 +2217,7 @@ msgid "Documentation" msgstr "Documentație" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "Comanda SQL" @@ -2205,7 +2247,7 @@ msgid "Create PHP Code" msgstr "Creează cod PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Reîncarcă" @@ -4910,12 +4952,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -4934,7 +4976,7 @@ msgstr "Compresie" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Nici unul(a)" @@ -5197,7 +5239,7 @@ msgid "The row has been deleted" msgstr "Linia a fost ștearsă" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Oprește" @@ -5290,7 +5332,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Stare InnoDB" @@ -5686,8 +5728,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5810,7 +5852,7 @@ msgstr "Tipuri MIME disponibile" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Gazda" @@ -6513,13 +6555,13 @@ msgid "Slave status" msgstr "Afișează stare sclav" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variabil" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valoare" @@ -6762,12 +6804,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Jurnal binar" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variabile" @@ -7067,7 +7109,7 @@ msgstr "Definiție PARTIȚIE" msgid "+ Add a new value" msgstr "Adaugă un server nou" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Timp" @@ -7310,7 +7352,7 @@ msgid "Protocol version" msgstr "Versiune protocol" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Utilizator" @@ -7791,17 +7833,17 @@ msgstr "Tabelul „%s” nu există!" msgid "Select binary log to view" msgstr "Selectați jurnalul binar pentru vizualizare" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Fișiere" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Truncare comenzi afișate" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Afișare comandă întreagă" @@ -8208,8 +8250,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de " "privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. " @@ -8341,7 +8383,7 @@ msgstr "Drepturile au fost reîncarcate cu succes." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 #, fuzzy msgid "Show master status" msgstr "Afișează stare sclav" @@ -8482,12 +8524,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Firul de execuție %s a fost oprit cu succes." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8495,194 +8537,189 @@ msgstr "" "phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost " "deja oprit." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Gestionar" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Cache interogări" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Fire" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Date temporare" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Inserări întîrziate" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Key cache" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Joncțiuni" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Sortare" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Coordonator tranzacție" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Afișează tabele deschise" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Afișează gazde sclavi" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Afișează stare sclav" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Reinițializare cache interogare" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Informații rulare" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Alegerea serverului" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Statisticile rîndului" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Reîncarcă" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "pe secundă" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "pe secundă" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "în folosință" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nu schimbați parola" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Afișează tabele deschise" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Legături" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "pe oră" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "pe minut" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "pe secundă" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Tip interogare" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Acest server MySQL rulează de %s. S-a lansat la %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 #, fuzzy msgid "Replication status" msgstr "Replicare" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Trafic" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8690,44 +8727,40 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Recepționat" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Trimis" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Conexiuni" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "conexiuni concurente (maxim)" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Încercări nereușite" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Întrerupt" -#: server_status.php:784 -msgid "Processes" -msgstr "Procese" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Comprimă conexiunea la serverul MySQL" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8737,16 +8770,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8758,109 +8791,109 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Cîte fișiere temporare a creat mysqld." -#: server_status.php:852 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - -#: server_status.php:853 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." - -#: server_status.php:854 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." - -#: server_status.php:855 -msgid "The number of INSERT DELAYED rows written." -msgstr "The number of INSERT DELAYED rows written." - -#: server_status.php:856 -msgid "The number of executed FLUSH statements." -msgstr "The number of executed FLUSH statements." - -#: server_status.php:857 -msgid "The number of internal COMMIT statements." -msgstr "The number of internal COMMIT statements." - -#: server_status.php:858 -msgid "The number of times a row was deleted from a table." -msgstr "The number of times a row was deleted from a table." - -#: server_status.php:859 -msgid "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." -msgstr "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." - #: server_status.php:860 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." #: server_status.php:861 msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." #: server_status.php:862 msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." #: server_status.php:863 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." +msgid "The number of INSERT DELAYED rows written." +msgstr "The number of INSERT DELAYED rows written." #: server_status.php:864 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." +msgid "The number of executed FLUSH statements." +msgstr "The number of executed FLUSH statements." #: server_status.php:865 +msgid "The number of internal COMMIT statements." +msgstr "The number of internal COMMIT statements." + +#: server_status.php:866 +msgid "The number of times a row was deleted from a table." +msgstr "The number of times a row was deleted from a table." + +#: server_status.php:867 +msgid "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." +msgstr "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." + +#: server_status.php:868 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: server_status.php:869 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: server_status.php:870 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: server_status.php:871 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + +#: server_status.php:872 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8872,36 +8905,36 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Numărul de cereri de a insera un rînd într-un tabel." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Numărul de pagini conținînd date (curate sau murdare)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Numărul de pagini actualmente murdare." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Numărul de pagini libere." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8911,7 +8944,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8923,11 +8956,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8935,7 +8968,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8943,11 +8976,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8955,7 +8988,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8969,55 +9002,55 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9025,35 +9058,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Numărul de pagini create." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9061,51 +9094,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Numărul de pagini citite." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Numărul de pagini scrise." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Numărul de rînduri citite din tabelele InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Numărul de rînduri actualizate în tabelele InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9113,7 +9146,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9121,7 +9154,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9131,11 +9164,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9145,15 +9178,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9163,17 +9196,17 @@ msgstr "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9181,38 +9214,38 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Numărul de tabele ce sînt deschise." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Numărul de nimeriri în cache." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Numărul de interogări adăugate la cache." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9224,7 +9257,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9232,19 +9265,19 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Numărul de interogări înregistrate în cache." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Numărul total de blocuri în cache-ul interogării." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9252,11 +9285,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9264,7 +9297,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9272,15 +9305,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9288,78 +9321,78 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: server_status.php:943 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." - -#: server_status.php:944 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" -"The number of queries that have taken more than long_query_time seconds." - -#: server_status.php:945 -msgid "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." -msgstr "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." - -#: server_status.php:946 -msgid "The number of sorts that were done with ranges." -msgstr "The number of sorts that were done with ranges." - -#: server_status.php:947 -msgid "The number of sorted rows." -msgstr "Numărul de rînduri sortate." - -#: server_status.php:948 -msgid "The number of sorts that were done by scanning the table." -msgstr "The number of sorts that were done by scanning the table." - -#: server_status.php:949 -msgid "The number of times that a table lock was acquired immediately." -msgstr "The number of times that a table lock was acquired immediately." - -#: server_status.php:950 -msgid "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." - #: server_status.php:951 msgid "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." msgstr "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." #: server_status.php:952 -msgid "The number of currently open connections." -msgstr "Numărul de conexiuni deschise momentan." +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"The number of queries that have taken more than long_query_time seconds." #: server_status.php:953 msgid "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." +msgstr "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." + +#: server_status.php:954 +msgid "The number of sorts that were done with ranges." +msgstr "The number of sorts that were done with ranges." + +#: server_status.php:955 +msgid "The number of sorted rows." +msgstr "Numărul de rînduri sortate." + +#: server_status.php:956 +msgid "The number of sorts that were done by scanning the table." +msgstr "The number of sorts that were done by scanning the table." + +#: server_status.php:957 +msgid "The number of times that a table lock was acquired immediately." +msgstr "The number of times that a table lock was acquired immediately." + +#: server_status.php:958 +msgid "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." + +#: server_status.php:959 +msgid "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." +msgstr "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." + +#: server_status.php:960 +msgid "The number of currently open connections." +msgstr "Numărul de conexiuni deschise momentan." + +#: server_status.php:961 +msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " "doesn't give a notable performance improvement if you have a good thread " @@ -9370,7 +9403,7 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." @@ -9496,7 +9529,7 @@ msgstr "Variabile și configurări de server" msgid "Session value" msgstr "Valoare sesiune" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Valoare globală" diff --git a/po/ru.po b/po/ru.po index 283aaf183b..9bdd2a03c7 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-16 22:26+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" @@ -11,8 +11,8 @@ msgstr "" "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: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -48,7 +48,7 @@ msgstr "Поиск" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "Имя индекса" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Описание" @@ -167,7 +167,7 @@ msgstr "Тип" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -196,7 +196,7 @@ msgstr "Связи" msgid "Comments" msgstr "Комментарии" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -212,7 +212,7 @@ msgstr "Комментарии" msgid "No" msgstr "Нет" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -272,7 +272,7 @@ msgstr "База данных %s была скопирована в %s" msgid "Rename database to" msgstr "Переименовать базу данных в" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Команда" @@ -374,7 +374,7 @@ msgstr "Строки" msgid "Size" msgstr "Размер" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "используется" @@ -400,7 +400,7 @@ msgstr "Последнее обновление" msgid "Last check" msgstr "Последняя проверка" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -587,63 +587,63 @@ msgstr "В таблице/таблицах:" msgid "Inside column:" msgstr "В поле:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Таблиц в базе данных не найдено" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Таблица %s была очищена" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Представление %s было удалено" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Таблица %s была удалена" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Слежение включено." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Слежение выключено." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Представление" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Репликация" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Всего" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -651,23 +651,23 @@ msgstr "%s - тип таблиц данного MySQL сервера устан msgid "With selected:" msgstr "С отмеченными:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Отметить все" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Снять выделение" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -675,54 +675,54 @@ msgstr "Отметить требующие оптимизации" msgid "Export" msgstr "Экспорт" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Версия для печати" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Очистить" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Удалить" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Проверить таблицу" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Оптимизировать таблицу" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Восстановить таблицу" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Анализ таблицы" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Добавить префикс таблицы" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Заменить префикс таблицы" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Копировать таблицу с префиксом" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Словарь данных" @@ -737,7 +737,7 @@ msgstr "Отслеживаемые таблицы" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Создан" msgid "Updated" msgstr "Обновлён" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Состояние" @@ -855,8 +855,8 @@ msgstr "Дамп был сохранен в файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." @@ -1016,7 +1016,6 @@ msgstr "Введите число!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#| msgid "Log file count" msgid "Total count" msgstr "Общее количество" @@ -1054,146 +1053,7 @@ msgstr "Удаление выбранных пользователей" msgid "Close" msgstr "Закрыть" -#: js/messages.php:64 server_status.php:397 -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Графический вывод трафика" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "Графический вывод соединений и процессов" - -#: js/messages.php:66 server_status.php:429 -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Графический вывод запросов" - -#: js/messages.php:68 -msgid "Static data" -msgstr "Статические данные" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Всего" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "Другое" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Отмена" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Загрузка" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Обработка запроса" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Ошибка при обработке запроса" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Удаление столбца" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Добавление первичного ключа" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Переименование базы данных" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Перезагрузка базы данных" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Копирование базы данных" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Смена кодировки" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "У таблицы должен быть, как минимум, один столбец" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Создать таблицу" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "Вставить таблицу" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Поиск" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Скрыть результаты поиска" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Отобразить результаты поиска" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Просмотр" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Удаление" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" -"Замечание: если файл содержит множество таблиц, они будут объединены в одну" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Скрыть поле запроса" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Отобразить поле запроса" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Быстрая правка" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1202,7 +1062,186 @@ msgstr "Быстрая правка" msgid "Edit" msgstr "Изменить" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "Графический вывод трафика" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "Графический вывод соединений и процессов" + +#: js/messages.php:68 server_status.php:443 +msgid "Live query chart" +msgstr "Графический вывод запросов" + +#: js/messages.php:70 +msgid "Static data" +msgstr "Статические данные" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Всего" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "Другое" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server traffic" +msgid "Server traffic (in kB)" +msgstr "Трафик сервера" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Процессы" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Соединения" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL запросы" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Статистика запросов" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Отмена" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Загрузка" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Обработка запроса" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Ошибка при обработке запроса" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Удаление столбца" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Добавление первичного ключа" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Переименование базы данных" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Перезагрузка базы данных" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Копирование базы данных" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Смена кодировки" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "У таблицы должен быть, как минимум, один столбец" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Создать таблицу" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "Вставить таблицу" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Поиск" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Скрыть результаты поиска" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Отобразить результаты поиска" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Просмотр" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Удаление" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" +"Замечание: если файл содержит множество таблиц, они будут объединены в одну" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Скрыть поле запроса" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Отобразить поле запроса" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Быстрая правка" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1210,43 +1249,43 @@ msgstr "Изменить" msgid "Save" msgstr "Сохранить" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Скрыть" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Скрыть параметры поиска" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Отобразить параметры поиска" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Игнорировать" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Выберите ссылочный ключ" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Выберите внешний ключ" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" "Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) " "индексом" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Выбор отображаемого столбца" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1254,27 +1293,27 @@ msgstr "" "Вы не сохранили изменения в раскладке. Без сохранения, они будут потеряны. " "Продолжить?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Добавить параметр для столбца" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Создать пароль" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Генерировать" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Изменить пароль" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Ещё" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1284,26 +1323,26 @@ msgstr "" "Новейшая версия %s, выпущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", последняя стабильная версия:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "актуально" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Готово" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Предыдущий" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1311,231 +1350,231 @@ msgid "Next" msgstr "Следующий" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Сегодня" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Январь" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Февраль" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Март" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Апрель" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Май" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Июнь" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Июль" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Август" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Сентябрь" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Октябрь" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Ноябрь" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Декабрь" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Дек" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Воскресенье" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Понедельник" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Вторник" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Среда" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Четверг" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Пятница" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Суббота" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Вс" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Нед." -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Час" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Минута" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Секунда" @@ -1767,8 +1806,8 @@ msgstr "Добро пожаловать в %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Возможная причина - отсутствие файла конфигурации. Для его создания вы " "можете воспользоваться %1$sсценарием установки%2$s." @@ -1909,7 +1948,7 @@ msgstr "общий" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Таблицы" @@ -2044,7 +2083,7 @@ msgid "Documentation" msgstr "Документация" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-запрос" @@ -2073,7 +2112,7 @@ msgid "Create PHP Code" msgstr "PHP-код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Обновить" @@ -4824,8 +4863,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна " "вставка текущей даты и времени. Дополнительно могут быть использованы " @@ -4847,7 +4886,7 @@ msgstr "Компрессия:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Нет" @@ -4979,7 +5018,6 @@ msgid "Language" msgstr "Язык" #: libraries/display_tbl.lib.php:397 -#| msgid "Textarea columns" msgid "Restore column order" msgstr "Восстановить порядок столбцов" @@ -4988,7 +5026,6 @@ msgid "Drag to reorder" msgstr "Изменить порядок перетаскиванием" #: libraries/display_tbl.lib.php:412 -#| msgid "Click to select" msgid "Click to sort" msgstr "Кликнуть для сортировки" @@ -5082,7 +5119,7 @@ msgid "The row has been deleted" msgstr "Запись была удалена" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Завершить" @@ -5172,7 +5209,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Буферный пул" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Состояние InnoDB" @@ -5578,8 +5615,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице " "PrimeBase XT%s." @@ -5680,7 +5717,7 @@ msgstr "Отобразить MIME типы" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Хост" @@ -6401,13 +6438,13 @@ msgid "Slave status" msgstr "Статус Slave" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Переменная" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Значение" @@ -6636,12 +6673,12 @@ msgid "Synchronize" msgstr "Синхронизировать" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Бинарный журнал" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Переменные" @@ -6923,7 +6960,7 @@ msgstr "Определение разделов (PARTITION)" msgid "+ Add a new value" msgstr "+ Добавить новое значение" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Время" @@ -7122,7 +7159,7 @@ msgid "Protocol version" msgstr "Версия протокола" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Пользователь" @@ -7572,17 +7609,17 @@ msgstr "Файл не существует" msgid "Select binary log to view" msgstr "Выберите бинарный журнал для просмотра" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Файлов" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Сокращенное отображение запросов" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Развернутое отображение запросов" @@ -7981,8 +8018,8 @@ msgstr "Удалить базы данных, имена которых совп msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Примечание: phpMyAdmin получает информацию о пользовательских привилегиях " "непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может " @@ -8115,7 +8152,7 @@ msgstr "Головной сервер успешно изменён на %s" msgid "This server is configured as master in a replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Показать состояние головного сервера" @@ -8266,12 +8303,12 @@ msgstr "" "Данный сервер не настроен в качестве подчинённого для процесса репликации. " "Хотите произвести настройку?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесс %s был успешно завершен." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8279,157 +8316,144 @@ msgstr "" "phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был " "закрыт." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Обработчик" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Кеш запросов" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Потоки" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Временные данные" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Отложенные вставки" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Кеш индекса" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Объединения" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Сортировка" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Координатор транзакций" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Закрыть все таблицы" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Список открытых таблиц" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Информация о подчиненных серверах" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Информация о состоянии сервера репликации" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Дефрагментировать кеш запросов" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Текущее состояние MySQL" -#: server_status.php:371 -#| msgid "Server Choice" +#: server_status.php:385 msgid "Server traffic" msgstr "Трафик сервера" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Статистика запросов" - -#: server_status.php:373 -#| msgid "See slave status table" +#: server_status.php:387 msgid "All status variables" msgstr "Все переменные состояния" -#: server_status.php:383 server_status.php:416 -#| msgid "Refresh" +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "Частота обновления" -#: server_status.php:384 server_status.php:417 -#| msgid "Second" +#: server_status.php:398 server_status.php:431 msgid "second" msgstr "секунда" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 -#| msgid "Second" +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 msgid "seconds" msgstr "секунды" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 -#| msgid "Minute" +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 msgid "minutes" msgstr "минуты" -#: server_status.php:446 -#| msgid "Do not change the password" +#: server_status.php:460 msgid "Containing the word:" msgstr "Содержит слово:" -#: server_status.php:451 -#| msgid "Show open tables" +#: server_status.php:465 msgid "Show only alert values" msgstr "Выводить только предупреждающие значения" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "Фильтр по категории..." -#: server_status.php:468 -#| msgid "Related Links" +#: server_status.php:482 msgid "Related links:" msgstr "Связанные ссылки:" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "в час" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "в минуту" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "в секунду" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Тип запроса" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "Кол-во" -#: server_status.php:615 +#: server_status.php:623 #, php-format msgid "Network traffic since startup: %s" msgstr "Сетевой трафик с момента запуска: %s" -#: server_status.php:623 +#: server_status.php:631 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL сервер работает %s. Время запуска: %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8437,16 +8461,16 @@ msgstr "" "Данный MySQL сервер настроен головным и подчиненным в процессе " "репликации." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Данный сервер настроен подчиненным в процессе репликации." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8454,15 +8478,15 @@ msgstr "" "Для получения подробной информации о состоянии репликации сервера, " "пожалуйста, перейдите в раздел репликации." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Состояние репликации" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Трафик" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8470,44 +8494,39 @@ msgstr "" "На загруженном сервере, побайтовые счетчики могут переполняться, таким " "образом, статистика, передаваемая MySQL-сервером, может быть некорректной." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Принято" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Отправлено" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Соединения" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "Максимально одновременных" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Неудачных попыток" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Прерваны" -#: server_status.php:784 -msgid "Processes" -msgstr "Процессы" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 -#| msgid "Could not connect to MySQL server" +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Количество неудавшихся попыток соединения к серверу MySQL." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8517,16 +8536,16 @@ msgstr "" "значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения " "были сохранены во временном файле." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Количество транзакций, использовавших кеш бинарного журнала." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Количество попыток соединения (успешных либо нет) к серверу MySQL." -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8538,11 +8557,11 @@ msgstr "" "велико, следует увеличить значение переменной tmp_table_size, чтобы " "временные таблицы располагались в памяти, а не на жестком диске." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8550,7 +8569,7 @@ msgstr "" "Количество временных таблиц в памяти, созданных сервером автоматически в " "процессе выполнения SQL-выражений." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8558,31 +8577,31 @@ msgstr "" "Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, " "например, из-за дублирования ключей." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Количество обрабатываемых запросов INSERT DELAYED." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" "Количество строк записанных в режиме отложенной вставки данных (INSERT " "DELAYED)." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Количество выполненных команд FLUSH." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Количество внутренних команд COMMIT." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Количество запросов на удаление строк из таблицы." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8592,7 +8611,7 @@ msgstr "" "определенным именем. Этот процесс называется обнаружением. Handler_discover " "- число обнаружений таблиц." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8603,7 +8622,7 @@ msgstr "" "индекса. Например, SELECT col1 FROM foo, при условии, что col1 " "проиндексирован." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8612,7 +8631,7 @@ msgstr "" "значение переменной говорит о том, что запросы и таблицы проиндексированы " "надлежащим образом." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8622,7 +8641,7 @@ msgstr "" "индексов. Значение увеличивается при запросе индексного столбца с " "ограничением по размеру или при сканировании индекса." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8630,7 +8649,7 @@ msgstr "" "Количество запросов на чтение предыдущей строки при ниспадающей сортировке " "индекса. Обычно используется при оптимизации: ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8643,7 +8662,7 @@ msgstr "" "требующих полного сканирования таблиц, наличием объединений не использующих " "индексы надлежащим образом." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8655,39 +8674,39 @@ msgstr "" "что таблицы не проиндексированы надлежащим образом или запросы не используют " "преимущества индексов." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Количество внутренних команд ROLLBACK." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Количество запросов на обновление строк в таблице." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Количество запросов на вставку строк в таблицу." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Количество страниц содержащих данные ("грязные" или "" "чистые")." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Текущее количество "грязных" страниц." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Количество страниц буферного пула, над которыми был осуществлен процесс " "очистки (FLUSH)." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Количество свободных страниц." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8697,7 +8716,7 @@ msgstr "" "страницами осуществляется процесс чтения или записи, либо они не могут быть " "очищены или удалены по какой-либо другой причине." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8709,11 +8728,11 @@ msgstr "" "Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Общий размер буферного пула (в страницах)." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8721,7 +8740,7 @@ msgstr "" "Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это " "происходит, когда запрос сканирует большую часть таблицы в случайном порядке." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8730,11 +8749,11 @@ msgstr "" "происходит, когда InnoDB выполняет полное последовательное сканирование " "таблицы." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Количество последовательных запросов на чтение, выполненных InnoDB." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8742,7 +8761,7 @@ msgstr "" "Количество последовательных запросов на чтение, которые InnoDB не смог " "выполнить из буферного пула и использовал постраничное чтение." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8756,55 +8775,55 @@ msgstr "" "ожиданий. Если размер буферного пула был установлен должным образом, " "значение будет небольшим." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Количество записей, выполненных в буферный пул InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Количество операций fsync(), выполненных на данный момент." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Текущее количество незавершенных операций fsync()." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Текущее количество незавершенных операций чтения." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Текущее количество незавершенных операций записи." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Сумма данных (в байтах), прочитанных на данный момент." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Общее количество операций чтения данных." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Общее количество операций записи данных." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Сумма данных (в байтах), записанных на данный момент." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8812,36 +8831,36 @@ msgstr "" "Количество ожиданий очистки журнального буфера, вследствие малого его " "размера." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Количество запросов на запись в журнал." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Количество физических записей в файл журнала." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Количество записей с помощью fsync(), сделанных в файл журнала." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" "Количество незавершенных попыток синхронизации с помощью операции fsync()." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Количество незавершенных запросов на запись в журнал." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Объем данных в байтах, записанных в файл журнала." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Количество созданных страниц." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8850,51 +8869,51 @@ msgstr "" "приводятся в страницах, но зная объем страницы, можно перевести эти значения " "в байты." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Количество прочитанных страниц." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Количество записанных страниц." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Текущее количество ожиданий блокировок строк." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Среднее время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Общее время, ожидания блокировок строк (в миллисекундах)." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Общее количество ожиданий блокировки строк." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Количество строк, удаленных из таблиц InnoDB." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Количество строк, добавленных в таблицы InnoDB." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Количество строк, прочитанных из таблиц InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Количество строк, обновленных в таблицах InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8902,7 +8921,7 @@ msgstr "" "Количество блоков в кеше индекса, которые были изменены, но еще не записаны " "на диск. Данный параметр также известен как Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8910,7 +8929,7 @@ msgstr "" "Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет " "определить как полно используется кеш индекса." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8919,11 +8938,11 @@ msgstr "" "Количество используемых блоков в кеше индекса. Данное значение - " "максимальное количество блоков, использованных одновременно." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Количество запросов на чтение блока из кеша индексов." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8934,15 +8953,15 @@ msgstr "" "key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан " "как: Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Количество запросов на запись блока в кеш индекса." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Количество физических операций записи блока индексов на диск." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8953,7 +8972,7 @@ msgstr "" "одного запроса. Изначальное нулевое значение, означает, что процесса " "компиляции запроса еще не было." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -8961,11 +8980,11 @@ msgstr "" "Максимальное количество соединений использованных одновременно начиная с " "запуска сервера." -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8973,21 +8992,21 @@ msgstr "" "Общее количество открывавшихся таблиц. При большом значении переменной " "рекомендуется увеличить размер кеша таблиц (table_cache)." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Количество открытых файлов." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Количество открытых потоков (применяется к файлам журналов). Потоком " "называется файл, открытый с помощью функции fopen()." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Количество открытых таблиц." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -8997,21 +9016,21 @@ msgstr "" "указывать на фрагментацию, проблема которой решается выполнением запроса " "FLUSH QUERY CACHE." -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Объем свободной памяти для кеша запросов." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" "Количество "попаданий" в кеш запросов, т.е. сколько запросов было " "удовлетворено запросами, находящимися в кеше." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Количество запросов, добавленных в кеш запросов." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9024,7 +9043,7 @@ msgstr "" "не использующиеся страницы заменяются новыми) при принятии решения об " "удаления запроса из кеша." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9032,19 +9051,19 @@ msgstr "" "Количество запросов, которые оказались некешируемыми или для которых " "кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Количество запросов, зарегистрированных в кеше." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Состояние отказоустойчивой репликации (пока не реализовано)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9052,13 +9071,13 @@ msgstr "" "Количество запросов-объединений, выполненных без использования индексов. " "Если значение переменной не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Количество запросов-объединений, выполненных с использованием поиска по " "диапазону в таблице, на которую делается ссылка." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9067,7 +9086,7 @@ msgstr "" "диапазону для выборки строк из вторичной таблицы. Если значение переменной " "не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9076,18 +9095,18 @@ msgstr "" "диапазону в первой таблице. Обычно значение этой переменной не критично, " "даже если оно велико." -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" "Количество запросов-объединений, выполненных с использованием полного поиска " "по первой таблице." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Количество временных таблиц, открытых в настоящий момент подчиненным потоком." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9095,13 +9114,13 @@ msgstr "" "Общее количество повторов транзакций подчиненным потоком репликации с " "момента запуска." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Присваивается значение ON, если данный сервер функционирует как подчиненный, " "подключенный к главному." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9109,12 +9128,12 @@ msgstr "" "Количество потоков, на создание которых потребовалось более чем " "slow_launch_time секунд." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Количество запросов, выполнявшихся более long_query_time секунд." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9123,28 +9142,28 @@ msgstr "" "Количество проходов, сделанных алгоритмом сортировки. При большом значении " "следует увеличить значение переменной sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" "Количество операций сортировки, выполненных с использованием диапазона." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Количество отсортированных строк." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" "Количество операций сортировки, выполненных с использованием полного " "сканирования таблицы." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Количество запросов на блокировку таблицы, которые были удовлетворены " "немедленно." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9156,7 +9175,7 @@ msgstr "" "производительностью, необходимо сначала оптимизировать свои запросы, а затем " "разбить свою таблицу (или таблицы) или использовать репликацию." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9166,11 +9185,11 @@ msgstr "" "вычислить по формуле Threads_created/Connections. Если это значение окрашено " "в красный цвет - вам следует увеличить thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Количество открытых текущих соединений." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9182,7 +9201,7 @@ msgstr "" "thread_cache_size (это не даст существенного выигрыша в производительности, " "при хорошей реализации потоков)." -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Количество процессов, находящихся в активном состоянии." @@ -9305,7 +9324,7 @@ msgstr "Серверные переменные и настройки" msgid "Session value" msgstr "Значение сессии" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Глобальное значение" @@ -9578,8 +9597,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"При необходимости используйте дополнительные настройки безопасности - %" -"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " +"При необходимости используйте дополнительные настройки безопасности - " +"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " "защита по IP может быть ненадежной, если ваш IP не является выделенным и " "кроме вас принадлежит тысячам пользователей того же Интернет Провайдера." @@ -9754,7 +9773,6 @@ msgid "Line" msgstr "Линия" #: tbl_chart.php:88 -#| msgid "Inline" msgid "Spline" msgstr "Сплайн" @@ -9767,7 +9785,6 @@ msgid "Stacked" msgstr "Уложенный" #: tbl_chart.php:94 -#| msgid "Report title:" msgid "Chart title" msgstr "Заголовок графика" @@ -9776,32 +9793,26 @@ msgid "X-Axis:" msgstr "Ось-X:" #: tbl_chart.php:113 -#| msgid "SQL queries" msgid "Series:" msgstr "Серии:" #: tbl_chart.php:115 -#| msgid "Textarea columns" msgid "The remaining columns" msgstr "Оставшиеся столбцы" #: tbl_chart.php:128 -#| msgid "X Axis label" msgid "X-Axis label:" msgstr "Подпись для оси X:" #: tbl_chart.php:128 -#| msgid "Value" msgid "X Values" msgstr "Значения X" #: tbl_chart.php:129 -#| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Подпись для оси Y:" #: tbl_chart.php:129 -#| msgid "Value" msgid "Y Values" msgstr "Значения Y" @@ -10298,8 +10309,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %" -"s." +"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге " +"%s." #: themes.php:41 msgid "Get more themes!" diff --git a/po/si.po b/po/si.po index 61a04717d9..aa6924b1d7 100644 --- a/po/si.po +++ b/po/si.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-04 15:35+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" +"Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -46,7 +46,7 @@ msgstr "සෙවීම" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -83,7 +83,7 @@ msgstr "යතුරු නම" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "විස්තරය" @@ -163,7 +163,7 @@ msgstr "වර්ගය" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -192,7 +192,7 @@ msgstr "Links to" msgid "Comments" msgstr "විස්තරය" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,7 +208,7 @@ msgstr "විස්තරය" msgid "No" msgstr "නැත" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -268,7 +268,7 @@ msgstr "%s දත්තගබඩාව %s වෙතට පිටපත් කර msgid "Rename database to" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "විධානය" @@ -370,7 +370,7 @@ msgstr "පේළි" msgid "Size" msgstr "ප්‍රමාණය" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "භාවිතා වෙමින් පවතී" @@ -396,7 +396,7 @@ msgstr "අවසන් යාවත් කාලීන කිරීම" msgid "Last check" msgstr "අවසන් පරීක්ෂාව" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -579,62 +579,62 @@ msgstr "වගු(ව) තුල:" msgid "Inside column:" msgstr "තීරය තුල:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "%s වගුව හිස් කරන ලදි" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "%s දසුන හලන ලදි" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "%s වගුව හලන ලදි" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "අවධානය සක්‍රීයයි." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "අවධානය අක්‍රීයයි." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය කරන්න." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "දසුන" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "අනුරූ කරණය" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "එකතුව" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -642,23 +642,23 @@ msgstr "%s is the default storage engine on this MySQL server." msgid "With selected:" msgstr "තෝරාගත්:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "කතිර කොටුගත කිරීම ඉවත් කරන්න" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -666,54 +666,54 @@ msgstr "Check tables having overhead" msgid "Export" msgstr "අපනයනය" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "හිස්" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "හලන්න" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "ප්‍රශස්තගත වගුව" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "වගුව විශ්ලේෂණය කරන්න" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "වගුවට නාම මූලයක් එක් කරන්න" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "වගු නාම මූලය ප්‍රතිස්ථාපනය කරන්න" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "නාම මූලය සහිත වගු පිටපත් කරන්න" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "දත්ත කෝෂය" @@ -728,7 +728,7 @@ msgstr "අවධානය සක්‍රීය වගු" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -746,7 +746,7 @@ msgstr "සාදන ලදි" msgid "Updated" msgstr "යාවත්කාලීන කරන ලදි" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "තත්වය" @@ -846,11 +846,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1043,151 +1043,7 @@ msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත msgid "Close" msgstr "වසන්න" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "සේවාදායකයේ තේරීම" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "විමසුම සඳහා ප්‍රස්ථාරය පෙන්වන්න" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "මුළු එකතුව" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "අවලංගු කරන්න" - -#: js/messages.php:83 -msgid "Loading" -msgstr "පූරණය කෙරෙමින්" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "ඉල්ලීම පිරිසැකසෙමින්" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "තීරුව හලමින්" - -# ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology -# Terms - ICTA -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "ප්‍රාථමික මූලය එක් කරමින්" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "දත්තගබඩාව පූරණය" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "දත්තගබඩාව පිටපත් කෙරෙමින්" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "අක්ෂර කට්ටලය වෙනස් කෙරෙමින්" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "වගුවේ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් තිබිය යුතුයි" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "වගුව සාදන්න" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "වගු භාවිතා කරන්න" - -#: js/messages.php:104 -msgid "Searching" -msgstr "සොයමින්" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "සෙවුම් ප්‍රතිඵල සඟවන්න" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "සෙවුම් ප්‍රතිඵල පෙන්වන්න" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "පිරික්සමින්" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "ඉවත් කෙරෙමින්" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "සටහන: ගොනුවේ වගු එකකට වැඩි ගණනක් ඇත්නම්, ඒවා එකකට සංයුක්ත කෙරෙනු ඇත" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "විමසුම් කවුළුව සඟවන්න" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "විමසුම් කවුළුව පෙන්වන්න" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "පේළිගත සංස්කරණය" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1196,7 +1052,193 @@ msgstr "පේළිගත සංස්කරණය" msgid "Edit" msgstr "සංස්කරණය කරන්න" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "සේවාදායකයේ තේරීම" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query chart" +msgid "Live query chart" +msgstr "විමසුම සඳහා ප්‍රස්ථාරය පෙන්වන්න" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "මුළු එකතුව" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "සේවාදායකයේ තේරීම" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "ක්‍රියාවලිය" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "සම්බන්ධතා" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL විමසුම" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "විමසුම් සංඛ්‍යාලේඛන" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "අවලංගු කරන්න" + +#: js/messages.php:96 +msgid "Loading" +msgstr "පූරණය කෙරෙමින්" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "ඉල්ලීම පිරිසැකසෙමින්" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "තීරුව හලමින්" + +# ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology +# Terms - ICTA +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "ප්‍රාථමික මූලය එක් කරමින්" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "දත්තගබඩාව පූරණය" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "දත්තගබඩාව පිටපත් කෙරෙමින්" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "අක්ෂර කට්ටලය වෙනස් කෙරෙමින්" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "වගුවේ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් තිබිය යුතුයි" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "වගුව සාදන්න" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "වගු භාවිතා කරන්න" + +#: js/messages.php:117 +msgid "Searching" +msgstr "සොයමින්" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "සෙවුම් ප්‍රතිඵල සඟවන්න" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "සෙවුම් ප්‍රතිඵල පෙන්වන්න" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "පිරික්සමින්" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "ඉවත් කෙරෙමින්" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "සටහන: ගොනුවේ වගු එකකට වැඩි ගණනක් ඇත්නම්, ඒවා එකකට සංයුක්ත කෙරෙනු ඇත" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "විමසුම් කවුළුව සඟවන්න" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "විමසුම් කවුළුව පෙන්වන්න" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "පේළිගත සංස්කරණය" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1204,45 +1246,45 @@ msgstr "සංස්කරණය කරන්න" msgid "Save" msgstr "සුරකින්න" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "සඟවන්න" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL විමසුම" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL විමසුම" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "නොසලකන්න" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "සම්බන්දිත මූලය තෝරන්න" # ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology # Terms - ICTA -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "අන්‍ය මූලය තෝරන්න" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "කරුණාකර ප්‍රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන්න" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1251,27 +1293,27 @@ msgstr "" "යන්න?" # අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "ක්ෂේත්‍රයට අභිරුචියක් එක් කරන්න " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "මුරපදය උත්පාදනය කරන්න" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "උත්පාදනය කරන්න" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "මුරපදය වෙනස් කරන්න" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "තවත්" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1281,26 +1323,26 @@ msgstr "" "අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", නවතම ස්ථායි අනුවාදය:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "යාවත්කාලීන" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "තෝරන්න" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "පෙර" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1308,231 +1350,231 @@ msgid "Next" msgstr "මීලඟ" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "අද දින" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "ජනවාරි" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "පෙබරවාරි" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "මාර්තු" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "අ‍ප්‍රේල්" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "මැයි" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "ජුනි" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "ජූලි" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "අගෝස්තු" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "සැප්තැම්බර්" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "ඔක්තෝම්බර්" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "නොවැම්බර්" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "දෙසැම්බර්" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "ජුනි" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "දෙසැම්බර්" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "ඉරිදා" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "සඳුදා" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "අඟහරු‍වදා" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "බදාදා" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "බ්‍රහස්පතින්දා" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "සිකුරාදා" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "සෙනසුරාදා" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "සඳුදා" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "අඟහ" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "බ්‍රහස්" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "සිකුරා" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "සෙනසු" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "ඉරි" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "සඳු" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "අඟ" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "බදා" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "බ්‍රහ" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "සිකු" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "සෙන" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "සති" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "පැය" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "මිනිත්තු" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "තත්පර" @@ -1757,8 +1799,8 @@ msgstr "%s වෙත ආයුබෝවන්" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Probably reason of this is that you did not create configuration file. You " "might want to use %1$ssetup script%2$s to create one." @@ -1898,7 +1940,7 @@ msgstr "හවුල්" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "වගු" @@ -2030,7 +2072,7 @@ msgid "Documentation" msgstr "ලියකියවිලි" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL විමසුම" @@ -2059,7 +2101,7 @@ msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "අලුත් කරන්න" @@ -4640,12 +4682,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -4662,7 +4704,7 @@ msgstr "හැකිළීම:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "කිසිවක් නැත" @@ -4909,7 +4951,7 @@ msgid "The row has been deleted" msgstr "පෙළ ඉවත් කරන ලදි" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Kill" @@ -4999,7 +5041,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5359,8 +5401,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5472,7 +5514,7 @@ msgstr "Available MIME types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "දායකයා" @@ -6169,13 +6211,13 @@ msgid "Slave status" msgstr "උපතත්වයන් පෙන්වන්න" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "විචල්‍යය" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "අගය" @@ -6407,12 +6449,12 @@ msgid "Synchronize" msgstr "සමමුහුර්ත කරන්න" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "ද්වීමය ලොගය" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "විචල්‍යනයන්" @@ -6707,7 +6749,7 @@ msgstr "" msgid "+ Add a new value" msgstr "+ නව භාවිතා කරන්නෙක් එක් කරන්න" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "වේලාව" @@ -6882,8 +6924,8 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" -"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %" -"sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." +"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා " +"%sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." #: libraries/user_preferences.lib.php:142 msgid "Could not save configuration" @@ -6928,7 +6970,7 @@ msgid "Protocol version" msgstr "ප්‍රෝටකෝල අනුවාදය" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "භාවිතා කරන්නා" @@ -7369,17 +7411,17 @@ msgstr "ගොනුව නොපවතියි" msgid "Select binary log to view" msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය තෝරන්න" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "ගොනු" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" @@ -7770,8 +7812,8 @@ msgstr "භාවිතා කරන්නන් හා සමාන නම් msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්‍රසාද ලබාගනුයේ MySQL හි වරප්‍රසාද වගුවෙනි. " "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " @@ -7897,7 +7939,7 @@ msgstr "Master සේවාදායකය %s වෙත සාර්ථකව msgid "This server is configured as master in a replication process." msgstr "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක master ලෙස සකසා ඇත." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Master හි තත්වය පෙන්වන්න" @@ -8038,178 +8080,174 @@ msgstr "" "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක slave ලෙස සකසා නැත. එසේ සකස් " "කිරීමට ඔබ කැමතිද?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "හසුරුවනය" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "විමසුම් කෑෂ්" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "ත්‍රෙඩයන්" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "තාවකාලික දත්ත" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "ප්‍රමාදිත ඇතුළු කිරීම්" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "යතුරු කෑෂ් කිරීම" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "ඈඳුම්" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "තේරීම" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "විවෘත වගු පෙන්වන්න" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "උපදායකයන් පෙන්වන්න" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "උපතත්වයන් පෙන්වන්න" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "ධාවන කාල තොරතුරු" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "සේවාදායකයේ තේරීම" -#: server_status.php:372 -msgid "Query statistics" -msgstr "විමසුම් සංඛ්‍යාලේඛන" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "slave තත්ව වගුව බලන්න" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "අලුත් කරන්න" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "තත්පර" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "තත්පර" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "මිනිත්තු" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "මුරපදය වෙනස් නොකරන්න" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "විවෘත වගු පෙන්වන්න" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "පැයකට" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "මිනිත්තුවකට" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "තප්පරයකට" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "විමසුම් වර්ගය" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "මෙම MySQL සේවාදායකය %s තිස්සේ ක්‍රියාත්මකයි. මෙය ඇරඹුයේ %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8217,15 +8255,15 @@ msgstr "" "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී master හා slave " "ලෙස ක්‍රියාකරයි." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී master ලෙස ක්‍රියාකරයි." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී slave ලෙස ක්‍රියාකරයි." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8233,15 +8271,15 @@ msgstr "" "සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ " "අංශය වෙත යන්න" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "අනුරූ කරණයේ තත්වය" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "තදබදය" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8249,45 +8287,41 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "ලබන ලද" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "යවන ලද" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "සම්බන්ධතා" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "උපරිම සමගාමී සම්බන්ධතා" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "අසාර්ථක උත්සාහයන්" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "අත්හැර දමන ලදි" -#: server_status.php:784 -msgid "Processes" -msgstr "ක්‍රියාවලිය" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "හැඳුනුම් අංකය" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "The number of fsync() writes done to the log file." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8297,16 +8331,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8318,109 +8352,109 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:852 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - -#: server_status.php:853 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." - -#: server_status.php:854 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." - -#: server_status.php:855 -msgid "The number of INSERT DELAYED rows written." -msgstr "The number of INSERT DELAYED rows written." - -#: server_status.php:856 -msgid "The number of executed FLUSH statements." -msgstr "The number of executed FLUSH statements." - -#: server_status.php:857 -msgid "The number of internal COMMIT statements." -msgstr "The number of internal COMMIT statements." - -#: server_status.php:858 -msgid "The number of times a row was deleted from a table." -msgstr "The number of times a row was deleted from a table." - -#: server_status.php:859 -msgid "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." -msgstr "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." - #: server_status.php:860 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." #: server_status.php:861 msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." #: server_status.php:862 msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." #: server_status.php:863 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." +msgid "The number of INSERT DELAYED rows written." +msgstr "The number of INSERT DELAYED rows written." #: server_status.php:864 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." +msgid "The number of executed FLUSH statements." +msgstr "The number of executed FLUSH statements." #: server_status.php:865 +msgid "The number of internal COMMIT statements." +msgstr "The number of internal COMMIT statements." + +#: server_status.php:866 +msgid "The number of times a row was deleted from a table." +msgstr "The number of times a row was deleted from a table." + +#: server_status.php:867 +msgid "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." +msgstr "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." + +#: server_status.php:868 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: server_status.php:869 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: server_status.php:870 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: server_status.php:871 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + +#: server_status.php:872 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8432,36 +8466,36 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "නිදහස් පිටු ගණන." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8471,7 +8505,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8483,11 +8517,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8495,7 +8529,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8503,11 +8537,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8515,7 +8549,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8529,55 +8563,55 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8585,35 +8619,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsync() writes done to the log file." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8621,51 +8655,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "කියවන ලද පිටු ගණන." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "ලියන ලද පිටු ගණන." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8673,7 +8707,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8681,7 +8715,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8691,11 +8725,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8705,15 +8739,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8723,17 +8757,17 @@ msgstr "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8741,38 +8775,38 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8784,7 +8818,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8792,19 +8826,19 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8812,11 +8846,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8824,7 +8858,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8832,15 +8866,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8848,78 +8882,78 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: server_status.php:943 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." - -#: server_status.php:944 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" -"The number of queries that have taken more than long_query_time seconds." - -#: server_status.php:945 -msgid "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." -msgstr "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." - -#: server_status.php:946 -msgid "The number of sorts that were done with ranges." -msgstr "The number of sorts that were done with ranges." - -#: server_status.php:947 -msgid "The number of sorted rows." -msgstr "The number of sorted rows." - -#: server_status.php:948 -msgid "The number of sorts that were done by scanning the table." -msgstr "The number of sorts that were done by scanning the table." - -#: server_status.php:949 -msgid "The number of times that a table lock was acquired immediately." -msgstr "The number of times that a table lock was acquired immediately." - -#: server_status.php:950 -msgid "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." - #: server_status.php:951 msgid "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." msgstr "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." #: server_status.php:952 -msgid "The number of currently open connections." -msgstr "The number of currently open connections." +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"The number of queries that have taken more than long_query_time seconds." #: server_status.php:953 msgid "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." +msgstr "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." + +#: server_status.php:954 +msgid "The number of sorts that were done with ranges." +msgstr "The number of sorts that were done with ranges." + +#: server_status.php:955 +msgid "The number of sorted rows." +msgstr "The number of sorted rows." + +#: server_status.php:956 +msgid "The number of sorts that were done by scanning the table." +msgstr "The number of sorts that were done by scanning the table." + +#: server_status.php:957 +msgid "The number of times that a table lock was acquired immediately." +msgstr "The number of times that a table lock was acquired immediately." + +#: server_status.php:958 +msgid "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." + +#: server_status.php:959 +msgid "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." +msgstr "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." + +#: server_status.php:960 +msgid "The number of currently open connections." +msgstr "The number of currently open connections." + +#: server_status.php:961 +msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " "doesn't give a notable performance improvement if you have a good thread " @@ -8930,7 +8964,7 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." @@ -9053,7 +9087,7 @@ msgstr "සේවාදායකයේ විචල්‍යයන් සහ ස msgid "Session value" msgstr "සැසි අගය" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "ගෝලීය අගය" diff --git a/po/sk.po b/po/sk.po index b1d275de71..205ac477c3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-03 14:53+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -47,7 +47,7 @@ msgstr "Hľadať" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Kľúčový názov" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Popis" @@ -166,7 +166,7 @@ msgstr "Typ" msgid "Null" msgstr "Nulový" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Linkovať na" msgid "Comments" msgstr "Komentáre" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Komentáre" msgid "No" msgstr "Nie" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Databáza %s bola skopírovaná na %s" msgid "Rename database to" msgstr "Premenovať databázu na" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Príkaz" @@ -373,7 +373,7 @@ msgstr "Riadkov" msgid "Size" msgstr "Veľkosť" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "práve sa používa" @@ -399,7 +399,7 @@ msgstr "Posledná zmena" msgid "Last check" msgstr "Posledná kontrola" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -586,62 +586,62 @@ msgstr "V tabuľke(ách):" msgid "Inside column:" msgstr "V tabuľke:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "V tejto databáze neboli nájdené žiadne tabuľky" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabuľka %s bola vyprázdená" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Pohľad %s bol odstránený" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabuľka %s bola odstránená" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Sledovanie je aktívne." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Sledovanie nie je aktívne." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Pohľad" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikácia" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Celkom" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Na tomto MySQL serveri je prednastaveným úložným systémom %s." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -649,23 +649,23 @@ msgstr "Na tomto MySQL serveri je prednastaveným úložným systémom %s." msgid "With selected:" msgstr "Výber:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Označiť všetko" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Odznačiť všetko" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -673,54 +673,54 @@ msgstr "Zvoliť neoptimálne" msgid "Export" msgstr "Exportovať" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Náhľad k tlači" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Vyprázdniť" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Odstrániť" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Skontrolovať tabuľku" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimalizovať tabuľku" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Opraviť tabuľku" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analyzovať tabuľku" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Pridať predponu k tabuľke" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Nahradiť predponu tabuľky" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Skopírovať tabuľku s predponou" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dátový slovník" @@ -735,7 +735,7 @@ msgstr "Sledované tabuľky" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -753,7 +753,7 @@ msgstr "Vytvorené" msgid "Updated" msgstr "Aktualizované" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stav" @@ -853,8 +853,8 @@ msgstr "Výpis bol uložený do súboru %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si " "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." @@ -1054,150 +1054,7 @@ msgstr "Odstránenie vybraných používateľov" msgid "Close" msgstr "Zavrieť" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Voľba serveru" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Zobraziť graf dopytov" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Celkom" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Zrušiť" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Načítanie" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Prebieha spracovanie požiadavka" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Chyba pri spracovanie požiadavku" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Odstraňujem stĺpce" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Pridavam primarny kľúč" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Premenovávam databázy" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Znovu načítať databázu" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Kopírujem databázu" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Mením znakovú sadu" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Tabuľka musí obsahovať aspoň jeden stĺpec" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Vytvoriť tabuľku" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Použiť tabuľky" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Vyhľadávam" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Skryť výsledky vyhľadávania" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Zobraziť výsledky vyhľadávania" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Prechádzať" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Odstraňujem" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" -"Poznámka: Ak súbor obsahuje viac tabuliek, tieto budú spojené do jednej" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Skryť vyhľadávacie pole" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Zobrazit vyhľadávacie pole" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Tu upraviť" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1206,7 +1063,192 @@ msgstr "Tu upraviť" msgid "Edit" msgstr "Upraviť" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Voľba serveru" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query chart" +msgid "Live query chart" +msgstr "Zobraziť graf dopytov" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Celkom" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Voľba serveru" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Procesy" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Spojenia" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL dopyty" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Štatistika dopytov" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Zrušiť" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Načítanie" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Prebieha spracovanie požiadavka" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Chyba pri spracovanie požiadavku" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Odstraňujem stĺpce" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Pridavam primarny kľúč" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Premenovávam databázy" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Znovu načítať databázu" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Kopírujem databázu" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Mením znakovú sadu" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Tabuľka musí obsahovať aspoň jeden stĺpec" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Vytvoriť tabuľku" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Použiť tabuľky" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Vyhľadávam" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Skryť výsledky vyhľadávania" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Zobraziť výsledky vyhľadávania" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Prechádzať" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Odstraňujem" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" +"Poznámka: Ak súbor obsahuje viac tabuliek, tieto budú spojené do jednej" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Skryť vyhľadávacie pole" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Zobrazit vyhľadávacie pole" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Tu upraviť" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1214,41 +1256,41 @@ msgstr "Upraviť" msgid "Save" msgstr "Uložiť" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Skryť" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Skryť parametre vyhľadávania" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Zobraziť parametre vyhľadávania" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorovať" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Zvoliť odkazovaný kľúč" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Zvoliť cudzí kľúč" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Zoľte, prosím, primárny alebo unikátny kľúč" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Zvoľte, ktoré polia zobraziť" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1256,27 +1298,27 @@ msgstr "" "Neuložili ste zmeny v schéme. Ak ich neuložíte, tieto zmeny budú stratené. " "Chcete pokračovať?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Pridať voľbu pre stĺpec " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Vytvoriť heslo" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Vytvoriť" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Zmeniť heslo" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Viac" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1286,26 +1328,26 @@ msgstr "" "Najnovšia verzia je %s a bola vydaná %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", posledná stabilná verzia:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "aktuálne" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Hotovo" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Predchádzajúci" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1313,231 +1355,231 @@ msgid "Next" msgstr "Ďalší" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Dnes" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Január" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Február" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Marec" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Apríl" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Máj" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Jún" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Júl" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "August" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "September" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Október" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "November" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dec" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Nedeľa" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Pondelok" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Utorok" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Streda" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Štvrtok" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Piatok" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Ne" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Št" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Pi" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "týž" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minúty" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Sekundy" @@ -1776,8 +1818,8 @@ msgstr "Vitajte v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho " "vytvorenie môžete použiť %1$skonfiguračný skript%2$s." @@ -1919,7 +1961,7 @@ msgstr "zdieľaný" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabuľky" @@ -2051,7 +2093,7 @@ msgid "Documentation" msgstr "Dokumentácia" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL dopyt" @@ -2080,7 +2122,7 @@ msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Obnoviť" @@ -4771,8 +4813,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť " "reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto " @@ -4794,7 +4836,7 @@ msgstr "Kompresia:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Žiadny" @@ -5028,7 +5070,7 @@ msgid "The row has been deleted" msgstr "Riadok bol zmazaný" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Zabiť" @@ -5118,7 +5160,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Vyrovnávacia Pamäť" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Stav InnoDB" @@ -5475,8 +5517,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5576,7 +5618,7 @@ msgstr "Zobraziť MIME typy" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Hostiteľ" @@ -6263,13 +6305,13 @@ msgid "Slave status" msgstr "Zobraziť stav podriadených hostov" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Premenná" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Hodnota" @@ -6496,12 +6538,12 @@ msgid "Synchronize" msgstr "Synchronizovať" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binárny log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Premenné" @@ -6659,8 +6701,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú " -"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %" -"sdocumentation%s." +"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v " +"%sdocumentation%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -6785,7 +6827,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Pridať nového používateľa" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Čas" @@ -6968,7 +7010,7 @@ msgid "Protocol version" msgstr "Verzia protokolu" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Používateľ" @@ -7366,8 +7408,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím %" -"sNastavovacieho skriptu%s." +"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím " +"%sNastavovacieho skriptu%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -7407,17 +7449,17 @@ msgstr "Súbor neexistuje" msgid "Select binary log to view" msgstr "Vyberte binárny log na zobrazenie" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Súbory" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Zobraziť skrátene dopyty" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Zobraziť kompletné dopyty" @@ -7811,13 +7853,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. " "Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli " -"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %" -"sznovunačítanie práv%s predtým ako budete pokračovať." +"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " +"%sznovunačítanie práv%s predtým ako budete pokračovať." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -7943,7 +7985,7 @@ msgstr "Master server zmenený úspešne na %s" msgid "This server is configured as master in a replication process." msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Zobraziť stav master replikácie" @@ -8084,175 +8126,171 @@ msgstr "" "Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bol úspešne zabité." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "Neporadilo za zabiť vlákno %s. Jeho beh bol pravdepodobne už ukončený." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Manipulačná Rutina" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Vyrovnávacia pamäť príkazov" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Počet vlákien" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Dočasné dáta" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Odložené vloženia" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Vyrovnávacia pamäť kľúčov" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Zjednotenia" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Zoraďovanie" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Koordinátor transakcií" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Vyprázdniť (uzavrieť) všetky tabuľky" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Zobraziť otvorené tabuľky" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Zobraziť podriadené hosty" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Zobraziť stav podriadených hostov" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Stav serveru" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Voľba serveru" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Štatistika dopytov" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Obnoviť" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Sekundy" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Sekundy" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Minúty" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nezmeniť heslo" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Zobraziť otvorené tabuľky" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "Súvisiace odkazy" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "za hodinu" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "za minútu" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "za sekundu" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Typ dopytu" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Tento server beží %s. Bol spustený %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8260,18 +8298,18 @@ msgstr "" "Tento server je nakonfigurovaný ako master a slave v " "replikačnom procese." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Tento MYSQL server je nakonfigurovaný ako master v replikačnom " "procese." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Tento MYSQL server pracuje ako slave v replikačnom procese." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8279,15 +8317,15 @@ msgstr "" "Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Stav replikácie" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Vyťaženie" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8295,45 +8333,41 @@ msgstr "" "Na vyťaženom serveri môže dôjsť k pretečeniu počítadiel, takže štatistiky " "servera môžu byť nepresné." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Prijaté" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Odoslané" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Spojenia" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "max. súčasných pripojení" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Nepodarených pokusov" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Prerušené" -#: server_status.php:784 -msgid "Processes" -msgstr "Procesy" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nepodarilo sa pripojiť k MySQL serveru" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8343,16 +8377,16 @@ msgstr "" "ale zároveň prekročili hodnotu binlog_cache_size a museli tak použiť dočasný " "súbor na uloženie príkazov transakcie." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcií, ktoré využili vyrovnávaciu pamäť binárneho logu." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8364,11 +8398,11 @@ msgstr "" "hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na " "disk." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Počet dočasných súborov vytvorených servrom mysqld." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8376,7 +8410,7 @@ msgstr "" "Počet dočasných, v pamäti uložených tabuliek, vytvorených servrom pri " "vykonávaní príkazov." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8384,7 +8418,7 @@ msgstr "" "Počet riadkov pridaných príkazom INSERT DELAYED, pri ktorých sa vyskytla " "chyba (pravdepodobne opakujúci sa kľúč)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8392,23 +8426,23 @@ msgstr "" "Počet vlákien používaných príkazmi INSERT DELAYED. Každá samostatná tabuľka, " "na ktorú je použitý príkaz INSERT DELAYED, ma svoje vlastné vlákno." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Počet riadkov vložených príkazom INSERT DELAYED." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Počet vykonaných príkazov FLUSH." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Počet interných príkazov COMMIT." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Koľkokrát bol z tabuľky odstránený riadok." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8418,7 +8452,7 @@ msgstr "" "tabuľky s daným menom. Tento proces sa nazýva objavovanie. Handler_discover " "zobrazuje počet doposiaľ objavených tabuliek." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8428,7 +8462,7 @@ msgstr "" "znamená to že server vykonáva príliš veľa kompletných prechádzaní indexov; " "napríklad, SELECT col1 FROM foo, za predpokladu že col1 je indexovaný." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8436,7 +8470,7 @@ msgstr "" "Počet požiadavkov na načítanie riadku podľa kľúča. Ak je táto hodnota " "vysoká, je to dobrým znamením že sú príkazy a tabuľky správne indexované." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8446,7 +8480,7 @@ msgstr "" "Táto hodnota sa zvyšuje ak sa načítava indexovaný stĺpec v danom rozsahu " "alebo ak sa vykonáva prehľadávanie indexu." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8455,7 +8489,7 @@ msgstr "" "čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... " "DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8468,7 +8502,7 @@ msgstr "" "kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne " "nevyužívajú kľúče." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8480,35 +8514,35 @@ msgstr "" "tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú " "dostupné indexy." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Počet interných príkazov ROLLBACK." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Počet požiadavkov na zmenu záznamu (riadku) v tabuľke." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Počet požiadavkov na vloženie nového záznamu (riadku) do tabuľky." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránok obsahujúcich dáta (nečistých aj čistých)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Počet nečistých stránok." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránok, na ktoré je požiadavka na vyprázdnenie." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Počet voľných stránok." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8518,7 +8552,7 @@ msgstr "" "momentálne číta alebo zapisuje, prípadne nemôžu byť vyprázdnené ani " "odstránené z nejakého iného dôvodu." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8530,11 +8564,11 @@ msgstr "" "hodnota sa tiež môže vypočítať ako Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8542,7 +8576,7 @@ msgstr "" "Počet \"náhodných\" predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "príkazoch, ktoré prehľadávajú veľkú časť tabuľky, ale v náhodnom poradí." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8550,11 +8584,11 @@ msgstr "" "Počet sekvenčných predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "vykonávaní sekvenčného prehľadávania celej tabuľky." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Počet požiadavkov na logické načítavanie." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8562,7 +8596,7 @@ msgstr "" "Počet logických načítaní, ktoré sa nemohli vykonať z vyrovnávacej pamäte a " "namiesto toho bolo vykonané načítanie celej jednej stránky." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8576,88 +8610,88 @@ msgstr "" "počet týchto čakaní a ak bola správne nastavená veľkosť vyrovnávacej pamäte, " "mala by byť nízka." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Počet vykonaných fsync() operácií." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Aktuálny počet prebiehajúcich fsync() operácií." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Počet aktuálne prebiehajúcich načítavaní." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Počet aktuálne prebiehajúcich zápisov." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Množstvo už načítaných dát, v bajtoch." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Celkový počet načítaní dát." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Celkový počet zápisov dát." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Množstvo už zapísaných dát, v bajtoch." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Počet čakaní na vyprázdnenie vyrovnávacej pamäte logu z dôvodu jej zaplnenia." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Počet požiadaviek na zápis do logovacieho súboru." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Počet fyzických zápisov do logovacieho súboru." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Počet fsync() zápisov vykonaných do logovacieho súboru." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Počet prebiehajúcich zápisov do logovacieho súboru." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Množstvo bajtov zapísaných do logovacieho súboru." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Počet vytvorených stránok." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8666,51 +8700,51 @@ msgstr "" "hodnôt sa udáva v stránkach; pomocou veľkosti stránky je možné ich premeniť " "na bajty." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Počet načítaných stránok." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Počet zapísaných stránok." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Počet zámkov na riadky, na ktoré sa čaká." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Priemerný čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximálny čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Koľkokrát sa muselo čakať na zámok na riadok." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet záznamov (riadkov) odstránených z InnoDB tabuliek." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet záznamov (riadkov) vložených do InnoDB tabuliek." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Počet načítaných záznamov (riadkov) z InnoDB tabuliek." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Počet upravených záznamov (riadkov) v InnoDB tabuľkách." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8719,7 +8753,7 @@ msgstr "" "neboli zapísané na disk. Predtým sa táto hodnota nazývala " "Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8727,7 +8761,7 @@ msgstr "" "Počet nevyužitých blokov vo vyrovnávacej pamäti kľúčov. Z tejto hodnoty " "môžete zistiť koľko vyrovnávacej pamäte sa práve používa." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8736,11 +8770,11 @@ msgstr "" "Počet využitých blokov vo vyrovnávacej pamäti kľúčov. Táto hodnota určuje " "najväčšie množstvo blokov, ktoré kedy naraz použité." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Počet požiadavkov na načítanie kľúčového bloku z vyrovnávacej pamäti." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8751,15 +8785,15 @@ msgstr "" "je príliš malá. Úspešnosť vyrovnávacej pamäte si môžte vypočítať zo vzťahu " "Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Počet požiadavkov na zápis kľúčového bloku do vyrovnávacej pamäti." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Počet fyzických zápisov kľúčového bloku na disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8770,17 +8804,17 @@ msgstr "" "požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované " "žiadne príkazy." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet riadkov čakajúcich na zápis cez INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8788,38 +8822,38 @@ msgstr "" "Počet doposiaľ otvorených tabuliek. Ak je táto hodnota príliš vysoká, " "pravdepodobne je vyrovnávacia pamäť pre tabuľky príliš malá." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Počet otvorených súborov." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otvorených streamov (väčšinou využívané na logovanie)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Počet práve otvorených tabuliek." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Veľkosť voľnej pamäti pre vyrovnávaciu pamäť príkazov." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Počet zásahov vyrovnávacej pamäti." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Počet príkazov pridaných do vyrovnávacej pamäti." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8831,7 +8865,7 @@ msgstr "" "veľkosti vyrovnávacej pamäte príkazov. Vyrovnávacia pamäť príkazov používa " "stratégiu (LRU), odstránenie najdlhšie nepoužitých príkazov ako prvých." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8839,19 +8873,19 @@ msgstr "" "Počet príkazov neumiestnených do vyrovnávacej pamäti (nie sú cachovateľné " "alebo nevyhovujú nastaveniu query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Celkové množstvo blokov vo vyrovnávacej pamäti príkazov." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikácie (zatiaľ neimplementované)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8859,12 +8893,12 @@ msgstr "" "Počet spojení, ktoré nevyužívajú indexy. Ak sa táto hodnota nerovná 0, mali " "by ste starostlivo skontrolovať indexy vašich tabuliek." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, ktoré na referenčnej tabuľke využili intervalové vyhľadávanie." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8873,7 +8907,7 @@ msgstr "" "(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy " "vašich tabuliek.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8881,15 +8915,15 @@ msgstr "" "Počet spojení, ktoré na prvej tabuľke využili intervalové vyhľadávanie (táto " "hodnota nie je kritická ani v prípade, že je vysoká.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, ktoré vykonali kompletné prehľadanie prvej tabuľky." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Počet dočasných tabuliek, otvorených podriadeným SQL vláknom." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8897,13 +8931,13 @@ msgstr "" "Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o " "znovuobnovenie transakcie." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Táto položka obsahuje hodnotu ON ak je tento server podriadeným a je " "pripojený k prislúchajúcemu nadriadenému servru." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8911,14 +8945,14 @@ msgstr "" "Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota " "slow_launch_time." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Počet príkazov, ktorých vykonanie zabralo viac ako je hodnota " "long_query_time." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8928,23 +8962,23 @@ msgstr "" "je táto hodnota prílis veľká, mali by ste pouvažovať nad zvýšením hodnoty " "systémového nastavania sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Počet rozsahom obmedzených zoraďovaní." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Počet zoradených riadkov." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Počet zoradení uskutočnených prehľadávaním tabuľky." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet zámkov tabuliek, ktoré boli získané okamžite." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8956,7 +8990,7 @@ msgstr "" "najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo " "použiť replikáciu." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8966,11 +9000,11 @@ msgstr "" "dá vypočítať zo vzťahu Threads_created/Connections. Ak je táto hodnota v " "červenom, mali by ste zvýšiť hodnotu thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Počet momentálne otvorených spojení." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8981,7 +9015,7 @@ msgstr "" "Threads_created vysoká, mohli by ste zvýšiť hodnotu thread_cache_size (to " "však nespôsobí žiadnu citeľnú zmenu ak máte vlákna dobre implementované.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Počet aktívnych (nespiacich) vlákien." @@ -9102,7 +9136,7 @@ msgstr "Premenné a nastavenia serveru" msgid "Session value" msgstr "Hodnota sedenia" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Globálna hodnota" @@ -10244,8 +10278,8 @@ msgstr "Premenovať pohľad na" #~ msgid "Imported file compression will be automatically detected from: %s" #~ msgstr "" -#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %" -#~ "s" +#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: " +#~ "%s" #~ msgid "Add into comments" #~ msgstr "Pridať do komentárov" diff --git a/po/sl.po b/po/sl.po index f1139fb485..93348dcc28 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-16 22:33+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" @@ -11,8 +11,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -47,7 +47,7 @@ msgstr "Iskanje" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Ime ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Opis" @@ -166,7 +166,7 @@ msgstr "Vrsta" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Povezave z" msgid "Comments" msgstr "Pripombe" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Pripombe" msgid "No" msgstr "Ne" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Zbirka podatkov %s je kopirana v %s" msgid "Rename database to" msgstr "Preimenuj zbirko podatkov v" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Ukaz" @@ -373,7 +373,7 @@ msgstr "vrstic" msgid "Size" msgstr "Velikost" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "v uporabi" @@ -399,7 +399,7 @@ msgstr "Zadnjič posodobljeno" msgid "Last check" msgstr "Zadnjič pregledano" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -588,61 +588,61 @@ msgstr "V tabelah:" msgid "Inside column:" msgstr "V stolpcu:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "V zbirki podatkov ni mogoče najti tabel" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je izpraznjena" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je zavržen" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je zavržena" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Sledenje je aktivno." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Sledenje ni aktivno." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Pogled" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Podvojevanje" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Vsota" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -650,23 +650,23 @@ msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL." msgid "With selected:" msgstr "Z označenim:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Označi vse" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Odznači vse" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Preveri prekoračene" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -674,54 +674,54 @@ msgstr "Preveri prekoračene" msgid "Export" msgstr "Izvozi" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Pogled za tiskanje" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Izprazni" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Zavrzi" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Preveri tabelo" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimiraj tabelo" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Popravi tabelo" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analiziraj tabelo" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Dodaj predpono tabeli" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Zamenjaj predpono tabele" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Kopiraj tabelo s predpono" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Slovar podatkov" @@ -736,7 +736,7 @@ msgstr "Sledene tabele" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -754,7 +754,7 @@ msgstr "Ustvarjeno" msgid "Updated" msgstr "Posodobljeno" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stanje" @@ -854,8 +854,8 @@ msgstr "Dump je shranjen v datoteko %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si " "%sdokumentacijo%s za načine, kako obiti to omejitev." @@ -1014,7 +1014,6 @@ msgstr "To ni število!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#| msgid "Log file count" msgid "Total count" msgstr "Skupno število" @@ -1052,145 +1051,7 @@ msgstr "Odstranjevanje izbranih uporabnikov" msgid "Close" msgstr "Zapri" -#: js/messages.php:64 server_status.php:397 -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Grafikon prometa v živo" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "Grafikon povezav/procesov v živo" - -#: js/messages.php:66 server_status.php:429 -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Grafikon poizvedb v živo" - -#: js/messages.php:68 -msgid "Static data" -msgstr "Statični podatki" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Skupaj" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "Drugo" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Prekliči" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Nalaganje" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Obdelovanje zahteve" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Napaka v obdelovanju zahteve" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Brisanje stolpca" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Dodajanje primarnega ključa" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "V redu" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Preimenovanje zbirk podatkov" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Ponovno nalaganje zbirke podatkov" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Kopiranje zbirke podatkov" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Spreminjanje nabora znakov" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Tabele morajo imeti vsaj en stolpec" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Ustvari tabelo" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "Vstavi tabelo" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Iskanje" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Skrij rezultate iskanja" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Prikaži rezultate iskanja" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Brskanje" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Brisanje" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "Opomba: Če datoteka vsebuje več tabel, bodo združene v eno" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Skrij polje poizvedbe" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Prikaži polje poizvedbe" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Urejanje v vrstici" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1199,7 +1060,185 @@ msgstr "Urejanje v vrstici" msgid "Edit" msgstr "Uredi" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "Grafikon prometa v živo" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "Grafikon povezav/procesov v živo" + +#: js/messages.php:68 server_status.php:443 +msgid "Live query chart" +msgstr "Grafikon poizvedb v živo" + +#: js/messages.php:70 +msgid "Static data" +msgstr "Statični podatki" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Skupaj" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "Drugo" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server traffic" +msgid "Server traffic (in kB)" +msgstr "Promet strežnika" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Procesi" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Povezave" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "Poizvedbe SQL" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Statistika poizvedb" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Prekliči" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Nalaganje" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Obdelovanje zahteve" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Napaka v obdelovanju zahteve" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Brisanje stolpca" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Dodajanje primarnega ključa" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "V redu" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Preimenovanje zbirk podatkov" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Ponovno nalaganje zbirke podatkov" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Kopiranje zbirke podatkov" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Spreminjanje nabora znakov" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Tabele morajo imeti vsaj en stolpec" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Ustvari tabelo" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "Vstavi tabelo" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Iskanje" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Skrij rezultate iskanja" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Prikaži rezultate iskanja" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Brskanje" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Brisanje" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "Opomba: Če datoteka vsebuje več tabel, bodo združene v eno" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Skrij polje poizvedbe" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Prikaži polje poizvedbe" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Urejanje v vrstici" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1207,41 +1246,41 @@ msgstr "Uredi" msgid "Save" msgstr "Shrani" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Skrij" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Skrij iskalne pogoje" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Prikaži iskalne pogoje" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Prezri" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Izberite referenčni ključ" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Izberite tuji ključ" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Prosimo, izberite primarni ključ ali unikatni ključ" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Izberite stolpec za prikaz" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1249,27 +1288,27 @@ msgstr "" "Niste shranili sprememb ureditve. Če jih ne shranite, bodo izgubljena. " "Želite nadaljevati?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Dodaj možnost za stolpec " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Ustvari geslo" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Ustvari" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Spremeni geslo" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Več" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1279,26 +1318,26 @@ msgstr "" "Najnovejša različica je %s, izdana %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", zadnja ustaljena različica:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "posodobljeno" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Končano" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Prejšnji" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1306,231 +1345,231 @@ msgid "Next" msgstr "Naslednji" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Danes" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "januar" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "februar" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "marec" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "april" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "maj" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "junij" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "julij" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "avgust" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "september" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "oktober" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "november" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "dec" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "nedelja" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "ponedeljek" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "torek" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "sreda" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "četrtek" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "petek" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "sob" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "ne" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "po" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "sr" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "če" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "pe" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "ted." -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Ura" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minuta" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Sekunda" @@ -1765,8 +1804,8 @@ msgstr "Dobrodošli v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite " "uporabiti %1$snastavitveni skript%2$s, da jo ustvarite." @@ -1906,7 +1945,7 @@ msgstr "deljeno" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabele" @@ -2040,7 +2079,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "Poizvedba SQL" @@ -2069,7 +2108,7 @@ msgid "Create PHP Code" msgstr "Ustvari kodo PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Osveži" @@ -4776,8 +4815,8 @@ msgstr ", @TABLE@ bo postalo ime tabele" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate " "nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. " @@ -4799,7 +4838,7 @@ msgstr "Stiskanje:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Brez" @@ -4933,7 +4972,6 @@ msgid "Language" msgstr "Jezik" #: libraries/display_tbl.lib.php:397 -#| msgid "Textarea columns" msgid "Restore column order" msgstr "Obnovi vrstni red stolpcev" @@ -4942,7 +4980,6 @@ msgid "Drag to reorder" msgstr "Povlecite za preureditev" #: libraries/display_tbl.lib.php:412 -#| msgid "Click to select" msgid "Click to sort" msgstr "Kliknite za razvrstitev" @@ -5036,7 +5073,7 @@ msgid "The row has been deleted" msgstr "Vrstica je izbrisana" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Prekini proces" @@ -5126,7 +5163,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Zaloga medpomnilnika" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Stanje InnoDB" @@ -5526,8 +5563,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači " "strani PrimeBase XT%s." @@ -5630,7 +5667,7 @@ msgstr "Prikaži vrste MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Gostitelj" @@ -6350,13 +6387,13 @@ msgid "Slave status" msgstr "Stanje podrejenca" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Spremenljivka" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Vrednost" @@ -6585,12 +6622,12 @@ msgid "Synchronize" msgstr "Sinhroniziraj" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Dvojiški dnevnik" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Spremenljivke" @@ -6872,7 +6909,7 @@ msgstr "Definicija PARTITION" msgid "+ Add a new value" msgstr "+ Dodaj novo vrednost" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Čas" @@ -7067,7 +7104,7 @@ msgid "Protocol version" msgstr "Različica protokola" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Uporabnik" @@ -7516,17 +7553,17 @@ msgstr "Datoteka ne obstaja" msgid "Select binary log to view" msgstr "Izberite dvojiški dnevnik za pregled" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Skrči prikazane poizvedbe" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Pokaži celotne poizvedbe" @@ -7922,8 +7959,8 @@ msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel " "privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki " @@ -8055,7 +8092,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Ta strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Pokaži stanje glavnega strežnika" @@ -8205,168 +8242,155 @@ msgstr "" "Ta strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ali ga " "želite konfigurirati?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Nit %s je bila prekinjena." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ni uspel prekiniti teme %s. Verjetno je že prekinjena." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Upravljavec" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Predpomnilnik poizvedb" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Niti" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Začasni podatki" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Zakasnjena vstavljanja" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Predpomnilnik ključev" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Stiki" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Razvrščanje" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Koordinator transakcij" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Izplakni (zapri) vse tabele" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Pokaži odprte tabele" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Prikaži gostitelje podrejencev" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Prikaži stanje podrejencev" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Izplakni predpomnilnik poizvedb" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Podatki o izvajanju" -#: server_status.php:371 -#| msgid "Server Choice" +#: server_status.php:385 msgid "Server traffic" msgstr "Promet strežnika" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Statistika poizvedb" - -#: server_status.php:373 -#| msgid "See slave status table" +#: server_status.php:387 msgid "All status variables" msgstr "Vse spremenljivke stanja" -#: server_status.php:383 server_status.php:416 -#| msgid "Refresh" +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "Hitrost osveževanja" -#: server_status.php:384 server_status.php:417 -#| msgid "Second" +#: server_status.php:398 server_status.php:431 msgid "second" msgstr "sekunda" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 -#| msgid "Second" +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 msgid "seconds" msgstr "sekund" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 -#| msgid "Minute" +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 msgid "minutes" msgstr "minut" -#: server_status.php:446 -#| msgid "Do not change the password" +#: server_status.php:460 msgid "Containing the word:" msgstr "Vsebuje besedo:" -#: server_status.php:451 -#| msgid "Show open tables" +#: server_status.php:465 msgid "Show only alert values" msgstr "Prikaži samo opozorilne vrednosti" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "Filtriraj po kategoriji ..." -#: server_status.php:468 -#| msgid "Related Links" +#: server_status.php:482 msgid "Related links:" msgstr "Sorodne povezave:" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "na uro" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "na minuto" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "na sekundo" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Vrsta poizvedbe" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "Št." -#: server_status.php:615 +#: server_status.php:623 #, php-format msgid "Network traffic since startup: %s" msgstr "Promet omrežja od zagona: %s" -#: server_status.php:623 +#: server_status.php:631 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Strežnik MySQL deluje že %s. Zagnal se je %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8374,18 +8398,18 @@ msgstr "" "Strežnik MySQL deluje kot glavni strežnik in podrejenec v " "postopku podvojevanja." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Strežnik MySQL deluje kot glavni strežnik v postopku podvojevanja." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Strežnik MySQL deluje kot podrejenec v postopku podvojevanja." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8393,15 +8417,15 @@ msgstr "" "Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite " "razdelek o podvojevanju." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Stanje podvojevanja" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Promet" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8409,44 +8433,39 @@ msgstr "" "Na zaposlenem strežniku lahko števci bajtov naštejejo preveč, zato je ta " "statistika, kot jo poroča strežnik MySQL, morda napačna." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Prejeto" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Poslano" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Povezave" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "Največ sočasnih povezav" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Neuspeli poizkusi" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Prekinjeno" -#: server_status.php:784 -msgid "Processes" -msgstr "Procesi" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 -#| msgid "Could not connect to MySQL server" +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Število spodletelih poskusov povezave s strežnikom MySQL." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8456,18 +8475,18 @@ msgstr "" "dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za " "shranitev izjav iz transakcije uporabljene začasne datoteke." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega " "dnevnika." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Število poskusov povezave (uspešnih ali ne) na strežnik MySQL." -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8479,11 +8498,11 @@ msgstr "" "povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile " "na pomnilniku namesto na disku." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Koliko začasnih datotek je ustvaril mysqld." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8491,7 +8510,7 @@ msgstr "" "Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril " "med izvajanjem stavkov." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8499,7 +8518,7 @@ msgstr "" "Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke " "napake (najverjetneje podvojen ključ)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8507,23 +8526,23 @@ msgstr "" "Število upravljalnih niti INSERT DELAYED v uporabi. Vsaka različna tabela, " "na kateri se uporabi INSERT DELAYED, dobi svojo lastno nit." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Število zapisanih vrstic INSERT DELAYED." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Število izvedenih izjav FLUSH." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Število notranjih izjav COMMIT." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Število izbrisov vrstice iz tabele." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8533,7 +8552,7 @@ msgstr "" "navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat " "so bile tabele odkrite." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8543,7 +8562,7 @@ msgstr "" "kaže, da strežnik izvaja mnogo pregledov indeksa; na primer: SELECT col1 " "FROM foo, pri čemer se predpostavlja, da je col1 indeksiran." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8552,7 +8571,7 @@ msgstr "" "visoka, je to dober znak, da so vaše poizvedbe in tabele primerno " "indeksirane." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8562,7 +8581,7 @@ msgstr "" "povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če " "pregledujete indeks." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8570,7 +8589,7 @@ msgstr "" "Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Ta postopek " "branja se uporablja predvsem za optimizacijo ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8582,7 +8601,7 @@ msgstr "" "Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih " "tabel, ali stike, ki ne uporabljajo ključev pravilno." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8594,36 +8613,36 @@ msgstr "" "tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo " "prednosti indeksov, ki jih imate." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Število notranjih izjav ROLLBACK." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Število zahtev za posodobitev vrstice v tabeli." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Število zahtev za vstavitev vrstice v tabelo." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Število trenutno umazanih strani." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Število strani zaloge medpomnilnika, za katere je bila zaprošena izplaknitev." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Število prostih strani." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8633,7 +8652,7 @@ msgstr "" "trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga " "ne morejo biti izplaknjene ali odstranjene." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8645,11 +8664,11 @@ msgstr "" "lahko izračuna tudi kot Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Skupna velikost zaloge medpomnilnika, v straneh." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8657,7 +8676,7 @@ msgstr "" "Število začetih \"naključnih\" vnaprejšnjih branj InnoDB. To se zgodi, ko " "poizvedba zahteva pregled večjega dela tabele, vendar v naključnem redu." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8665,11 +8684,11 @@ msgstr "" "Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB " "izvaja zaporedno pregledovanje celotne tabele." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8677,7 +8696,7 @@ msgstr "" "Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge " "medpomnilnika in je moral izvesti enostransko branje." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8691,52 +8710,52 @@ msgstr "" "teh čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, " "bi morala biti ta vrednost majhna." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Število dozdajšnjih posegov fsync()." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Trenutno število čakajočih posegov fsync()." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Trenutno število čakajočih branj." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Trenutno število čakajočih pisanj." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Količina do zdaj prebranih podatkov, v bajtih." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Skupno število branj podatkov." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Skupno število zapisovanj podatkov." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Količina do zdaj zapisanih podatkov, v bajtih." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Število strani, ki so bile zapisane za posege dvojnega pisanja (doublewrite)." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8744,35 +8763,35 @@ msgstr "" "Število čakanj, ki smo jih imeli, ker je bil medpomnilnik dnevnika premajhen " "in je bilo potrebno počakati, da se pred nadaljevanjem izplakne." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Število zahtev pisanja v dnevnik." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Število fizičnih pisanj v dnevniško datoteko." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Število pisanj fsync() storjenih v dnevniško datoteko." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Število čakajoče dnevniške datoteke fsyncs." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Čakajoča pisanja v dnevniško datoteko." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Število bajtov zapisanih v dnevniško datoteko." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Število ustvarjenih strani." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8780,51 +8799,51 @@ msgstr "" "Vgrajena velikost strani InnoDB (privzeto 16 KB). Veliko vrednosti je štetih " "v straneh; velikost strani omogoča preprosto pretvorbo v bajte." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Število prebranih strani." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Število zapisanih strani." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Število zaklepov vrstic, na katere se trenutno čaka." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Število čakanj na zaklepe vrstic." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Število vrstic izbrisanih iz tabel InnoDB." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Število vrstic vstavljenih v tabele InnoDB." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Število vrstic prebranih iz tabel InnoDB." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Število vrstic posodobljenih v tabelah InnoDB." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8833,7 +8852,7 @@ msgstr "" "vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot " "Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8841,7 +8860,7 @@ msgstr "" "Število neuporabljenih blokov v predpomnilniku ključev. To vrednost lahko " "uporabite, da ugotovite, koliko predpomnilnika ključev je v uporabi." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8851,11 +8870,11 @@ msgstr "" "dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli " "naenkrat v uporabi." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Število zahtev za branje bloka ključev iz predpomnilnika." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8865,15 +8884,15 @@ msgstr "" "je vaša vrednost key_buffer_size najverjetneje premajhna. Razmerje " "pogrešitev predpomnilnika se lahko izračuna kot Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Število zahtev za pisanje bloka ključev v predpomnilnik." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Število fizičnih pisanj bloka ključev na disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8884,17 +8903,17 @@ msgstr "" "enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena " "poizvedba." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "Največje število sočasno uporabljenih povezav od zagona strežnika." -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Število vrstic, ki čakajo na zapis v vrsti INSERT DELAYED." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8902,19 +8921,19 @@ msgstr "" "Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel " "najverjetneje premajhen." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Število odprtih datotek." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "Število odprtih tokov (uporabljenih v glavnem za beleženje)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Število odprtih tabel." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -8924,19 +8943,19 @@ msgstr "" "število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z " "izvedbo stavka FLUSH QUERY CACHE." -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Količina prostega spomina za predpomnilnik poizvedb." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Število zadetkov predpomnilnika." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Število poizvedb dodanih v predpomnilnik." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8949,7 +8968,7 @@ msgstr "" "uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere " "poizvedbe naj odstrani iz predpomnilnika." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8957,19 +8976,19 @@ msgstr "" "Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene " "zaradi nastavitve query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Število zabeleženih poizvedb v predpomnilniku." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Skupno število blokov v predpomnilniku poizvedb." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8977,11 +8996,11 @@ msgstr "" "Število stikov, ki ne uporabljajo indeksov. Če ta vrednost ni 0, skrbno " "preverite indekse vaših tabel." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "Število stikov, ki so uporabili iskanje območja na referenčni tabeli." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8989,7 +9008,7 @@ msgstr "" "Število stikov brez ključev, ki preverjajo uporabo ključev po vsaki vrstici. " "(Če to ni 0, previdno preverite indekse vaših tabel.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8997,16 +9016,16 @@ msgstr "" "Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni " "kritično, četudi je veliko.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Število stikov, ki so izvedli celotni pregled na prvi tabeli." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Število začasnih tabel, ki so trenutno odprte s strani niti SQL podrejencev." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9014,11 +9033,11 @@ msgstr "" "Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti " "SQL podrejenca." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "To je ON, če je strežnik podrejenec, povezan z glavnim strežnikom." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9026,12 +9045,12 @@ msgstr "" "Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time " "sekund." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Število poizvedb, ki so porabile več kot long_query_time sekund." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9041,23 +9060,23 @@ msgstr "" "Če je ta vrednost velika, razmislite o povečanju sistemske spremenljivke " "sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Število razvrščanj, ki so bila storjena z razponi." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Število razvrščenih vrstic." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Število razvrščanj, ki so bila storjena s pregledovanjem tabele." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Koliko krat je bil zaklep tabele pridobljen takoj." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9069,7 +9088,7 @@ msgstr "" "optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele " "ali uporabite podvojevanje." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9079,11 +9098,11 @@ msgstr "" "izračuna kot Threads_created/Connections. Če je ta vrednost rdeča, povečajte " "vaš thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Število trenutno odprtih povezav." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9094,7 +9113,7 @@ msgstr "" "velik, boste morda želeli povečati vrednost thread_cache_size. (Po navadi to " "ne izboljša zmogljivosti v veliki meri, če imate dobro izvedbo niti.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Število niti, ki ne spijo." @@ -9218,7 +9237,7 @@ msgstr "Spremenljivke in nastavitve strežnika" msgid "Session value" msgstr "Vrednost seje" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Skupna vrednost" @@ -9654,7 +9673,6 @@ msgid "Line" msgstr "Črtni" #: tbl_chart.php:88 -#| msgid "Inline" msgid "Spline" msgstr "Zlepek" @@ -9667,7 +9685,6 @@ msgid "Stacked" msgstr "Zloženi" #: tbl_chart.php:94 -#| msgid "Report title:" msgid "Chart title" msgstr "Naslov grafikona" @@ -9676,32 +9693,26 @@ msgid "X-Axis:" msgstr "Os x:" #: tbl_chart.php:113 -#| msgid "SQL queries" msgid "Series:" msgstr "Serije:" #: tbl_chart.php:115 -#| msgid "Textarea columns" msgid "The remaining columns" msgstr "Preostali stolpci" #: tbl_chart.php:128 -#| msgid "X Axis label" msgid "X-Axis label:" msgstr "Oznaka osi x:" #: tbl_chart.php:128 -#| msgid "Value" msgid "X Values" msgstr "Vrednosti x" #: tbl_chart.php:129 -#| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Oznaka osi y:" #: tbl_chart.php:129 -#| msgid "Value" msgid "Y Values" msgstr "Vrednosti y" diff --git a/po/sq.po b/po/sq.po index 3f1f19c4e1..ddfed6e6d6 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" +"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -47,7 +47,7 @@ msgstr "Kërko" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Emri i kyçit" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Përshkrimi" @@ -166,7 +166,7 @@ msgstr "Lloji" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Lidhje me" msgid "Comments" msgstr "Komente" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Komente" msgid "No" msgstr " Jo " -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Databaza %s është kopjuar tek %s" msgid "Rename database to" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Komanda" @@ -381,7 +381,7 @@ msgstr "rreshta" msgid "Size" msgstr "Madhësia" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "në përdorim" @@ -407,7 +407,7 @@ msgstr "Ndryshimi i fundit" msgid "Last check" msgstr "Kontrolli i fundit" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -600,64 +600,64 @@ msgstr "Tek tabela(at):" msgid "Inside column:" msgstr "Tek fusha:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Nuk gjenden tabela në databazë." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s u zbraz" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Paraqitja %s u eleminua" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s u eleminua" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Gjurmimi është aktiv." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Gjurmimi nuk është aktiv." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Paraqitje" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikimi" -#: db_structure.php:448 +#: db_structure.php:449 #, fuzzy msgid "Sum" msgstr "Sum" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -665,23 +665,23 @@ msgstr "" msgid "With selected:" msgstr "N.q.s. të zgjedhur:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Zgjidh gjithçka" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Asnjë zgjedhje" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -689,58 +689,58 @@ msgstr "Zgjidh të mbingarkuarit" msgid "Export" msgstr "Eksporto" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Shfaq për printim" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Zbraz" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Elemino" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Kontrollo tabelën" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimizo tabelën" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Riparo tabelën" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analizo tabelën" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Zëvendëso të dhënat e tabelës me file" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zëvendëso të dhënat e tabelës me file" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 #, fuzzy msgid "Data Dictionary" msgstr "Data Dictionary" @@ -756,7 +756,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -775,7 +775,7 @@ msgstr "Krijo" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Gjendja" @@ -879,8 +879,8 @@ msgstr "Dump u ruajt tek file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1076,172 +1076,7 @@ msgstr "Heq përdoruesit e zgjedhur" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Zgjedhja e serverit" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "query SQL" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Gjithsej" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Lokal" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Proceset" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Ndysho emrin e databazës në" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Ndysho emrin e databazës në" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Kopjo databazën në" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Familje gërmash" - -#: js/messages.php:95 -#, fuzzy -#| msgid "You have to choose at least one column to display" -msgid "Table must have at least one column" -msgstr "Zgjidh të paktën një kollonë për të shfaqur" - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "Krijo një faqe të re" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Përdor tabelat" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Kërko" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "query SQL" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "query SQL" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Shfleto" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Në fshirje e sipër të %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "query SQL" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "query SQL" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1250,7 +1085,214 @@ msgstr "" msgid "Edit" msgstr "Ndrysho" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Zgjedhja e serverit" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "query SQL" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Gjithsej" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Zgjedhja e serverit" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Proceset" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Lidhje" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "query SQL" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Statistikat e rreshtave" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Lokal" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Proceset" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Ndysho emrin e databazës në" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Ndysho emrin e databazës në" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Kopjo databazën në" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Familje gërmash" + +#: js/messages.php:108 +#, fuzzy +#| msgid "You have to choose at least one column to display" +msgid "Table must have at least one column" +msgstr "Zgjidh të paktën një kollonë për të shfaqur" + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "Krijo një faqe të re" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Përdor tabelat" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Kërko" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "query SQL" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "query SQL" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Shfleto" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Në fshirje e sipër të %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "query SQL" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "query SQL" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1258,78 +1300,78 @@ msgstr "Ndrysho" msgid "Save" msgstr "Ruaj" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "query SQL" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "query SQL" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Shpërfill" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Zgjidh fushën që dëshiron të shohësh" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ndrysho fjalëkalimin" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Gjeneruar nga" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ndrysho fjalëkalimin" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Hën" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1337,31 +1379,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Asnjë databazë" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "Asnjë lloj" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Paraardhësi" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1369,96 +1411,96 @@ msgid "Next" msgstr "Në vazhdim" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gjithsej" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Pri" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Maj" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Qer" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Kor" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Gsh" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Tet" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1466,176 +1508,176 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Qer" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Gsh" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dhj" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Djl" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Hën" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Mar" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pre" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Djl" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sht" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Djl" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Hën" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Mar" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mër" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Enj" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pre" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sht" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "në përdorim" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1863,8 +1905,8 @@ msgstr "Mirësevini tek %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -2004,7 +2046,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabela" @@ -2139,7 +2181,7 @@ msgid "Documentation" msgstr "Dokumentet" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "query SQL" @@ -2168,7 +2210,7 @@ msgid "Create PHP Code" msgstr "Krijo kodin PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Rifresko" @@ -4828,8 +4870,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4849,7 +4891,7 @@ msgstr "Kompresim" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Asnjë lloj" @@ -5098,7 +5140,7 @@ msgid "The row has been deleted" msgstr "rreshti u fshi" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Hiq" @@ -5189,7 +5231,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Gjëndja InnoDB" @@ -5534,8 +5576,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5657,7 +5699,7 @@ msgstr "Lloje MIME në dispozicion" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Host" @@ -6356,13 +6398,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "E ndryshueshme" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Vlerë" @@ -6604,13 +6646,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Binar" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Të ndryshueshmet" @@ -6911,7 +6953,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Shto një përdorues të ri" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Koha" @@ -7133,7 +7175,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Përdorues" @@ -7595,18 +7637,18 @@ msgstr "Tabela \"%s\" nuk ekziston!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "Fusha" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Shkurton (ndërpret) Queries e Shfaqura" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Shfaq të gjitha kërkesat" @@ -8016,8 +8058,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e " "privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të " @@ -8147,7 +8189,7 @@ msgstr "Të drejtat u përditësuan me sukses." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8286,12 +8328,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s u përfundua me sukses." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8299,255 +8341,246 @@ msgstr "" "phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë " "përfunduar më parë." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 #, fuzzy msgid "Query cache" msgstr "Lloji i query" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "Përdor shtimet me vonesë" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "Shfaq tabelat" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Informacione mbi Runtime" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Zgjedhja e serverit" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Statistikat e rreshtave" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Rifresko" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "në sekondë" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "në sekondë" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "në përdorim" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Mos ndrysho fjalëkalim" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "Shfaq tabelat" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacione" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "në orë" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "në minutë" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "në sekondë" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Lloji i query" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ky server MySQL po punon që prej %s. U nis më %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Trafiku" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Marrë" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Dërguar" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Lidhje" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Përpjekje të dështuara" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Dështoi" -#: server_status.php:784 -msgid "Processes" -msgstr "Proceset" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8555,78 +8588,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8634,7 +8667,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8642,42 +8675,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8685,33 +8718,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8720,227 +8753,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8948,99 +8981,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9048,18 +9081,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9067,7 +9100,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9190,7 +9223,7 @@ msgstr "Të ndryshueshmet dhe parametrat e Serverit" msgid "Session value" msgstr "Vlera seancës" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Vlerë Globale" @@ -10233,8 +10266,8 @@ msgstr "Riemërto tabelën në" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %" -#~ "s queries." +#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar " +#~ "%s queries." #, fuzzy #~| msgid "The privileges were reloaded successfully." diff --git a/po/sr.po b/po/sr.po index c535d20a53..d614bfba04 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -48,7 +48,7 @@ msgstr "Претраживање" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "Име кључа" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Опис" @@ -165,7 +165,7 @@ msgstr "Тип" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -194,7 +194,7 @@ msgstr "Везе ка" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,7 +210,7 @@ msgstr "Коментари" msgid "No" msgstr "Не" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -270,7 +270,7 @@ msgstr "База %s је прекопирана у %s" msgid "Rename database to" msgstr "Преименуј базу у" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Наредба" @@ -375,7 +375,7 @@ msgstr "Редова" msgid "Size" msgstr "Величина" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "се користи" @@ -401,7 +401,7 @@ msgstr "Последња измена" msgid "Last check" msgstr "Последња провера" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -597,63 +597,63 @@ msgstr "Унутар табела:" msgid "Inside column:" msgstr "Унутар табела:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Табеле нису пронађене у бази." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Табела %s је испражњена" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Поглед %s је одбачен" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Табела %s је одбачена" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Поглед" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Репликација" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Укупно" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s је подразумевани погон складиштења на овом MySQL серверу." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -661,23 +661,23 @@ msgstr "%s је подразумевани погон складиштења н msgid "With selected:" msgstr "Означено:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Означи све" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "ниједно" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -685,59 +685,59 @@ msgstr "Провери табеле које имају прекорачења" msgid "Export" msgstr "Извоз" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "За штампу" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Испразни" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Одбаци" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Провери табелу" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Оптимизуј табелу" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Поправи табелу" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Анализирај табелу" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy msgid "Add prefix to table" msgstr "База не постоји" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Речник података" @@ -753,7 +753,7 @@ msgstr "Провери табелу" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -773,7 +773,7 @@ msgstr "Направи" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Статус" @@ -878,11 +878,11 @@ msgstr "Садржај базе је сачуван у датотеку %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %" -"sдокументацију%s за начине превазилажења овог ограничења." +"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " +"%sдокументацију%s за начине превазилажења овог ограничења." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1088,175 +1088,7 @@ msgstr "Уклони изабране кориснике" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Избор сервера" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL упит" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Укупно" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Откажи" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Локални" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Процеси" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "У реду" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Преименуј базу у" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Преименуј базу у" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Копирај базу у" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Карактер сет" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Табела мора имати барем једно поље." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Направи табелу" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Користи табеле" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Претраживање" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL упит" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL упит" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Преглед" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Бришем %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL упит" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL упит" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Складиштења" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1265,7 +1097,217 @@ msgstr "Складиштења" msgid "Edit" msgstr "Промени" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Избор сервера" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL упит" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Укупно" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Избор сервера" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Процеси" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Конекције" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL упит" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Статистике реда" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Откажи" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Локални" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Процеси" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "У реду" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Преименуј базу у" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Преименуј базу у" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Копирај базу у" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Карактер сет" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Табела мора имати барем једно поље." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Направи табелу" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Користи табеле" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Претраживање" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL упит" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL упит" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Преглед" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Бришем %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL упит" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL упит" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Складиштења" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1273,77 +1315,77 @@ msgstr "Промени" msgid "Save" msgstr "Сачувај" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Сакриј" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Игнориши" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Изаберите референцирани кључ" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Изабери страни кључ" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Молимо изаберите примарни или јединствени кључ" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Изабери поља за приказ" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Направи лозинку" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Направи" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Промени лозинку" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1351,31 +1393,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy msgid ", latest stable version:" msgstr "Направи релацију" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "База не постоји" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy msgid "Done" msgstr "Подаци" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1383,96 +1425,96 @@ msgid "Next" msgstr "Следећи" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Укупно" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарни" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "мај" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1480,176 +1522,176 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "дец" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Уто" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Уто" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1884,8 +1926,8 @@ msgstr "Добродошли на %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Вероватан разлог за ово је да нисте направили конфигурациону датотеку. " "Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили." @@ -2027,7 +2069,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Табеле" @@ -2164,7 +2206,7 @@ msgid "Documentation" msgstr "Документација" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL упит" @@ -2193,7 +2235,7 @@ msgid "Create PHP Code" msgstr "Направи PHP код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Освежи" @@ -4894,8 +4936,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да " "користите стрингове за форматирање времена. Такође ће се десити и следеће " @@ -4918,7 +4960,7 @@ msgstr "Компресија" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "нема" @@ -5181,7 +5223,7 @@ msgid "The row has been deleted" msgstr "Ред је обрисан" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Обустави" @@ -5275,7 +5317,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Скуп прихватника" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB статус" @@ -5635,8 +5677,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5762,7 +5804,7 @@ msgstr "Доступни MIME-типови" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Домаћин" @@ -6466,13 +6508,13 @@ msgid "Slave status" msgstr "Прикажи статус подређених сервера" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Променљива" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Вредност" @@ -6713,12 +6755,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Бинарни дневник" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Променљиве" @@ -7016,7 +7058,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Додај новог корисника" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Време" @@ -7255,7 +7297,7 @@ msgid "Protocol version" msgstr "Верзија протокола" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Корисник" @@ -7732,17 +7774,17 @@ msgstr "Табела \"%s\" не постоји!" msgid "Select binary log to view" msgstr "Изаберите бинарни дневник за преглед" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Датотеке" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Прикажи скраћене упите" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Прикажи комплетне упите" @@ -8139,8 +8181,8 @@ msgstr "Одбаци базе које се зову исто као корис msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела " "привилегија. Садржај ове табеле може се разликовати од привилегија које " @@ -8270,7 +8312,7 @@ msgstr "Привилегије су успешно поново учитане." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 #, fuzzy msgid "Show master status" msgstr "Прикажи статус подређених сервера" @@ -8411,205 +8453,200 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s је успешно прекинут." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Руковалац" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Кеш упита" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Нити" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Привремени подаци" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Одложена уметања" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Кеш кључева" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Спојеви" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Сортирање" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Координатор трансакција" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Очисти (затвори) све табеле" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Прикажи отворене табеле" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Прикажи подређене сервер" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Прикажи статус подређених сервера" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Очисти кеш упита" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Информације о току рада" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Избор сервера" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Статистике реда" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Освежи" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "у секунди" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "у секунди" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "се користи" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Немој да мењаш лозинку" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Прикажи отворене табеле" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Релације" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "на сат" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "у минуту" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "у секунди" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Врста упита" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Овај MySQL сервер ради већ %s. Покренут је %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 #, fuzzy msgid "Replication status" msgstr "Репликација" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Саобраћај" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8617,45 +8654,41 @@ msgstr "" "На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да " "те статистике, онако како их пријављује MySQL сервер, могу бити нетачне." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Примљено" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Послато" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Конекције" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "макс. истовремених веза" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Неуспелих покушаја" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Прекинуто" -#: server_status.php:784 -msgid "Processes" -msgstr "Процеси" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8665,16 +8698,16 @@ msgstr "" "превазишле вредност у binlog_cache_size и користиле привремену датотеку да " "сместе изразе из трансакције." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Број трансакција које су користиле кеш привременог бинарног дневника." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8686,11 +8719,11 @@ msgstr "" "повећате вредност tmp_table_size како би учинили да привремене табеле буду " "базиране у меморији уместо на диску." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Колико привремених датотека је mysqld направио." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8698,7 +8731,7 @@ msgstr "" "Број привремених табела које је сервер аутоматски креирао у меморији док је " "извршавао изразе." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8706,7 +8739,7 @@ msgstr "" "Број редова уписаних са INSERT DELAYED за које је јављена нека грешка " "(вероватно дуплирани кључ)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8714,23 +8747,23 @@ msgstr "" "Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над " "којом се користи INSERT DELAYED добија своју нит." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Број уписаних INSERT DELAYED редова." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Број извршених FLUSH израза." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Број интерних COMMIT израза." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Број брисања неког реда табеле." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8740,7 +8773,7 @@ msgstr "" "одређеног имена. То се назива откривањем (discovery). Handler_discover " "означава број пута када је откривена табела." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8750,7 +8783,7 @@ msgstr "" "може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT " "кол1 FROM нешто, под претпоставком да је кол1 индексирано." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8758,7 +8791,7 @@ msgstr "" "Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то " "је добар показатељ да су ваши упити и табеле прописно индексирани." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8768,7 +8801,7 @@ msgstr "" "када радите упит по колони индекса са ограничењем опсега или ако радите " "скенирање индекса." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8776,7 +8809,7 @@ msgstr "" "Број захтева за читањем претходног реда у поретку кључева. Ова метода читања " "се углавном користи за оптимизацију ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8788,7 +8821,7 @@ msgstr "" "много упита који захтевају да MySQL скенира целе табеле или имате спојеве " "који не користе кључеве прописно." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8800,35 +8833,35 @@ msgstr "" "прописно индексиране или да ваши упити нису написани да искористе већ " "постојеће индексе." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Број интерних ROLLBACK израза." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Број захтева за ажурирање реда у табели." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Број захтева за уписивање реда у табелу." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Број страна које садрже податке (чистих или прљавих)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Број страна које су тренутно прљаве." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Број страна у остави бафера за које је тражено да буду очишћене." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Број слободних страна." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8838,7 +8871,7 @@ msgstr "" "чита или се у њих уписује или из неког другог разлога не могу бити очишћене " "нити уклоњене." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8850,11 +8883,11 @@ msgstr "" "такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Пуна величина оставе бафера, у странама." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8862,7 +8895,7 @@ msgstr "" "Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када " "упит треба да скенира велики део табеле али насумичним редоследом." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8870,11 +8903,11 @@ msgstr "" "Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када " "InnoDB ради секвенцијално скенирање целе табеле." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Број логичких захтева за читање које је InnoDB урадио." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8882,7 +8915,7 @@ msgstr "" "Број логичких читања која InnoDB није могао да задовољи из оставе бафера те " "је морао да ради читање појединачне стране." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8896,55 +8929,55 @@ msgstr "" "дешавања ових чекања. Ако је величина оставе бафера постављена како треба, " "ова вредност ви требало да је ниска." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Број уписа учињених у InnoDB оставу бафера." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Број fsync() операција до сада." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Тренутни број fsync() операција на чекању." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Тренутни број читања на чекању." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Тренутни број уписа на чекању." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Количина података прочитаних до сада, у бајтовима." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Укупан број читања података." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Укупан број уписа података." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Количина података уписаних до сада, у бајтовима" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8952,35 +8985,35 @@ msgstr "" "Број чекања која смо имали зато што је бафер дневника био премали те смо " "морали да сачекамо да буде очишћен пре наставка." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Број захтева за упис у дневник." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Број физичких уписа у датотеку дневника." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Број fsync-ова за датотеку дневника на чекању." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Број уписа у датотеку дневника на чекању." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Број бајтова уписаних у датотеку дневника." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Број направљених страна." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8989,51 +9022,51 @@ msgstr "" "вредности се рачунају у странама; величина стране омогућава да се оне лако " "конвертују у бајтове." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Број прочитаних страна." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Број записаних страна." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Број брава за редове које се тренутно чекају." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Просечно време за добављање браве за ред, у милисекундама." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Најдуже време за добављање браве за ред, у милисекундама." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Број пута када се морала чекати брава за ред." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Број редова обрисаних из InnoDB табела." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Број редова уметнутих у InnoDB табеле." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Број редова прочитаних из InnoDB табела." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Број редова ажурираних у InnoDB табелама." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9041,7 +9074,7 @@ msgstr "" "Број блокова кључева у кешу кључева који су измењени али још нису послати на " "диск. Ово је раније било познато као Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9049,7 +9082,7 @@ msgstr "" "Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите " "да утврдите колики део кеша кључева је у употреби." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9059,11 +9092,11 @@ msgstr "" "водостаја“ која показује највећи икада број блокова који је био у употреби у " "исто време." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Број захтева за читање блока кључева из кеша." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9073,15 +9106,15 @@ msgstr "" "је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша " "се може израчунати као Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Број захтева за уписивање блока кључева у кеш." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Број физичких уписа блока кључева на диск." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9091,17 +9124,17 @@ msgstr "" "упита. Корисно за упоређивање цене различитих планова упита за исти упит. " "Подразумевана вредност 0 значи да још није био компајлиран ниједан упит." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9109,39 +9142,39 @@ msgstr "" "Број табела које су биле отваране. Ако је број велики, ваш кеш табела је " "вероватно премали." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Број отворених датотека." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Број отворених токова (користи се првенствено за вођење дневника (logging))." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Број отворених табела." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Количина слободне меморије за кеш упита." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Број погодака из кеша." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Број упита додатих у кеш." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9153,7 +9186,7 @@ msgstr "" "упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least " "recently used , LRU) да би одлучио које упите да уклони из кеша." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9161,19 +9194,19 @@ msgstr "" "Број некешираних упита (који се не могу кеширати или нису кеширани због " "подешавања query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Број упита регистрованих у кешу." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Укупан број блокова у кешу за упите." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Статус репликације отпорне на грешке (није још имплементирано)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9181,11 +9214,11 @@ msgstr "" "Број спојева који не користе индексте. Ако ова вредност није 0, требало би " "пажљиво да проверите индексе ваших табела." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "Број спојева који су користили претрагу опсега на референтној табели." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9193,7 +9226,7 @@ msgstr "" "Број спојева без кључева који проверавају употребу кључа после сваког реда. " "(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9201,15 +9234,15 @@ msgstr "" "Број спојева који су користили опсеге на првој табели. (Обично није критично " "чак ни када је ово велико)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9217,11 +9250,11 @@ msgstr "" "Укупан број пута (од покретања) када је помоћна SQL нит за репликацију " "покушала трансакције." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9229,12 +9262,12 @@ msgstr "" "Број нити за које је требало више од slow_launch_time секудни да би биле " "покренуте." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Број упита за које је требало више од long_query_time секудни." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9244,23 +9277,23 @@ msgstr "" "је ова вредност велика, требало би да размислите о повећању вредности " "системске променљиве sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Број сортирања која су урађена са опсегом." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Број сортираних редова." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Број сортирања до којих је дошло скенирањем табеле." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Број пута када је брава за табелу одмах добављена." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9272,7 +9305,7 @@ msgstr "" "би требало да оптимизујете своје упите а потом да или поделите табелу или " "табеле или да користите репликацију." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9282,11 +9315,11 @@ msgstr "" "Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате " "ваш thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Број тренутно отворених веза." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9298,7 +9331,7 @@ msgstr "" "имплементацију нити, ово обично не доноси приметна побољшања у " "перформансама.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Број нити које нису успаване." @@ -9423,7 +9456,7 @@ msgstr "Серверске променљиве и подешавања" msgid "Session value" msgstr "Вредност сесије" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Глобална вредност" diff --git a/po/sr@latin.po b/po/sr@latin.po index 546694eaf4..db25862bbb 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -48,7 +48,7 @@ msgstr "Pretraživanje" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "Ime ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Opis" @@ -167,7 +167,7 @@ msgstr "Tip" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -196,7 +196,7 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -212,7 +212,7 @@ msgstr "Komentari" msgid "No" msgstr "Ne" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -272,7 +272,7 @@ msgstr "Baza %s je prekopirana u %s" msgid "Rename database to" msgstr "Preimenuj bazu u" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Naredba" @@ -377,7 +377,7 @@ msgstr "Redova" msgid "Size" msgstr "Veličina" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "se koristi" @@ -403,7 +403,7 @@ msgstr "Poslednja izmena" msgid "Last check" msgstr "Poslednja provera" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -591,63 +591,63 @@ msgstr "Unutar tabela:" msgid "Inside column:" msgstr "Unutar kolone::" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Tabele nisu pronađene u bazi." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je odbačen" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Praćenje je aktivno." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Praćenje nije aktivno." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Pogled" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Ukupno" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -655,23 +655,23 @@ msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru." msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "nijedno" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -679,59 +679,59 @@ msgstr "Proveri tabele koje imaju prekoračenja" msgid "Export" msgstr "Izvoz" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Odbaci" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Proveri tabelu" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimizuj tabelu" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy msgid "Add prefix to table" msgstr "Baza ne postoji" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Zameni podatke u tabeli sa podacima iz datoteke" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zameni podatke u tabeli sa podacima iz datoteke" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Rečnik podataka" @@ -747,7 +747,7 @@ msgstr "Proveri tabelu" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -767,7 +767,7 @@ msgstr "Napravi" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -872,11 +872,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %" -"sdokumentaciju%s za načine prevazilaženja ovog ograničenja." +"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte " +"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1082,175 +1082,7 @@ msgstr "Ukloni izabrane korisnike" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Izbor servera" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL upit" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Ukupno" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Otkaži" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Lokalni" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Procesi" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "U redu" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Preimenuj bazu u" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Remove database" -msgid "Reload Database" -msgstr "Ukloni bazu" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Kopiraj bazu u" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Karakter set" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Tabela mora imati barem jedno polje." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Napravi tabelu" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Koristi tabele" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Pretraživanje" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL upit" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL upit" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Pregled" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Brišem %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL upit" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL upit" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Skladištenja" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1259,7 +1091,217 @@ msgstr "Skladištenja" msgid "Edit" msgstr "Promeni" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Izbor servera" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL upit" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Ukupno" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Izbor servera" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Procesi" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Konekcije" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL upit" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Statistike reda" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Otkaži" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Lokalni" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesi" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "U redu" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Preimenuj bazu u" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Remove database" +msgid "Reload Database" +msgstr "Ukloni bazu" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Kopiraj bazu u" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Karakter set" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Tabela mora imati barem jedno polje." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Napravi tabelu" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Koristi tabele" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Pretraživanje" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL upit" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL upit" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Pregled" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Brišem %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL upit" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL upit" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Skladištenja" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1267,77 +1309,77 @@ msgstr "Promeni" msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Sakrij" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Izaberite referencirani ključ" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Izaberi strani ključ" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Molimo izaberite primarni ili jedinstveni ključ" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Napravi lozinku" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Napravi" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promeni lozinku" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1345,31 +1387,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy msgid ", latest stable version:" msgstr "Napravi relaciju" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Baza ne postoji" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy msgid "Done" msgstr "Podaci" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1377,96 +1419,96 @@ msgid "Next" msgstr "Sledeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "maj" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "avg" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1474,176 +1516,176 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "dec" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sre" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1878,8 +1920,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. " "Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili." @@ -2021,7 +2063,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabele" @@ -2158,7 +2200,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL upit" @@ -2187,7 +2229,7 @@ msgid "Create PHP Code" msgstr "Napravi PHP kod" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Osveži" @@ -4887,8 +4929,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da " "koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće " @@ -4911,7 +4953,7 @@ msgstr "Kompresija" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "nema" @@ -5174,7 +5216,7 @@ msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Obustavi" @@ -5268,7 +5310,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Skup prihvatnika" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB status" @@ -5628,8 +5670,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5751,7 +5793,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Domaćin" @@ -6453,13 +6495,13 @@ msgid "Slave status" msgstr "Prikaži status podređenih servera" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Promenljiva" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Vrednost" @@ -6700,12 +6742,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binarni dnevnik" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Promenljive" @@ -7003,7 +7045,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Dodaj novog korisnika" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Vreme" @@ -7243,7 +7285,7 @@ msgid "Protocol version" msgstr "Verzija protokola" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Korisnik" @@ -7721,17 +7763,17 @@ msgstr "Tabela \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "Izaberite binarni dnevnik za pregled" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -8128,8 +8170,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " @@ -8259,7 +8301,7 @@ msgstr "Privilegije su uspešno ponovo učitane." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 #, fuzzy msgid "Show master status" msgstr "Prikaži status podređenih servera" @@ -8400,205 +8442,200 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspešno prekinut." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao da prekine proces %s. Verovatno je već zatvoren." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Rukovalac" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Keš upita" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Niti" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Privremeni podaci" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Odložena umetanja" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Keš ključeva" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Spojevi" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Sortiranje" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Koordinator transakcija" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Očisti (zatvori) sve tabele" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Prikaži otvorene tabele" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Prikaži podređene server" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Prikaži status podređenih servera" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Očisti keš upita" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Informacije o toku rada" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Izbor servera" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Statistike reda" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Osveži" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "u sekundi" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "u sekundi" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "se koristi" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nemoj da menjaš lozinku" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Prikaži otvorene tabele" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "na sat" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "u minutu" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "u sekundi" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Vrsta upita" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Saobraćaj" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8606,45 +8643,41 @@ msgstr "" "Na zaposlenom serveru brojači bajtova mogu da se preliju (overrun), tako da " "te statistike, onako kako ih prijavljuje MySQL server, mogu biti netačne." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Primljeno" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Poslato" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Konekcije" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "maks. istovremenih veza" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:784 -msgid "Processes" -msgstr "Procesi" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8654,16 +8687,16 @@ msgstr "" "prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da " "smeste izraze iz transakcije." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Broj transakcija koje su koristile keš privremenog binarnog dnevnika." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8675,11 +8708,11 @@ msgstr "" "povećate vrednost tmp_table_size kako bi učinili da privremene tabele budu " "bazirane u memoriji umesto na disku." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Koliko privremenih datoteka je mysqld napravio." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8687,7 +8720,7 @@ msgstr "" "Broj privremenih tabela koje je server automatski kreirao u memoriji dok je " "izvršavao izraze." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8695,7 +8728,7 @@ msgstr "" "Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška " "(verovatno duplirani ključ)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8703,23 +8736,23 @@ msgstr "" "Broj INSERT DELAYED rukovalačkih niti u upotrebi. Svaka posebna tabela nad " "kojom se koristi INSERT DELAYED dobija svoju nit." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Broj upisanih INSERT DELAYED redova." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih FLUSH izraza." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Broj internih COMMIT izraza." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Broj brisanja nekog reda tabele." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8729,7 +8762,7 @@ msgstr "" "tabelu određenog imena. To se naziva otkrivanjem (discovery). " "Handler_discover označava broj puta kada je otkrivena tabela." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8739,7 +8772,7 @@ msgstr "" "može značiti da server radi puno punih skeniranja indeksa; na primer SELECT " "kol1 FROM nešto, pod pretpostavkom da je kol1 indeksirano." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8747,7 +8780,7 @@ msgstr "" "Broj zahteva za čitanje reda zasnovanih na ključu. Ako je ovaj broj visok, " "to je dobar pokazatelj da su vaši upiti i tabele propisno indeksirani." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8757,7 +8790,7 @@ msgstr "" "kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite " "skeniranje indeksa." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8765,7 +8798,7 @@ msgstr "" "Broj zahteva za čitanjem prethodnog reda u poretku ključeva. Ova metoda " "čitanja se uglavnom koristi za optimizaciju ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8777,7 +8810,7 @@ msgstr "" "mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve " "koji ne koriste ključeve propisno." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8789,35 +8822,35 @@ msgstr "" "nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već " "postojeće indekse." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih ROLLBACK izraza." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Broj zahteva za ažuriranje reda u tabeli." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Broj zahteva za upisivanje reda u tabelu." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Broj strana koje su trenutno prljave." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Broj strana u ostavi bafera za koje je traženo da budu očišćene." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Broj slobodnih strana." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8827,7 +8860,7 @@ msgstr "" "čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene " "niti uklonjene." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8839,11 +8872,11 @@ msgstr "" "se takođe može izračunati i na sledeći način Innodb_buffer_pool_pages_total " "- Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Puna veličina ostave bafera, u stranama." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8851,7 +8884,7 @@ msgstr "" "Broj „nasumičnih“ pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "upit treba da skenira veliki deo tabele ali nasumičnim redosledom." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8859,11 +8892,11 @@ msgstr "" "Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "InnoDB radi sekvencijalno skeniranje cele tabele." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8871,7 +8904,7 @@ msgstr "" "Broj logičkih čitanja koja InnoDB nije mogao da zadovolji iz ostave bafera " "te je morao da radi čitanje pojedinačne strane." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8885,55 +8918,55 @@ msgstr "" "dešavanja ovih čekanja. Ako je veličina ostave bafera postavljena kako " "treba, ova vrednost vi trebalo da je niska." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Broj fsync() operacija do sada." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Trenutni broj fsync() operacija na čekanju." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Trenutni broj čitanja na čekanju." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Trenutni broj upisa na čekanju." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do sada, u bajtovima." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Ukupan broj čitanja podataka." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Ukupan broj upisa podataka." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka upisanih do sada, u bajtovima" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8941,35 +8974,35 @@ msgstr "" "Broj čekanja koja smo imali zato što je bafer dnevnika bio premali te smo " "morali da sačekamo da bude očišćen pre nastavka." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Broj zahteva za upis u dnevnik." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih upisa u datoteku dnevnika." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Broj fsync-ova za datoteku dnevnika na čekanju." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Broj upisa u datoteku dnevnika na čekanju." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Broj bajtova upisanih u datoteku dnevnika." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Broj napravljenih strana." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8978,52 +9011,52 @@ msgstr "" "vrednosti se računaju u stranama; veličina strane omogućava da se one lako " "konvertuju u bajtove." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Broj pročitanih strana." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Broj zapisanih strana." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Broj brava za redove koje se trenutno čekaju." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosečno vreme za dobavljanje brave za red, u milisekundama." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vremena provedeno u dobavljanju brava za redove, u milisekundama." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najduže vreme za dobavljanje brave za red, u milisekundama." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Broj puta kada se morala čekati brava za red." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redova obrisanih iz InnoDB tabela." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redova umetnutih u InnoDB tabele." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Broj redova pročitanih iz InnoDB tabela." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Broj redova ažuriranih u InnoDB tabelama." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9031,7 +9064,7 @@ msgstr "" "Broj blokova ključeva u kešu ključeva koji su izmenjeni ali još nisu poslati " "na disk. Ovo je ranije bilo poznato kao Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9039,7 +9072,7 @@ msgstr "" "Broj neiskorišćenih blokova u kešu ključeva. Ovu vrednost možete da " "koristite da utvrdite koliki deo keša ključeva je u upotrebi." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9049,11 +9082,11 @@ msgstr "" "vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u " "isto vreme." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahteva za čitanje bloka ključeva iz keša." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9063,15 +9096,15 @@ msgstr "" "je vaša vrednost za key_buffer_size verovatno premala. Stepen promašaja keša " "se može izračunati kao Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahteva za upisivanje bloka ključeva u keš." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih upisa bloka ključeva na disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9081,17 +9114,17 @@ msgstr "" "upita. Korisno za upoređivanje cene različitih planova upita za isti upit. " "Podrazumevana vrednost 0 znači da još nije bio kompajliran nijedan upit." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redova u INSERT DELAYED redovima čekanja koji čekaju upisivanje." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9099,39 +9132,39 @@ msgstr "" "Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je " "verovatno premali." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih tokova (koristi se prvenstveno za vođenje dnevnika (logging))." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Broj otvorenih tabela." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za keš upita." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Broj pogodaka iz keša." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Broj upita dodatih u keš." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9143,7 +9176,7 @@ msgstr "" "keša za upite. Keš za upite koristi strategiju najduže nekorišćenog (en: " "least recently used , LRU) da bi odlučio koje upite da ukloni iz keša." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9151,19 +9184,19 @@ msgstr "" "Broj nekeširanih upita (koji se ne mogu keširati ili nisu keširani zbog " "podešavanja query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Broj upita registrovanih u kešu." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u kešu za upite." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikacije otporne na greške (nije još implementirano)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9171,11 +9204,11 @@ msgstr "" "Broj spojeva koji ne koriste indekste. Ako ova vrednost nije 0, trebalo bi " "pažljivo da proverite indekse vaših tabela." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "Broj spojeva koji su koristili pretragu opsega na referentnoj tabeli." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9184,7 +9217,7 @@ msgstr "" "reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših " "tabela.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9192,15 +9225,15 @@ msgstr "" "Broj spojeva koji su koristili opsege na prvoj tabeli. (Obično nije kritično " "čak ni kada je ovo veliko)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su uradili puno skeniranje prve tabele." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Broj privremenih tabela trenutno otvorenih od strane pomoćne SQL niti." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9208,11 +9241,11 @@ msgstr "" "Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju " "pokušala transakcije." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ovo je ON ako je ovaj server pomoćni koji je povezan na glavni." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9220,12 +9253,12 @@ msgstr "" "Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile " "pokrenute." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Broj upita za koje je trebalo više od long_query_time sekudni." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9235,23 +9268,23 @@ msgstr "" "Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti " "sistemske promenljive sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Broj sortiranja koja su urađena sa opsegom." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Broj sortiranih redova." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Broj sortiranja do kojih je došlo skeniranjem tabele." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Broj puta kada je brava za tabelu odmah dobavljena." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9263,7 +9296,7 @@ msgstr "" "bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili " "tabele ili da koristite replikaciju." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9273,11 +9306,11 @@ msgstr "" "Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate " "vaš thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9289,7 +9322,7 @@ msgstr "" "implementaciju niti, ovo obično ne donosi primetna poboljšanja u " "performansama.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Broj niti koje nisu uspavane." @@ -9414,7 +9447,7 @@ msgstr "Serverske promenljive i podešavanja" msgid "Session value" msgstr "Vrednost sesije" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Globalna vrednost" diff --git a/po/sv.po b/po/sv.po index 83846dc034..d1fd3c8ba2 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-16 00:11+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" @@ -47,7 +47,7 @@ msgstr "Sök" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Nyckel" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Beskrivning" @@ -166,7 +166,7 @@ msgstr "Typ" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Länkar till" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Kommentarer" msgid "No" msgstr "Nej" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Databas %s har kopierats till %s" msgid "Rename database to" msgstr "Byt namn på databasen till" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Kommando" @@ -372,7 +372,7 @@ msgstr "Rader" msgid "Size" msgstr "Storlek" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "används" @@ -398,7 +398,7 @@ msgstr "Senaste uppdatering" msgid "Last check" msgstr "Senaste kontroll" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -581,61 +581,61 @@ msgstr "I tabell(er):" msgid "Inside column:" msgstr "Inuti kolumnen:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Inga tabeller finns i databasen." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har tömts" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "Vyn %s har tagits bort" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har tagits bort" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Spårning är aktiv." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Spårning är inte aktiv." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Vy" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikering" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Summa" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s är standardlagringsmotorn på denna MySQL-server." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -643,23 +643,23 @@ msgstr "%s är standardlagringsmotorn på denna MySQL-server." msgid "With selected:" msgstr "Med markerade:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Markera alla" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Avmarkera alla" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Markera ooptimerade" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -667,54 +667,54 @@ msgstr "Markera ooptimerade" msgid "Export" msgstr "Exportera" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Töm" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Radera" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Kontrollera tabell" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimera tabell" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Reparera tabell" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Analysera tabell" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Lägg till prefix till tabellen" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Ersätt tabellprefix" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Kopiera tabell med prefix" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Datalexikon" @@ -729,7 +729,7 @@ msgstr "Spårade tabeller" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -747,7 +747,7 @@ msgstr "Skapad" msgid "Updated" msgstr "Uppdaterad" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -847,8 +847,8 @@ msgstr "SQL-satserna har sparats till filen %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s " "för att gå runt denna begränsning." @@ -1004,7 +1004,6 @@ msgstr "Detta är inte ett nummer!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#| msgid "Log file count" msgid "Total count" msgstr "Totalt antal" @@ -1042,146 +1041,7 @@ msgstr "Tar bort markerade användare" msgid "Close" msgstr "Stäng" -#: js/messages.php:64 server_status.php:397 -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Live trafik diagram" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "Live anslutning/process diagram" - -#: js/messages.php:66 server_status.php:429 -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Live sökfrågediagram" - -#: js/messages.php:68 -msgid "Static data" -msgstr "Statisk data" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Total" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "Annan" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "  " - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Avbryt" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Laddar" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Processa begäran" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "Fel i processbegäran" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Tar bort kolumn" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Lägger till primär nyckel" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Döp om databaser" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Ladda om databas" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Kopiera databas" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Ändra teckenuppsättning" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Tabellen måste ha åtminstone ett fält." - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Skapa tabell" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "Lägg till en tabell" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Söker" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Dölj sökresultat" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Visa sökresultat" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Bläddrar bland" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Raderar" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" -"Obs: Om filen innehåller multipla tabeller, kommer de att kombineras till en" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Göm sök-rutan" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Visa frågerutan" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Redigera" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1190,7 +1050,186 @@ msgstr "Redigera" msgid "Edit" msgstr "Ändra" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "Live trafik diagram" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "Live anslutning/process diagram" + +#: js/messages.php:68 server_status.php:443 +msgid "Live query chart" +msgstr "Live sökfrågediagram" + +#: js/messages.php:70 +msgid "Static data" +msgstr "Statisk data" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "Annan" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "  " + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server traffic" +msgid "Server traffic (in kB)" +msgstr "Server trafik" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Processer" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Förbindelser" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL-frågor" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Visa statistik" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Avbryt" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Laddar" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Processa begäran" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "Fel i processbegäran" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Tar bort kolumn" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Lägger till primär nyckel" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Döp om databaser" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Ladda om databas" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Kopiera databas" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Ändra teckenuppsättning" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Tabellen måste ha åtminstone ett fält." + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Skapa tabell" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "Lägg till en tabell" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Söker" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Dölj sökresultat" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Visa sökresultat" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Bläddrar bland" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Raderar" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" +"Obs: Om filen innehåller multipla tabeller, kommer de att kombineras till en" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Göm sök-rutan" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Visa frågerutan" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Redigera" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1198,41 +1237,41 @@ msgstr "Ändra" msgid "Save" msgstr "Spara" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Dölj" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Dölj sökkriterier" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Visa sökkriterier" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorera" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Välj refererad nyckel" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Välj främmande nyckel" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Välj den primära nyckeln eller en unik nyckel" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Välj kolumn att visa" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1240,27 +1279,27 @@ msgstr "" "Du har inte sparat ändringarna i layouten. Dessa kommer förloras om du inte " "sparar dem. Vill du fortsätta?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Välj ett alternativ för kolumn" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Skapa lösenord" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generera" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Ändra lösenord" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Mera" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1270,26 +1309,26 @@ msgstr "" "senaste versionen är %s, publicerad den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "senaste stabila version:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "aktuell" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Klart" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Föregående" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1297,231 +1336,231 @@ msgid "Next" msgstr "Nästa" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Idag" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "januari" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "februari" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "mars" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "april" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "maj" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "juni" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "juli" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "augusti" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "september" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "oktober" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "november" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "dec" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Söndag" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Måndag" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Tisdag" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Fredag" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Lördag" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Lör" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Sö" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Må" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "On" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Lö" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Vecka" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Timmar" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Minuter" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Sekunder" @@ -1750,11 +1789,11 @@ msgstr "Välkommen till %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1" -"$suppsättningsskript%2$s för att skapa denna." +"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda " +"%1$suppsättningsskript%2$s för att skapa denna." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -1893,7 +1932,7 @@ msgstr "delad" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tabeller" @@ -2024,7 +2063,7 @@ msgid "Documentation" msgstr "Dokumentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-fråga" @@ -2053,7 +2092,7 @@ msgid "Create PHP Code" msgstr "Skapa PHP-kod" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Uppdatera" @@ -4751,8 +4790,8 @@ msgstr ", @TABLE@ blir tabellnamnet" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med " "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " @@ -4773,7 +4812,7 @@ msgstr "Komprimering:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Inget" @@ -4907,7 +4946,6 @@ msgid "Language" msgstr "Språk" #: libraries/display_tbl.lib.php:397 -#| msgid "Textarea columns" msgid "Restore column order" msgstr "Återställ ordningen på kolumner" @@ -4916,7 +4954,6 @@ msgid "Drag to reorder" msgstr "Dra för att ändra ordning" #: libraries/display_tbl.lib.php:412 -#| msgid "Click to select" msgid "Click to sort" msgstr "Klicka för att sortera" @@ -5010,7 +5047,7 @@ msgid "The row has been deleted" msgstr "Raden har raderats" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Döda" @@ -5100,7 +5137,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffertutrymme" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB-status" @@ -5495,11 +5532,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%" -"s." +"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page" +"%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -5597,7 +5634,7 @@ msgstr "Visa MIME-typer" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Värd" @@ -6316,13 +6353,13 @@ msgid "Slave status" msgstr "Slav-status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Värde" @@ -6551,12 +6588,12 @@ msgid "Synchronize" msgstr "Synkronisera" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binär logg" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Variabler" @@ -6839,7 +6876,7 @@ msgstr "Partitionsdefinition" msgid "+ Add a new value" msgstr "+ Lägg till ett nytt värde" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Tid" @@ -7038,7 +7075,7 @@ msgid "Protocol version" msgstr "Protokollversion" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Användare" @@ -7174,8 +7211,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %" -"s. Detta kan orsaka oförutsägbara beteenden." +"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version " +"%s. Detta kan orsaka oförutsägbara beteenden." #: main.php:341 #, php-format @@ -7482,17 +7519,17 @@ msgstr "Filen finns inte" msgid "Select binary log to view" msgstr "Välj binär logg att visa" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Filer" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Korta av visade frågor" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Visa fullständiga frågor" @@ -7886,8 +7923,8 @@ msgstr "Ta bort databaserna med samma namn som användarna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Anm: phpMyAdmin hämtar användarnas privilegier direkt från MySQL:s " "privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från " @@ -8018,7 +8055,7 @@ msgstr "Huvudservern har ändrats till %s" msgid "This server is configured as master in a replication process." msgstr "Denna server är konfigurerad som master i en replikerings process." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Visa master-status" @@ -8165,169 +8202,156 @@ msgstr "" "Denna server är inte konfigurerad som slav i en replikering process. Vill du " "konfigurera den?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråden %s dödades med framgång." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunde inte döda tråd %s. Troligtvis har den redan avslutats." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Hanterare" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Frågecache" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Trådar" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Temporära data" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Fördröjda infogningar" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Nyckelcache" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Kopplingar" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Sortering" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Transaktionssamordnare" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Flush (stäng) alla tabeller" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Visa öppna tabeller" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Visa slav-värdar" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Visa slav-status" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Rensa frågecache" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Körningsinformation" -#: server_status.php:371 -#| msgid "Server Choice" +#: server_status.php:385 msgid "Server traffic" msgstr "Server trafik" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Visa statistik" - -#: server_status.php:373 -#| msgid "See slave status table" +#: server_status.php:387 msgid "All status variables" msgstr "Alla statusvariabler" -#: server_status.php:383 server_status.php:416 -#| msgid "Refresh" +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "Uppdateringsfrekvens" -#: server_status.php:384 server_status.php:417 -#| msgid "Second" +#: server_status.php:398 server_status.php:431 msgid "second" msgstr "Sekund" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 -#| msgid "Second" +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 msgid "seconds" msgstr "sekunder" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 -#| msgid "Minute" +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 msgid "minutes" msgstr "minuter" -#: server_status.php:446 -#| msgid "Do not change the password" +#: server_status.php:460 msgid "Containing the word:" msgstr "Innehåller ordet:" -#: server_status.php:451 -#| msgid "Show open tables" +#: server_status.php:465 msgid "Show only alert values" msgstr "Visa endast varnings värden" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "Filtrera efter kategori ..." -#: server_status.php:468 -#| msgid "Related Links" +#: server_status.php:482 msgid "Related links:" msgstr "Liknande länkar:" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "per timme" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "per minut" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "per sekund" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Fråge-typ" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "#" -#: server_status.php:615 +#: server_status.php:623 #, php-format msgid "Network traffic since startup: %s" msgstr "Nätverkstrafik sedan start:%s" -#: server_status.php:623 +#: server_status.php:631 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Denna MySQL-server har varit igång i %s. Den startade den %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8335,17 +8359,17 @@ msgstr "" "Denna MySQL-server fungerar sommaster ochslave i " "replicerings process." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Denna MySQL server arbetar som master in replication process." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Denna MySQL server arbetar som slave in replication process." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8353,15 +8377,15 @@ msgstr "" "För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Replikeringsstatus" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Trafik" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8369,44 +8393,39 @@ msgstr "" "På en upptagen server kan byte-räknare spåra ur, så statistiken som " "rapporteras av MySQL-servern kan vara fel." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Mottagna" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Skickade" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Förbindelser" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "Max. samtidiga förbindelser" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Misslyckade försök" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Avbrutna" -#: server_status.php:784 -msgid "Processes" -msgstr "Processer" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 -#| msgid "Could not connect to MySQL server" +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Antalet misslyckade försök att ansluta till MySQL-servern." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8416,16 +8435,16 @@ msgstr "" "överskred värdet binlog_cache_size och använde en temporär fil för att lagra " "satser från transaktionen." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Antalet transaktioner som använde den temporära binära loggcachen." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Antalet anslutningsförsök (lyckade eller inte) till MySQL-servern." -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8437,11 +8456,11 @@ msgstr "" "kanske öka värdet tmp_table_size för att åstadkomma att temporära tabeller " "lagras i minne istället för på disk." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Antalet temporära filer som mysqld har skapat." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8449,7 +8468,7 @@ msgstr "" "Antalet temporära tabeller i minne skapade automatiskt av servern under " "utförande av satser." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8457,7 +8476,7 @@ msgstr "" "Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod " "(förmodligen dubblerad nyckel)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8465,23 +8484,23 @@ msgstr "" "Antalet INSERT DELAYED-hanteringstrådar i bruk. Varje tabell på vilken man " "använder INSERT DELAYED får sin egen tråd." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "Antalet skrivna rader med INSERT DELAYED." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Antalet utförda FLUSH-satser." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Antalet interna COMMIT-satser." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Antalet gånger en rad togs bort från en tabell." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8491,7 +8510,7 @@ msgstr "" "tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar " "antalet gånger tabeller har upptäckts." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8501,7 +8520,7 @@ msgstr "" "tyder det på att servern gör många helindex-avsökningar; t.ex. SELECT col1 " "FROM foo, under förutsättning att col1 är indexerad." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8510,7 +8529,7 @@ msgstr "" "är högt är det en bra indikation på att dina frågor och tabeller är riktigt " "indexerade." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8520,7 +8539,7 @@ msgstr "" "värde ökas om du frågar en indexkolumn med en urvalsbegränsning eller om du " "gör en indexavsökning." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8528,7 +8547,7 @@ msgstr "" "Antalet efterfrågningar att läsa den föregående raden i nyckelordning. Denna " "läsmetod används huvudsakligen för att optimera ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8540,7 +8559,7 @@ msgstr "" "Du har förmodligen många frågor som kräver att MySQL avsöker hela tabeller " "eller du har föreningar som inte använder nycklar på rätt sätt." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8552,35 +8571,35 @@ msgstr "" "dina tabeller inte är riktigt indexerade eller att dina frågor inte är " "skrivna för att dra nytta av de index du har." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Antalet interna ROLLBACK-satser." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Antalet efterfrågningar att uppdatera en rad i en tabell." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Antalet efterfrågningar att lägga till en rad i en tabell." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Antalet sidor innehållande data (orena eller rena)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Antalet sidor för närvarande orena." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antalet buffert-sidor som har efterfrågats om att bli rensade." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Antalet tomma sidor." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8590,7 +8609,7 @@ msgstr "" "läses eller skrivs eller som inte kan rensas eller tas bort av någon annan " "anledning." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8602,11 +8621,11 @@ msgstr "" "också beräknas som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Total storlek på buffert, i antal sidor." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8614,7 +8633,7 @@ msgstr "" "Antalet \"slumpmässiga\" läsningar i förväg som InnoDB initierat. Detta sker " "när en fråga ska avsöka en stor del av en tabell men i slumpmässig ordning." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8622,11 +8641,11 @@ msgstr "" "Antalet sekventiella läsningar i förväg som InnoDB initierat. Detta sker när " "InnoDB gör en sekventiell avsökning av en hel tabell." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8634,7 +8653,7 @@ msgstr "" "Antalet logiska läsningar som InnoDB inte kunde uppfylla från buffert och " "fick göra en enkelsidig läsning." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8648,51 +8667,51 @@ msgstr "" "fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta " "värde vara litet." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antalet skrivningar gjorda till InnoDB-bufferten." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Antalet fsync()-operationer hittills." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Nuvarande antal väntande fsync()-operationer." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Nuvarande antal väntande läsningar." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Nuvarande antal väntande skrivningar." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Mängden data läst hittills, i bytes." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Totalt antal läsningar av data." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Totalt antal skrivningar av data." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Mängden data skriven hittills, i bytes." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "Antalet sidor som har skrivits för doublewrite transaktioner" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "Antalet doublewrite transaktioner som har utförts.." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8700,35 +8719,35 @@ msgstr "" "Antalet väntanden pga loggbufferten var för liten och vi behövde vänta på " "att den skulle rensas innan kunde fortsätta." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Antalet skriv-begäran att skriva till logg." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Antalet fysiska skrivningar till loggfilen." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Antalet fsync()-skrivningar gjorda till loggfilen." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Antalet väntande fsync() av loggfil." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Väntande skrivningar till loggfil." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Antalet bytes skrivna till loggfilen." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Antalet skapade sidor." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8736,51 +8755,51 @@ msgstr "" "Den inkompilerade InnoDB-sidstorleken (standard 16kB). Många värden räknas i " "sidor; sidstorleken tillåter dem att enkelt omvandlas till bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Antalet lästa sidor." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Antalet skrivna sidor." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Antalet radlås som för närvarande väntas på." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Genomsnittlig tid för att skaffa ett radlås, i millisekunder." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid spenderad på att skaffa radlås, i millisekunder." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximal tid för att skaffa ett radlås, i millisekunder." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Antalet gånger ett radlås behövde väntas på." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "Antalet rader borttagna från InnoDB-tabeller." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "Antalet rader tillagda i InnoDB-tabeller." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "Antalet rader lästa från InnoDB-tabeller." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "Antalet rader uppdaterade i InnoDB-tabeller." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8788,7 +8807,7 @@ msgstr "" "Antalet nyckelblock i nyckelcachen som har ändrats men inte ännu överförts " "till disk. Det brukade vara känt som Not_flushed_key_blocks." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8796,7 +8815,7 @@ msgstr "" "Antalet oanvända block i nyckelcachen. Du kan använda detta värde för att " "avgöra hur stor del av nyckelcachen som används." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8805,11 +8824,11 @@ msgstr "" "Antalet använda block i nyckelcachen. Detta värde är ett högvattenmärke som " "indikerar maximala antalet block som någonsin använts vid ett tillfälle." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Antalet efterfrågningar att läsa ett nyckelblock från cachen." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8819,15 +8838,15 @@ msgstr "" "är stort, då är förmodligen ditt värde key_buffer_size för litet. Cachens " "missfrekvens kan beräknas som Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Antalet efterfrågningar att skriva ett nyckelblock till cachen." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8838,7 +8857,7 @@ msgstr "" "av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats " "ännu." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -8846,11 +8865,11 @@ msgstr "" "Det maximala antalet anslutningar som har använts samtidigt sedan servern " "startade." -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antalet rader som väntar på att skrivas i INSERT DELAYED-köer." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8858,19 +8877,19 @@ msgstr "" "Antalet tabeller som har öppnats. Om antalet öppnade tabeller är stort är " "förmodligen ditt tabellcache-värde för litet." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Antalet filer som är öppna." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antalet strömmar som är öppna (används huvudsakligen för loggning)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Antalet tabeller som är öppna." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -8879,19 +8898,19 @@ msgstr "" "Antalet fria minnesblock i frågecache. Högt antal kan tyda på fragmentering, " "vilket kan lösas genom att köra ett FLUSH QUERY CACHEN kommando." -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Mängden fritt minne för frågecache." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Antalet cache-träffar." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Antalet förfrågningar tillagda i cachen." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8903,7 +8922,7 @@ msgstr "" "storleken på frågecachen. Frågecachen använder strategin minst nyligen " "använd (LRU) för att bestämma vilka frågor som ska tas bort från cachen." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8911,19 +8930,19 @@ msgstr "" "Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga " "inställningen query_cache_type)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Antalet frågor registrerade i cachen." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Totala antalet block i frågecachen." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status för felsäker replikering (ännu inte implementerat)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8931,11 +8950,11 @@ msgstr "" "Antalet kopplingar som inte använder index. Om detta värde inte är 0, bör du " "noggrant kontrollera index för dina tabeller." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "Antalet kopplingar som använde en urvalssökning på en referenstabell." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8944,7 +8963,7 @@ msgstr "" "varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för " "dina tabeller.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8952,17 +8971,17 @@ msgstr "" "Antalet kopplingar som använde urval på den första tabellen. (Det är normalt " "inte kritiskt även om detta är stort.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" "Antalet kopplingar som gjorde en fullständig genomsökning av den första " "tabellen." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antalet temporära tabeller för närvarande öppna av slavens SQL-tråd." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8970,25 +8989,25 @@ msgstr "" "Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har " "omprövat transaktioner." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denna är ON ifall denna server är en slav som är förbunden till en " "huvudserver." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Antalet frågor som har tagit mer än slow_launch_time sekunder att skapa." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antalet frågor som har tagit mer än long_query_time sekunder." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8998,23 +9017,23 @@ msgstr "" "detta värde är stort bör du överväga att öka värdet i systemvariabeln " "sort_buffer_size." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Antalet sorteringar som gjordes med intervall." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Antalet sorterade rader." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Antalet sorteringar som har gjorts genom avsökning av tabellen." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Antalet gånger som ett tabellås förvärvades omedelbart." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9026,7 +9045,7 @@ msgstr "" "du först optimera dina frågor och antingen dela upp din tabell eller " "tabeller eller använda replikering." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9036,11 +9055,11 @@ msgstr "" "Threads_created/Connections. Om detta värde är rött bör du öka värdet " "thread_cache_size." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Antalet öppna förbindelser." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9052,7 +9071,7 @@ msgstr "" "(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra " "trådimplementering.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Antalet trådar som inte är vilande." @@ -9175,7 +9194,7 @@ msgstr "Servervariabler och inställningar" msgid "Session value" msgstr "Sessionsvärde" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Globalt värde" @@ -9441,8 +9460,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - %" -"shost autentisering%s inställningarna och %strusted proxies listan%s. Dock " +"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - " +"%shost autentisering%s inställningarna och %strusted proxies listan%s. Dock " "kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där " "tusentals användare, inklusive dig, är anslutna till" @@ -9613,7 +9632,6 @@ msgid "Line" msgstr "Linje" #: tbl_chart.php:88 -#| msgid "Inline" msgid "Spline" msgstr "ISpårning" @@ -9626,7 +9644,6 @@ msgid "Stacked" msgstr "Staplade" #: tbl_chart.php:94 -#| msgid "Report title:" msgid "Chart title" msgstr "Diagramtitel" @@ -9635,32 +9652,26 @@ msgid "X-Axis:" msgstr "X-axel:" #: tbl_chart.php:113 -#| msgid "SQL queries" msgid "Series:" msgstr "Serie:" #: tbl_chart.php:115 -#| msgid "Textarea columns" msgid "The remaining columns" msgstr "Återstående kolumner" #: tbl_chart.php:128 -#| msgid "X Axis label" msgid "X-Axis label:" msgstr "X-axel etikett" #: tbl_chart.php:128 -#| msgid "Value" msgid "X Values" msgstr "X värde" #: tbl_chart.php:129 -#| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Y-axel etikett" #: tbl_chart.php:129 -#| msgid "Value" msgid "Y Values" msgstr "Y värden" diff --git a/po/ta.po b/po/ta.po index a170c79d76..ea5f914671 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" +"Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -47,7 +47,7 @@ msgstr "" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "" @@ -164,7 +164,7 @@ msgstr "" msgid "Null" msgstr "" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -193,7 +193,7 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -209,7 +209,7 @@ msgstr "" msgid "No" msgstr "" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -269,7 +269,7 @@ msgstr "" msgid "Rename database to" msgstr "" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "" @@ -369,7 +369,7 @@ msgstr "" msgid "Size" msgstr "" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -582,61 +582,61 @@ msgstr "" msgid "Inside column:" msgstr "" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -644,23 +644,23 @@ msgstr "" msgid "With selected:" msgstr "" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -668,56 +668,56 @@ msgstr "" msgid "Export" msgstr "" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Display table filter" msgid "Replace table prefix" msgstr "கருதிட்குள் சேர்க்க" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "" @@ -732,7 +732,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -750,7 +750,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -848,8 +848,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1032,147 +1032,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -msgid "Live traffic chart" -msgstr "" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -msgid "Live query chart" -msgstr "" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "விலக்கு" - -#: js/messages.php:83 -msgid "Loading" -msgstr "" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "" - -#: js/messages.php:95 -#, fuzzy -#| msgid "You have added a new user." -msgid "Table must have at least one column" -msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "" - -#: js/messages.php:104 -msgid "Searching" -msgstr "" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Inline" -msgid "Inline Edit" -msgstr "உள்வரிசை" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1181,7 +1041,183 @@ msgstr "உள்வரிசை" msgid "Edit" msgstr "" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +msgid "Live query chart" +msgstr "" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +msgid "Server traffic (in kB)" +msgstr "" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "" + +#: js/messages.php:85 +msgid "Connections / Processes" +msgstr "" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +msgid "Issued queries" +msgstr "" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "விலக்கு" + +#: js/messages.php:96 +msgid "Loading" +msgstr "" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "" + +#: js/messages.php:108 +#, fuzzy +#| msgid "You have added a new user." +msgid "Table must have at least one column" +msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "" + +#: js/messages.php:117 +msgid "Searching" +msgstr "" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Inline" +msgid "Inline Edit" +msgstr "உள்வரிசை" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1189,69 +1225,69 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "திங்கள்" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1259,28 +1295,28 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "புதிய பதிப்பை பார்வையிடவும்" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1288,94 +1324,94 @@ msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Jan" msgid "January" msgstr "தை" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "பங்குனி" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "சித்திரை" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "வைகாசி" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ஆணி" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ஆடி" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "ஆவணி" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ஐப்பசி" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1383,174 +1419,174 @@ msgid "May" msgstr "வைகாசி" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "மார்கழி" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "ஞாயிறு" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "திங்கள்" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "செவ்வாய்" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "வெள்ளி" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "திங்கள்" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "செவ்வாய்" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "புதன்" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "வியாழன்" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "வெள்ளி" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "சனி" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "ஞாயிறு" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "திங்கள்" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "செவ்வாய்" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "புதன்" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "வியாழன்" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "வெள்ளி" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "சனி" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "" @@ -1774,8 +1810,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s " "பயன்படுத்தலாம்" @@ -1914,7 +1950,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "" @@ -2038,7 +2074,7 @@ msgid "Documentation" msgstr "" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "" @@ -2067,7 +2103,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4603,8 +4639,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4622,7 +4658,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "" @@ -4845,7 +4881,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "" @@ -4933,7 +4969,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "" @@ -5274,8 +5310,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5376,7 +5412,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "" @@ -6056,13 +6092,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6287,12 +6323,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "" @@ -6552,7 +6588,7 @@ msgstr "" msgid "+ Add a new value" msgstr "புதிய பயனாளரை சேர்க்க" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "" @@ -6705,7 +6741,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "" @@ -7118,17 +7154,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "" @@ -7510,8 +7546,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7631,7 +7667,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -7764,245 +7800,237 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "" -#: server_status.php:371 +#: server_status.php:385 msgid "Server traffic" msgstr "" -#: server_status.php:372 -msgid "Query statistics" -msgstr "" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 msgid "second" msgstr "" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 msgid "seconds" msgstr "" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 msgid "minutes" msgstr "" -#: server_status.php:446 +#: server_status.php:460 msgid "Containing the word:" msgstr "" -#: server_status.php:451 +#: server_status.php:465 msgid "Show only alert values" msgstr "" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 msgid "Related links:" msgstr "" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "நிறுத்தப்பட்டுள்ளது" -#: server_status.php:784 -msgid "Processes" -msgstr "" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "" -#: server_status.php:846 +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8010,78 +8038,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8089,7 +8117,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8097,42 +8125,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8140,33 +8168,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8175,227 +8203,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8403,99 +8431,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8503,18 +8531,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8522,7 +8550,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -8643,7 +8671,7 @@ msgstr "" msgid "Session value" msgstr "" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "" diff --git a/po/te.po b/po/te.po index fdb8ae00d3..a088544992 100644 --- a/po/te.po +++ b/po/te.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" +"Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -48,7 +48,7 @@ msgstr "శోధించు" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "వివరణ" @@ -168,7 +168,7 @@ msgstr "రకం" msgid "Null" msgstr "" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -197,7 +197,7 @@ msgstr "" msgid "Comments" msgstr "వ్యాఖ్యలు" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -213,7 +213,7 @@ msgstr "వ్యాఖ్యలు" msgid "No" msgstr "కాదు" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -275,7 +275,7 @@ msgid "Rename database to" msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి" # మొదటి అనువాదము -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "ఆజ్ఞ" @@ -377,7 +377,7 @@ msgid "Size" msgstr "పరిమాణం" # మొదటి అనువాదము -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "వాడుకలో ఉన్నది" @@ -403,7 +403,7 @@ msgstr "చివరి మార్పు" msgid "Last check" msgstr "చివరి చూపు" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -590,63 +590,63 @@ msgstr "" msgid "Inside column:" msgstr "" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" # మొదటి అనువాదము -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "చూపుము" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "" # మొదటి అనువాదము -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "మొత్తము" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -654,23 +654,23 @@ msgstr "" msgid "With selected:" msgstr "" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -678,57 +678,57 @@ msgstr "" msgid "Export" msgstr "ఎగుమతి" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "" # మొదటి అనువాదము -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "ఖాళీ" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Display table filter" msgid "Replace table prefix" msgstr "పట్టిక వ్యాఖ్యలు" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "" @@ -744,7 +744,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -762,7 +762,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "స్థితి" @@ -860,8 +860,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1048,168 +1048,7 @@ msgstr "" msgid "Close" msgstr "మూసివేయి" -#: js/messages.php:64 server_status.php:397 -msgid "Live traffic chart" -msgstr "" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -msgid "Live query chart" -msgstr "" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "మొత్తం" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "రద్దుచేయి" - -#: js/messages.php:83 -msgid "Loading" -msgstr "" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "సరే" - -# మొదటి అనువాదము -#: js/messages.php:91 -#, fuzzy -#| msgid "Database" -msgid "Renaming Databases" -msgstr "డేటాబేస్" - -# మొదటి అనువాదము -#: js/messages.php:92 -#, fuzzy -#| msgid "Database" -msgid "Reload Database" -msgstr "డేటాబేస్" - -# మొదటి అనువాదము -#: js/messages.php:93 -#, fuzzy -#| msgid "Database" -msgid "Copying Database" -msgstr "డేటాబేస్" - -# మొదటి అనువాదము -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "అక్షరమాల" - -# మొదటి అనువాదము -#: js/messages.php:95 -#, fuzzy -#| msgid "You have added a new user." -msgid "Table must have at least one column" -msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు" - -# మొదటి అనువాదము -#: js/messages.php:96 -#, fuzzy -#| msgid "Create a page" -msgid "Create Table" -msgstr "పుటని సృష్టించు" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "పట్టికల్ని వాడు" - -# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "శోధించు" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Delete" -msgid "Deleting" -msgstr "తొలగించు" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1218,7 +1057,208 @@ msgstr "" msgid "Edit" msgstr "మార్చు" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +msgid "Live query chart" +msgstr "" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "మొత్తం" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +msgid "Server traffic (in kB)" +msgstr "" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "అనుసంధానాలు" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +msgid "Issued queries" +msgstr "" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "గణాంకాలను చూపించు" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "రద్దుచేయి" + +#: js/messages.php:96 +msgid "Loading" +msgstr "" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "సరే" + +# మొదటి అనువాదము +#: js/messages.php:104 +#, fuzzy +#| msgid "Database" +msgid "Renaming Databases" +msgstr "డేటాబేస్" + +# మొదటి అనువాదము +#: js/messages.php:105 +#, fuzzy +#| msgid "Database" +msgid "Reload Database" +msgstr "డేటాబేస్" + +# మొదటి అనువాదము +#: js/messages.php:106 +#, fuzzy +#| msgid "Database" +msgid "Copying Database" +msgstr "డేటాబేస్" + +# మొదటి అనువాదము +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "అక్షరమాల" + +# మొదటి అనువాదము +#: js/messages.php:108 +#, fuzzy +#| msgid "You have added a new user." +msgid "Table must have at least one column" +msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు" + +# మొదటి అనువాదము +#: js/messages.php:109 +#, fuzzy +#| msgid "Create a page" +msgid "Create Table" +msgstr "పుటని సృష్టించు" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "పట్టికల్ని వాడు" + +# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "శోధించు" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "తొలగించు" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1227,67 +1267,67 @@ msgid "Save" msgstr "భద్రపరచు" # మొదటి అనువాదము -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "దాచు" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "సంకేతపదాన్ని మార్చు" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "మరిన్ని" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1295,28 +1335,28 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "" # మొదటి అనువాదము #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "గత" # మొదటి అనువాదము #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1324,232 +1364,232 @@ msgid "Next" msgstr "తదుపరి" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "ఈరోజు" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "జనవరి" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "ఫిబ్రవరి" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "మార్చి" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "ఏప్రిల్" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "మే" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "జూన్" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "జూలై" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "ఆగస్ట్" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "సెప్టెంబర్" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "అక్టోబర్" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "నవంబర్" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "డిసెంబర్" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "డిసెం" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "ఆదివారం" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "సోమవారం" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "మంగళవారం" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "బుధవారం" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "గురువారం" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "శుక్రవారం" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "శనివారం" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "శని" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "ఆ" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "సో" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "మం" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "బు" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "గు" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "శు" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "శ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "వారం" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "గంట" # మొదటి అనువాదము -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "నిమిషం" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "క్షణం" @@ -1778,8 +1818,8 @@ msgstr "%sకి స్వాగతం" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1921,7 +1961,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "పట్టికలు" @@ -2046,7 +2086,7 @@ msgid "Documentation" msgstr "పత్రావళి" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "" @@ -2075,7 +2115,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4633,8 +4673,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4652,7 +4692,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "ఏమీలేదు" @@ -4875,7 +4915,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "" @@ -4967,7 +5007,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "" @@ -5312,8 +5352,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5412,7 +5452,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "" @@ -6110,13 +6150,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "విలువ" @@ -6341,12 +6381,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "" @@ -6611,7 +6651,7 @@ msgstr "" msgid "+ Add a new value" msgstr "క్రొత్త వినియోగదారుని చేర్చు" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "సమయం" @@ -6770,7 +6810,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "వాడుకరి" @@ -7201,17 +7241,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "దస్త్రాలు" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "" @@ -7595,8 +7635,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7721,7 +7761,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -7854,257 +7894,247 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "" -#: server_status.php:371 +#: server_status.php:385 msgid "Server traffic" msgstr "" -#: server_status.php:372 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "గణాంకాలను చూపించు" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "క్షణం" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "క్షణం" # మొదటి అనువాదము -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "నిమిషం" -#: server_status.php:446 +#: server_status.php:460 msgid "Containing the word:" msgstr "" -#: server_status.php:451 +#: server_status.php:465 msgid "Show only alert values" msgstr "" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "సంబంధాలు" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "గంటకి" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "నిమిషానికి" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "క్షణానికి" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "" # మొదటి అనువాదము -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "పంపించు" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "అనుసంధానాలు" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "" -#: server_status.php:784 -msgid "Processes" -msgstr "" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "" -#: server_status.php:846 +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8112,78 +8142,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8191,7 +8221,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8199,42 +8229,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8242,33 +8272,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8277,230 +8307,230 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" # మొదటి అనువాదము -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "సృష్టించబడిన పుటల సంఖ్య" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" # మొదటి అనువాదము -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "చదివిన పుటల సంఖ్య" # మొదటి అనువాదము -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "వ్రాసిన పుటల సంఖ్య" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8508,99 +8538,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8608,18 +8638,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8627,7 +8657,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -8751,7 +8781,7 @@ msgstr "" msgid "Session value" msgstr "" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "సార్వత్రిక విలువ" diff --git a/po/th.po b/po/th.po index aa4820f284..429b49d006 100644 --- a/po/th.po +++ b/po/th.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -45,7 +45,7 @@ msgstr "ค้นหา" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -82,7 +82,7 @@ msgstr "ชื่อคีย์" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "รายละเอียด" @@ -164,7 +164,7 @@ msgstr "ชนิด" msgid "Null" msgstr "ว่างเปล่า (null)" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -193,7 +193,7 @@ msgstr "เชื่อมไปยัง" msgid "Comments" msgstr "หมายเหตุ" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -209,7 +209,7 @@ msgstr "หมายเหตุ" msgid "No" msgstr "ไม่" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -269,7 +269,7 @@ msgstr "คัดลอกฐานข้อมูล %s ไปเก็บใ msgid "Rename database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "คำสั่ง" @@ -369,7 +369,7 @@ msgstr "แถว" msgid "Size" msgstr "ขนาด" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "ใช้อยู่" @@ -395,7 +395,7 @@ msgstr "ปรับปรุงครั้งสุดท้ายเมื่ msgid "Last check" msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -586,63 +586,63 @@ msgstr "ในตาราง:" msgid "Inside column:" msgstr "ในคอลัมน์:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "การติดตามเริ่มทำงานแล้ว" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "หยุดการติดตามแล้ว" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "วิว" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "การทำข้อมูลซ้ำไปไว้อีกที่หนึ่ง" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "ผลรวม" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "เซิร์ฟเวอร์ MySQL นี้ใช้ storage engine ชื่อ %s เป็นค่าเริ่มต้น" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -650,23 +650,23 @@ msgstr "เซิร์ฟเวอร์ MySQL นี้ใช้ storage engin msgid "With selected:" msgstr "ทำกับที่เลือก:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "เลือกทั้งหมด" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "ไม่เลือกเลย" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "ตรวจสอบตารางที่มี overhead" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -674,58 +674,58 @@ msgstr "ตรวจสอบตารางที่มี overhead" msgid "Export" msgstr "ส่งออก" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "แสดง" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "ลบข้อมูล" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "โยนทิ้ง" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "ตรวจสอบตาราง" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "ปรับแต่งตาราง" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "ซ่อมแซมตาราง" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "วิเคราะห์ตาราง" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "เขียนทับด้วยข้อมูลจากไฟล์" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "เขียนทับด้วยข้อมูลจากไฟล์" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "พจนานุกรมข้อมูล" @@ -740,7 +740,7 @@ msgstr "ตารางที่ถูกติดตาม" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -759,7 +759,7 @@ msgstr "สร้าง" msgid "Updated" msgstr "ปรับปรุงแล้ว" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "สถานะ" @@ -857,8 +857,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1049,171 +1049,7 @@ msgstr "ถอนผู้ใช้ที่เลือก" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "ตัวเลือกเซิร์ฟเวอร์" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "คำค้น SQL" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "รวม" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "โลคอล" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "โพรเซส" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "ตกลง" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" - -#: js/messages.php:93 -#, fuzzy -msgid "Copying Database" -msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "ชุดตัวอักษร" - -#: js/messages.php:95 -#, fuzzy -#| msgid "You have to choose at least one column to display" -msgid "Table must have at least one column" -msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์" - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "เริ่มหน้าใหม่" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "ใช้ตาราง" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "ค้นหา" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "คำค้น SQL" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "คำค้น SQL" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "เปิดดู" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "กำลังลบ %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "คำค้น SQL" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "คำค้น SQL" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1222,7 +1058,213 @@ msgstr "" msgid "Edit" msgstr "แก้ไข" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "ตัวเลือกเซิร์ฟเวอร์" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "คำค้น SQL" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "รวม" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "ตัวเลือกเซิร์ฟเวอร์" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "โพรเซส" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "การเชื่อมต่อ" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "คำค้น SQL" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "สถิติของแถว" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "โลคอล" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "โพรเซส" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "ตกลง" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" + +#: js/messages.php:106 +#, fuzzy +msgid "Copying Database" +msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "ชุดตัวอักษร" + +#: js/messages.php:108 +#, fuzzy +#| msgid "You have to choose at least one column to display" +msgid "Table must have at least one column" +msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์" + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "เริ่มหน้าใหม่" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "ใช้ตาราง" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "ค้นหา" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "คำค้น SQL" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "คำค้น SQL" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "เปิดดู" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "กำลังลบ %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "คำค้น SQL" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "คำค้น SQL" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1230,78 +1272,78 @@ msgstr "แก้ไข" msgid "Save" msgstr "บันทึก" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "คำค้น SQL" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "คำค้น SQL" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "ไม่สนใจ" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "เลือกฟิลด์ที่ต้องการแสดง" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "เปลี่ยนรหัสผ่าน" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "สร้างโดย" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "เปลี่ยนรหัสผ่าน" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "จ." -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1309,31 +1351,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "ไม่มีฐานข้อมูล" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "None" msgid "Done" msgstr "ไม่มี" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "ก่อนหน้า" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1341,96 +1383,96 @@ msgid "Next" msgstr "ต่อไป" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "รวม" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr " ข้อมูลไบนารี " -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "มี.ค." -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "เม.ย." -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "พ.ค." -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "มิ.ย." -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ก.ค." -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "ส.ค." -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ต.ค." -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1438,176 +1480,176 @@ msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "ธ.ค." -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "อา." -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "จ." -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "อ." -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "ศ." -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "อา." #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "ส." #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "อา." #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "จ." #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "อ." #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "พ." #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "พฤ." #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "ศ." #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "ส." #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ใช้อยู่" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1837,8 +1879,8 @@ msgstr "%s ยินดีต้อนรับ" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1972,7 +2014,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "ตาราง" @@ -2103,7 +2145,7 @@ msgid "Documentation" msgstr "เอกสารอ้างอิง" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "คำค้น SQL" @@ -2132,7 +2174,7 @@ msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "เรียกใหม่" @@ -4792,8 +4834,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4813,7 +4855,7 @@ msgstr "บีบอัดข้อมูล" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "ไม่มี" @@ -5063,7 +5105,7 @@ msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "ฆ่าทิ้ง" @@ -5154,7 +5196,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "สถานะของ InnoDB" @@ -5499,8 +5541,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5620,7 +5662,7 @@ msgstr "MIME-types ที่มีอยู่" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "โฮสต์" @@ -6318,13 +6360,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "ตัวแปร" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "ค่า" @@ -6564,13 +6606,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr " ข้อมูลไบนารี " #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "ตัวแปร" @@ -6860,7 +6902,7 @@ msgstr "" msgid "+ Add a new value" msgstr "เพิ่มผู้ใช้ใหม่" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "เวลา" @@ -7028,7 +7070,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "ผู้ใช้" @@ -7488,18 +7530,18 @@ msgstr "ไม่มีตาราง \"%s\"!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "จำนวนฟิลด์" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "ตัดทอนคำค้นที่แสดง" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "แสดงคำค้นแบบเต็ม" @@ -7896,8 +7938,8 @@ msgstr "โยนฐานข้อมูลที่มีชื่อเดี msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -8022,7 +8064,7 @@ msgstr "สิทธิได้ถูกเรียกใช้ใหม่เ msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8161,265 +8203,256 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 #, fuzzy msgid "Query cache" msgstr "ชนิดคำค้น" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 #, fuzzy msgid "Delayed inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 #, fuzzy msgid "Show open tables" msgstr "แสดงตาราง" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "ข้อมูลรันไทม์" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "สถิติของแถว" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "เรียกใหม่" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "ต่อวินาที" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "ต่อวินาที" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "ใช้อยู่" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy msgid "Show only alert values" msgstr "แสดงตาราง" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "รีเลชัน" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "ต่อชั่วโมง" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "ต่อนาที" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "ต่อวินาที" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "ชนิดคำค้น" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "เซิร์ฟเวอร์ MySQL นี้รันมาเป็นเวลา %s. เริ่มตอน %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "การจราจร" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "ได้รับ" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "ถูกส่ง" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "การเชื่อมต่อ" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "ความพยายามล้มเหลว" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "ยกเลิก" -#: server_status.php:784 -msgid "Processes" -msgstr "โพรเซส" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8427,78 +8460,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8506,7 +8539,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8514,42 +8547,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8557,33 +8590,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8592,227 +8625,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8820,99 +8853,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8920,18 +8953,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8939,7 +8972,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -9062,7 +9095,7 @@ msgstr "ตัวแปร และค่ากำหนด ของเซิ msgid "Session value" msgstr "ค่าเซสชั่น" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "ค่าแบบโกลบอล" @@ -10145,8 +10178,8 @@ msgstr "เปลี่ยนชื่อตารางเป็น" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%" -#~ "s" +#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere" +#~ "%s" #~ msgid "No tables" #~ msgstr "ไม่มีตาราง" diff --git a/po/tr.po b/po/tr.po index 058b9d5c29..2d132dceaa 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-16 21:00+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" @@ -47,7 +47,7 @@ msgstr "Ara" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Anahtar adı" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Açıklama" @@ -166,7 +166,7 @@ msgstr "Türü" msgid "Null" msgstr "Boş" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Bağlantı verilen" msgid "Comments" msgstr "Yorumlar" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Yorumlar" msgid "No" msgstr "Hayır" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "%s veritabanı %s veritabanına kopyalandı" msgid "Rename database to" msgstr "Veritabanını şuna yeniden adlandır" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Komut" @@ -373,7 +373,7 @@ msgstr "Satır" msgid "Size" msgstr "Boyut" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "kullanımda" @@ -399,7 +399,7 @@ msgstr "Son güncellenme" msgid "Last check" msgstr "Son kontrol" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -579,62 +579,62 @@ msgstr "Tablo içindeki(ler):" msgid "Inside column:" msgstr "İç sütun:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "Veritabanında tablolar bulunamadı" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "%s tablosu boşaltıldı" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "%s görünümü kaldırıldı" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "%s tablosu kaldırıldı" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "İzleme aktif." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "İzleme aktif değil." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Görünüm" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Kopya Etme" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Toplam" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -642,23 +642,23 @@ msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur." msgid "With selected:" msgstr "Seçilileri:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Tümünü Seç" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Hiçbirini Seçme" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -666,54 +666,54 @@ msgstr "Ek yükü olan tabloları kontrol et" msgid "Export" msgstr "Dışa Aktar" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Baskı görünümü" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Boşalt" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Kaldır" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Tabloyu kontrol et" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Tabloyu uyarla" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Tabloyu onar" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Tabloyu incele" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "Tabloya ön ek ekle" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "Tablo ön ekini değiştir" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "Tabloyu ön eki ile kopyala" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Veri sözlüğü" @@ -728,7 +728,7 @@ msgstr "İzlenen tablolar" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -746,7 +746,7 @@ msgstr "Oluşturuldu" msgid "Updated" msgstr "Güncellendi" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Durum" @@ -846,8 +846,8 @@ msgstr "Döküm, %s dosyasına kaydedildi." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu " "bulmak için %sbelgeden%s yararlanın." @@ -1006,7 +1006,6 @@ msgstr "Bu bir sayı değil!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#| msgid "Log file count" msgid "Total count" msgstr "Toplam sayı" @@ -1044,147 +1043,7 @@ msgstr "Seçili Kullanıcılar Kaldırılıyor" msgid "Close" msgstr "Kapat" -#: js/messages.php:64 server_status.php:397 -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Canlı trafik çizelgesi" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "Canlı bağ./işlem çizelgesi" - -#: js/messages.php:66 server_status.php:429 -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "Canlı sorgu çizelgesi" - -#: js/messages.php:68 -msgid "Static data" -msgstr "Sabit veri" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Toplam" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "Diğer" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "İptal" - -#: js/messages.php:83 -msgid "Loading" -msgstr "Yükleniyor" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "İstek İşleniyor" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "İstek İşlemede Hata" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "Sütun Kaldırılıyor" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "Birincil Anahtar Ekleniyor" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "TAMAM" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Veritabanı Yeniden Adlandırılıyor" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Veritabanını Yeniden Yükle" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Veritabanı Kopyalanıyor" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Karakter Grubu Değiştiriliyor" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Tablonun en az bir sütunu olmalı" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Tablo Oluştur" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "Tablo Ekle" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Aranıyor" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "Arama sonuçlarını gizle" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "Arama sonuçlarını göster" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "Gözatılıyor" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "Siliniyor" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" -"Not: Eğer dosya çoklu tablolar içeriyorsa, bunlar bir tane içinde " -"birleştirilecektir" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Sorgu kutusunu gizle" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Sorgu kutusunu göster" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Sıralı Düzenleme" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1193,7 +1052,187 @@ msgstr "Sıralı Düzenleme" msgid "Edit" msgstr "Düzenle" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +msgid "Live traffic chart" +msgstr "Canlı trafik çizelgesi" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "Canlı bağ./işlem çizelgesi" + +#: js/messages.php:68 server_status.php:443 +msgid "Live query chart" +msgstr "Canlı sorgu çizelgesi" + +#: js/messages.php:70 +msgid "Static data" +msgstr "Sabit veri" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Toplam" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "Diğer" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server traffic" +msgid "Server traffic (in kB)" +msgstr "Sunucu trafiği" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "İşlemler" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Bağlantılar" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL sorguları" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Sorgu istatistikleri" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "İptal" + +#: js/messages.php:96 +msgid "Loading" +msgstr "Yükleniyor" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "İstek İşleniyor" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "İstek İşlemede Hata" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "Sütun Kaldırılıyor" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "Birincil Anahtar Ekleniyor" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "TAMAM" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Veritabanı Yeniden Adlandırılıyor" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Veritabanını Yeniden Yükle" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Veritabanı Kopyalanıyor" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Karakter Grubu Değiştiriliyor" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Tablonun en az bir sütunu olmalı" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Tablo Oluştur" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "Tablo Ekle" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Aranıyor" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "Arama sonuçlarını gizle" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "Arama sonuçlarını göster" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "Gözatılıyor" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "Siliniyor" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" +"Not: Eğer dosya çoklu tablolar içeriyorsa, bunlar bir tane içinde " +"birleştirilecektir" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Sorgu kutusunu gizle" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Sorgu kutusunu göster" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Sıralı Düzenleme" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1201,41 +1240,41 @@ msgstr "Düzenle" msgid "Save" msgstr "Kaydet" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Gizle" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Arama kriterini gizle" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Arama kriterini göster" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Yoksay" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Kaynak gösterilen anahtarı seç" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Dış Anahtarı seç" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Göstermek için sütun seçin" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1243,56 +1282,56 @@ msgstr "" "Değişiklikleri yerleşime kaydetmediniz. Eğer bunları kaydetmezseniz, " "kaybolacaklardır. Devam etmek istiyor musunuz?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "Sütun için bir seçenek ekle " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Parola üret" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Üret" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Parola Değiştir" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Daha Fazla" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %" -"s, %s tarihinde yayınlandı." +"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm " +"%s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", son sağlam sürüm:" -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "güncel" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Bitti" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Önceki" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1300,231 +1339,231 @@ msgid "Next" msgstr "Sonraki" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Bugün" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Ocak" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Şubat" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Mart" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Nisan" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Mayıs" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Haziran" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Temmuz" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Ağustos" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Eylül" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Ekim" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Kasım" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Ara" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Pazar" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Pazartesi" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Salı" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "Çarşamba" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "Perşembe" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "Cuma" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "Cumartesi" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Sal" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Cum" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Ctesi" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Pz" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Pt" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Ça" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Cu" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Ct" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "Hs" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "Saat" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Dakika" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Saniye" @@ -1750,8 +1789,8 @@ msgstr "%s'e Hoş Geldiniz" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir " "tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz." @@ -1895,7 +1934,7 @@ msgstr "paylaşılmış" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tablolar" @@ -2029,7 +2068,7 @@ msgid "Documentation" msgstr "Belgeler" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL sorgusu" @@ -2058,7 +2097,7 @@ msgid "Create PHP Code" msgstr "PHP Kodu oluştur" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Yenile" @@ -4785,8 +4824,8 @@ msgstr ", @TABLE@ tablo adı olacaktır" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman " "biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler " @@ -4808,7 +4847,7 @@ msgstr "Sıkıştırma:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Yok" @@ -4942,7 +4981,6 @@ msgid "Language" msgstr "Dil" #: libraries/display_tbl.lib.php:397 -#| msgid "Textarea columns" msgid "Restore column order" msgstr "Sütun düzenini geri yükle" @@ -4951,7 +4989,6 @@ msgid "Drag to reorder" msgstr "Yen.düzenleme için sürükle" #: libraries/display_tbl.lib.php:412 -#| msgid "Click to select" msgid "Click to sort" msgstr "Sıralamak için tıklayın" @@ -5045,7 +5082,7 @@ msgid "The row has been deleted" msgstr "Satır silindi" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Sonlandır" @@ -5135,7 +5172,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Ara Bellek Havuzu" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB Durumu" @@ -5537,8 +5574,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi " "bulunabilir." @@ -5639,7 +5676,7 @@ msgstr "MIME türlerini göster" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Anamakine" @@ -6360,13 +6397,13 @@ msgid "Slave status" msgstr "Slave durumu" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Değişken" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Değer" @@ -6595,12 +6632,12 @@ msgid "Synchronize" msgstr "Eşitle" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binari günlüğü" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Değişkenler" @@ -6883,7 +6920,7 @@ msgstr "PARTITION tanımı" msgid "+ Add a new value" msgstr "+ Yeni bir değer ekle" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Süre" @@ -7082,7 +7119,7 @@ msgid "Protocol version" msgstr "Protokol sürümü" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Kullanıcı" @@ -7531,17 +7568,17 @@ msgstr "Dosya mevcut değil" msgid "Select binary log to view" msgstr "Görüntülemek için binari günlüğünü seçin" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Dosyalar" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Gösterilen Sorguları Kısalt" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Tüm Sorguları Göster" @@ -7938,8 +7975,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki " "tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse " @@ -8066,7 +8103,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Bu sunucu kopya etme işlemi sırasında master sunucu olarak yapılandırıldı." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Master durumunu göster" @@ -8216,168 +8253,155 @@ msgstr "" "Bu sunucu, kopya etme işlemi sırasında slave sunucu olarak yapılandırılmaz. " "Bunu yapılandırmak istiyor musunuz?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "%s işlemi başarılı olarak sonlandırıldı." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s işlemini sonlandıramadı. Muhtemelen zaten kapatılmış." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Denetimci" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Sorgu önbelleği" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "İşlemler" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Geçici veri" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Gecikmiş eklemeler" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Anahtar önbelleği" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Birleştirmeler" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Sıralama" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "İşlem koordinatörü" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Tüm tabloları temizle (kapat)" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Açık tabloları göster" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Slave anamakineleri göster" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Slave durumunu göster" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Sorgu önbelleğini temizle" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Çalışma Süresi Bilgisi" -#: server_status.php:371 -#| msgid "Server Choice" +#: server_status.php:385 msgid "Server traffic" msgstr "Sunucu trafiği" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Sorgu istatistikleri" - -#: server_status.php:373 -#| msgid "See slave status table" +#: server_status.php:387 msgid "All status variables" msgstr "Tüm durum değişkenleri" -#: server_status.php:383 server_status.php:416 -#| msgid "Refresh" +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "Oranı yenile" -#: server_status.php:384 server_status.php:417 -#| msgid "Second" +#: server_status.php:398 server_status.php:431 msgid "second" msgstr "saniye" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 -#| msgid "Second" +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 msgid "seconds" msgstr "saniye" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 -#| msgid "Minute" +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 msgid "minutes" msgstr "dakika" -#: server_status.php:446 -#| msgid "Do not change the password" +#: server_status.php:460 msgid "Containing the word:" msgstr "İçerdiği kelime:" -#: server_status.php:451 -#| msgid "Show open tables" +#: server_status.php:465 msgid "Show only alert values" msgstr "Sadece uyarı değerlerini göster" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "Kategoriye göre süz..." -#: server_status.php:468 -#| msgid "Related Links" +#: server_status.php:482 msgid "Related links:" msgstr "İlgili bağlantılar:" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "saat başına" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "dakika başına" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "saniye başına" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Sorgu türü" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "#" -#: server_status.php:615 +#: server_status.php:623 #, php-format msgid "Network traffic since startup: %s" msgstr "Başlangıçtan bu yana ağ trafiği: %s" -#: server_status.php:623 +#: server_status.php:631 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Bu MySQL sunucusunun çalışma süresi: %s. Başlatıldığı zaman: %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." @@ -8385,19 +8409,19 @@ msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında master ve " "slave olarak çalışır." -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında master olarak " "çalışır." -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında slave olarak " "çalışır." -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8405,15 +8429,15 @@ msgstr "" "Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Kopya etme durumu" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Trafik" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8421,44 +8445,39 @@ msgstr "" "Meşgul sunucu üzerinde, bayt sayaçları aşırı işleyebilir, bu yüzden MySQL " "sunucusu tarafından raporlanan istatistikler doğru olmayabilir." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Alınan" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Gönderilen" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Bağlantılar" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "En fazla eşzamanlı bağlantı" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Başarısız deneme" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "İptal edilen" -#: server_status.php:784 -msgid "Processes" -msgstr "İşlemler" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 -#| msgid "Whether to enable SSL for connection to MySQL server." +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL sunucusuna bağlanmak için başarısız girişim sayısı." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8468,16 +8487,16 @@ msgstr "" "binlog_cache_size değerini aştı ve işlemdeki ifadeleri depolamak için geçici " "dosya kullandı." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısı." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL sunucusuna bağlantı girişimi (başarılı ya da değil) sayısı." -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8489,11 +8508,11 @@ msgstr "" "büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olamasına " "sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8501,7 +8520,7 @@ msgstr "" "İfadeler çalıştırılırken sunucu tarafından bellek içindeki geçici tabloların " "sayısı otomatik olarak oluşturuldu." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8509,7 +8528,7 @@ msgstr "" "INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır " "sayısı (muhtemelen kopya anahtar)." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8517,23 +8536,23 @@ msgstr "" "Kullanımda olan INSERT DELAYED işleticisi işlem sayısı. INSERT DELAYED " "komutunu kullanan her farklı tablodan biri kendi işlemini alır." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED satır yazımı sayısıdır." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Dahili COMMIT ifadesi sayısıdır." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Tablodan satırın kaç kez silindiği sayısıdır." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8543,7 +8562,7 @@ msgstr "" "motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez " "keşfedildiğini gösterir." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8553,7 +8572,7 @@ msgstr "" "sunucunun çok fazla indeks taraması yapıyor olduğunu gösterir; örneğin, " "SELECT col1 FROM foo, anlaşılıyor ki col1 indekslenmiş." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8562,7 +8581,7 @@ msgstr "" "sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi " "olduğu belirtisidir." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8572,7 +8591,7 @@ msgstr "" "aralık ile indeks sütununu sorguluyorsanız ya da indeks taraması " "yapıyorsanız, bu arttırılan miktardır." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8580,7 +8599,7 @@ msgstr "" "Anahtar sırasında önceki satırı okumak için istek sayısıdır. Bu okuma " "yöntemi başlıca ORDER BY ... DESC komutunu uyarlamak için kullanılır." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8593,7 +8612,7 @@ msgstr "" "fazla sorgulamanız vardır veya düzgün bir şekilde anahtarları " "kullanmamaktasınız." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8605,35 +8624,35 @@ msgstr "" "düzgün bir şekilde indekslenmediğinde ya da sorgularınız, sahip olduğunuz " "indeksleri çıkarına kullanmak için yazmadığında önerilir." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "Dahili ROLLBACK ifadesi sayısıdır." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Tablo içinde satır güncellemek için istek sayısıdır." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Tablo içinde satır eklemek için istek sayısıdır." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Veri içeren sayfa sayısıdır (dolu veya temiz)." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "Şu anki dolu sayfa sayısıdır." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Temizlenmesi için istenmiş ara bellek havuz sayfa sayısıdır." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Boş sayfa sayısıdır." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8643,7 +8662,7 @@ msgstr "" "okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya " "taşınamayan sayfalardır." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8655,11 +8674,11 @@ msgstr "" "zamanda Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data değerleri gibi hesaplanabilir." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Sayfalardaki ara bellek havuzunun toplam boyutudur." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8667,7 +8686,7 @@ msgstr "" "InnoDB \"rastgele\" önden okuma başlatımı sayısıdır. Sorgu tablonun büyük " "bir kısmını taradığı zaman bu olur ama rastgele düzende." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8675,11 +8694,11 @@ msgstr "" "InnoDB sıralı önden okuma başlatımı sayısıdır. InnoDB sıralı tam tablo " "taraması yaptığı zaman bu olur." -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB'nin bitirdiği veya yaptığı mantıksal okuma isteği sayısıdır." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8687,7 +8706,7 @@ msgstr "" "InnoDB'nin ara bellek havuzundan tatmin olamadığı ve tek-sayfa okuması " "yapmak zorunda olduğu mantıksal okuma sayısıdır." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8701,55 +8720,55 @@ msgstr "" "durumlarını sayar. Eğer ara bellek havuzu boyutu düzgün bir şekilde " "ayarlandıysa, bu değer küçük olmalıdır." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB ara bellek havuzuna bitti yazma sayısıdır." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Şimdiye kadarki fsync() işlem sayısıdır." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Şu anki bekleyen fsync() işlem sayısıdır." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Şu anki bekleyen okuma sayısıdır." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Şu anki bekleyen yazma sayısıdır." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Toplam veri okuma sayısıdır." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Toplam veri yazma sayısıdır." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8757,35 +8776,35 @@ msgstr "" "Sahip olunan bekleme sayısıdır çünkü günlük ara belleği çok küçük ve devam " "etmeden önce temizlenmesi için beklemek zorundayız." -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Günlük yazma isteği sayısıdır." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Günlük dosyasına fiziksel yazma sayısıdır." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Günlük dosyasına bitmiş fsync() yazma sayısıdır." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "Bekleyen günlük dosyası fsyncs sayısıdır." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Bekleyen günlük dosyası yazma sayısıdır." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Günlük dosyasına yazılı bayt sayısıdır." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Oluşturulmuş sayfa sayısıdır." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8793,52 +8812,52 @@ msgstr "" "Derlenen InnoDB sayfa boyutu (varsayılan 16KB). Birçok değer sayfalarda " "sayılır; sayfa boyutu bunların kolaylıkla bayt'a dönüştürülmesine izin verir." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Okunan sayfa sayısıdır." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Yazılmış sayfa sayısıdır." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Şu anki beklenen satır kilidi sayısıdır." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için ortalama süredir." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Milisaniye cinsinden satır kilidi elde ederken harcanmış toplam süredir." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için en fazla süredir." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Satır kilidinin beklemek zorunda kaldığı süre sayısıdır." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tablolarından silinen satır sayısıdır." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tablolarına eklenen satır sayısıdır." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tablolarından okunan satır sayısıdır." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tablolarında güncellenen satır sayısıdır." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8846,7 +8865,7 @@ msgstr "" "Anahtar önbelleğindeki değiştirilmiş ama diskte henüz temizlenmemiş anahtar " "bloğu sayısıdır. Not_flushed_key_blocks olarak bilinip kullanılır." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8855,7 +8874,7 @@ msgstr "" "önbelleğinin ne kadarının kullanımda olmasını belirlemek için " "kullanabilirsiniz." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8864,11 +8883,11 @@ msgstr "" "Anahtar önbelleğinde kullanılan blok sayısıdır. Bu değerin en uç noktada " "olması bir kerede en fazla blok sayısının kullanımda olmamasını gösterir." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Önbellekten anahtar bloğunun okunması için istek sayısıdır." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8878,15 +8897,15 @@ msgstr "" "büyükse, key_buffer_size değeriniz muhtemelen çok küçüktür. Eksik önbellek " "oranı Key_reads/Key_read_requests olarak hesaplanabilir." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Önbelleğe anahtar bloğu yazmak için istek sayısıdır." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Diske anahtar bloğunu fiziksel yazma sayısıdır." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8897,7 +8916,7 @@ msgstr "" "karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu " "olmadığı anlamına gelir." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -8905,11 +8924,11 @@ msgstr "" "Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla " "bağlantı sayısı." -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED sıralarında yazılmak için bekleyen satır sayısıdır." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8917,19 +8936,19 @@ msgstr "" "Açık olan tablo sayısıdır. Eğer açık tablolar büyükse, tablo önbellek " "değeriniz muhtemelen çok küçüktür." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Açık olan dosya sayısıdır." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "Açık olan akış sayısıdır (başlıca günlükleme için kullanılır)." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Açık olan tablo sayısıdır." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -8939,19 +8958,19 @@ msgstr "" "QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret " "edebilir." -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Sorgu önbelleği için boş bellek miktarıdır." -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Önbelleğe ulaşma sayısıdır." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Önbelleğe eklenen sorgu sayısıdır." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8963,7 +8982,7 @@ msgstr "" "yardımcı olabilir. Önbellekten hangi sorguların kaldırılacağına karar vermek " "için sorgu önbelleği en az son kullanılmış (LRU) stratejisini kullanır." -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8971,19 +8990,19 @@ msgstr "" "Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type " "ayarından dolayı önbelleklenmedi)." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Önbellekte kayıtlı sorgu sayısıdır." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Sorgu önbelleği içindeki toplam blok sayısıdır." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8991,11 +9010,11 @@ msgstr "" "İndeksler kullanmayan birleştirme sayısıdır. Eğer bu değer 0 değilse, " "tablolarınızın indekslerini dikkatli olarak kontrol etmelisiniz." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "Referans tablosunda aralık araması kullanan birleştirme sayısıdır." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9004,7 +9023,7 @@ msgstr "" "birleştirme sayısıdır. (Eğer bu değer 0 değilse, tablolarınızın indekslerini " "dikkatli olarak kontrol etmelisiniz.)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9012,15 +9031,15 @@ msgstr "" "İlk tabloda aralıkları kullanan birleştirme sayısıdır. (Normal olarak " "kusurlu değildir, eğer büyükse bile.)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "İlk tablonun tam taramasının yapıldığı birleştirme sayısıdır." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Slave SQL işlemi tarafından şu anki açık geçici tablo sayısıdır." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9028,11 +9047,11 @@ msgstr "" "Kopya edilen slave SQL işleminin yeniden denediği işlerin toplam " "(başlangıçtan beri) süre sayısıdır." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Eğer sunucu master'a bağlı slave ise, bu AÇIKTIR." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9040,12 +9059,12 @@ msgstr "" "Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem " "sayısıdır." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Long_query_time saniyeden daha uzun zaman almış sorgu sayısıdır." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9055,23 +9074,23 @@ msgstr "" "değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı " "dikkate almalısınız." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Aralıklarla yapılmış sıralama sayısıdır." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Sıralanmış satır sayısıdır." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "Taranan tablo tarafından yapılmış sıralama sayısıdır." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Tablo kilidinin hemen tanındığı süre sayısıdır." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9083,7 +9102,7 @@ msgstr "" "uyarlamalısınız ve sonra ya tablonuzu ya da tablolarınızı bölün veya kopya " "etmeyi kullanın." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9093,11 +9112,11 @@ msgstr "" "Threads_created/Bağlantılar olarak hesaplanabilir. Eğer bu değer kırmızı " "ise, thread_cache_size boyutunuzu yükseltmelisiniz." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Şu anki açık bağlantı sayısıdır." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9109,7 +9128,7 @@ msgstr "" "(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer " "bir performans artışı vermez.)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Hala faaliyette olan işlemler sayısıdır." @@ -9232,7 +9251,7 @@ msgstr "Sunucu değişkenleri ve ayarları" msgid "Session value" msgstr "Oturum değeri" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Genel değer" @@ -9500,9 +9519,9 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %" -"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. " -"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " +"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- " +"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi" +"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " "kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir." #: setup/lib/index.lib.php:268 @@ -9517,8 +9536,8 @@ msgstr "" "[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna " "otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı " "anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya " -"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %" -"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" +"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. " +"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" "kbd] olarak ayarlayın." #: setup/lib/index.lib.php:270 @@ -9670,7 +9689,6 @@ msgid "Line" msgstr "Satır" #: tbl_chart.php:88 -#| msgid "Inline" msgid "Spline" msgstr "Şerit" @@ -9683,7 +9701,6 @@ msgid "Stacked" msgstr "İstiflendi" #: tbl_chart.php:94 -#| msgid "Report title:" msgid "Chart title" msgstr "Çizelge başlığı" @@ -9692,32 +9709,26 @@ msgid "X-Axis:" msgstr "X-Ekseni:" #: tbl_chart.php:113 -#| msgid "SQL queries" msgid "Series:" msgstr "Dizi:" #: tbl_chart.php:115 -#| msgid "Textarea columns" msgid "The remaining columns" msgstr "Kalan sütunlar" #: tbl_chart.php:128 -#| msgid "X Axis label" msgid "X-Axis label:" msgstr "X-Ekseni etiketi:" #: tbl_chart.php:128 -#| msgid "Value" msgid "X Values" msgstr "X Değeri" #: tbl_chart.php:129 -#| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Y-Ekseni etiketi:" #: tbl_chart.php:129 -#| msgid "Value" msgid "Y Values" msgstr "Y Değeri" diff --git a/po/tt.po b/po/tt.po index 438a51eb7d..06d1566a50 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" +"Language: tt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tt\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -47,7 +47,7 @@ msgstr "Ezläw" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Tezeş adı" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Açıqlama" @@ -166,7 +166,7 @@ msgstr "Töre" msgid "Null" msgstr "Buş" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "Bonı belän bäyläneş:" msgid "Comments" msgstr "Açıqlama" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "Açıqlama" msgid "No" msgstr "Yuq" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "Database %s has been copied to %s" msgid "Rename database to" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Ämer" @@ -381,7 +381,7 @@ msgstr "Kerem" msgid "Size" msgstr "Küläme" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "totıla" @@ -407,7 +407,7 @@ msgstr "Soñğı yañartılu" msgid "Last check" msgstr "Soñğı tikşerü" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -597,64 +597,64 @@ msgstr "Kiläse tüşämä eçendä:" msgid "Inside column:" msgstr "Kiläse tüşämä eçendä:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Bu biremlektä ber genä dä tüşämä yuq." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" atlı tüşämä buşatıldı" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" atlı tüşämä beterelde" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Qaraş" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 #, fuzzy msgid "Replication" msgstr "Bäyläneşlär" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Sum" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -662,23 +662,23 @@ msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan." msgid "With selected:" msgstr "Saylanğannı:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Saylap Beter" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Saylanunı Töşer" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Check overheaded" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -686,59 +686,59 @@ msgstr "Check overheaded" msgid "Export" msgstr "Export" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Bastıru küreneşe" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Buşat" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Beter" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Tüşämä tikşerü" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Optimize table" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Tüşämä tözätü" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Tüşämä centekläw" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy msgid "Add prefix to table" msgstr "Biremleklär yuq" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Eçtälek Süzlege" @@ -754,7 +754,7 @@ msgstr "Tüşämä tikşerü" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -774,7 +774,7 @@ msgstr "Yarat" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Torış" @@ -879,8 +879,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1076,174 +1076,7 @@ msgstr "Saylanğan qullanuçı beterü" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Server Saylaw" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -msgid "Live query chart" -msgstr "SQL-soraw" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Tulayım" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -#, fuzzy -msgid "Loading" -msgstr "Cirle" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Proseslar" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Biremlekne bolay atap quy" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Biremlekne bolay atap quy" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Biremlekne boña kübäyt" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Bilgelämä" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Töşämä alannarı sanı kimendä 1 bulırğa teş." - -#: js/messages.php:96 -#, fuzzy -msgid "Create Table" -msgstr "Yaña Bit yaratu" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Tüşämä qullanıp" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Ezläw" - -#: js/messages.php:105 -#, fuzzy -msgid "Hide search results" -msgstr "SQL-soraw" - -#: js/messages.php:106 -#, fuzzy -msgid "Show search results" -msgstr "SQL-soraw" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Küzätü" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "\"%s\" Beterü" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -msgid "Hide query box" -msgstr "SQL-soraw" - -#: js/messages.php:115 -#, fuzzy -msgid "Show query box" -msgstr "SQL-soraw" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Engine" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1252,7 +1085,216 @@ msgstr "Engine" msgid "Edit" msgstr "Tözätü" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Server Saylaw" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +msgid "Live query chart" +msgstr "SQL-soraw" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Tulayım" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Server Saylaw" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Proseslar" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Totaşular" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +msgid "Issued queries" +msgstr "SQL-soraw" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +msgid "Query statistics" +msgstr "Kerem Nöfüse" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +#, fuzzy +msgid "Loading" +msgstr "Cirle" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Proseslar" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Biremlekne bolay atap quy" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Biremlekne bolay atap quy" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Biremlekne boña kübäyt" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Bilgelämä" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Töşämä alannarı sanı kimendä 1 bulırğa teş." + +#: js/messages.php:109 +#, fuzzy +msgid "Create Table" +msgstr "Yaña Bit yaratu" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Tüşämä qullanıp" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Ezläw" + +#: js/messages.php:118 +#, fuzzy +msgid "Hide search results" +msgstr "SQL-soraw" + +#: js/messages.php:119 +#, fuzzy +msgid "Show search results" +msgstr "SQL-soraw" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Küzätü" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "\"%s\" Beterü" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +msgid "Hide query box" +msgstr "SQL-soraw" + +#: js/messages.php:128 +#, fuzzy +msgid "Show query box" +msgstr "SQL-soraw" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Engine" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1260,77 +1302,77 @@ msgstr "Tözätü" msgid "Save" msgstr "Saqla" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy msgid "Hide search criteria" msgstr "SQL-soraw" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy msgid "Show search criteria" msgstr "SQL-soraw" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Qarama" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kürsätäse Alan saylaw" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Sersüz Ürçetü" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Ürçet" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Sersüz üzgärtü" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dşm" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1338,31 +1380,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy msgid ", latest stable version:" msgstr "Server söreme" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy msgid "up to date" msgstr "Biremleklär yuq" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy msgid "Done" msgstr "Eçtälek" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Uzğan" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1370,96 +1412,96 @@ msgid "Next" msgstr "Kiläse" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Tulayım" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Äpr" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "May" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Yün" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Yül" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Ökt" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1467,176 +1509,176 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dek" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ykş" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dşm" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sşm" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cmğ" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Şmb" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ykş" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dşm" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sşm" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çrş" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pnc" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cmğ" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şmb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "totıla" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1868,8 +1910,8 @@ msgstr "%s siña İsäñme di" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -2009,7 +2051,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Tüşämä" @@ -2145,7 +2187,7 @@ msgid "Documentation" msgstr "Qullanma" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-soraw" @@ -2174,7 +2216,7 @@ msgid "Create PHP Code" msgstr "PHP-Kod yasa" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Yañart" @@ -4863,8 +4905,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4884,7 +4926,7 @@ msgstr "Qısu" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Buş" @@ -5138,7 +5180,7 @@ msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Üter" @@ -5229,7 +5271,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Bufer Pulı" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB Torışı" @@ -5588,8 +5630,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5711,7 +5753,7 @@ msgstr "Barlıq MIME-törlär" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Host" @@ -6414,13 +6456,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Üzgärmä" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Bäyä" @@ -6661,12 +6703,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Binar köndälek" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Üzgärmälär" @@ -6828,8 +6870,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %" -"squllanmada%s uqıp bula." +"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında " +"%squllanmada%s uqıp bula." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -6964,7 +7006,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Yaña qullanuçı östäw" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Waqıt" @@ -7186,7 +7228,7 @@ msgid "Protocol version" msgstr "Protokol söreme" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Qullanuçı" @@ -7657,18 +7699,18 @@ msgstr "\"%s\" atlı tüşämä yuq äle!" msgid "Select binary log to view" msgstr "Qaraw öçen binar köndälek saylaw" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 #, fuzzy msgid "Files" msgstr "Alan" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Sorawnı Qısqartıp Kürsätäse" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Tulı Sorawlar Kürsät" @@ -8064,8 +8106,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server " "qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege " @@ -8198,7 +8240,7 @@ msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -8338,264 +8380,255 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "%s cebe uñışlı üterelgän buldı." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s ceben üterä almadı. Bälki ul yabılğan bulğan da inde." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Eşkärtkeç" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Soraw alxätere" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Ceplär" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Çaqlı birem" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Kiçerelgän östäw" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Tezeş alxätere" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Bäylär" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Tezü" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Eş-ara idäräçese" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Tüşämälärne yabıp beteräse" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Açıq tüşämä tezmäse" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Soraw alxäteren awdar" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Eşläw Torışı" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Server Saylaw" -#: server_status.php:372 -#, fuzzy -msgid "Query statistics" -msgstr "Kerem Nöfüse" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Yañart" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "sekund sayın" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "sekund sayın" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "totıla" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Sersüzen üzgärtäse tügel" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Açıq tüşämä tezmäse" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Bäyläneşlär" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "säğät sayın" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "minut sayın" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "sekund sayın" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Soraw töre" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Bu MySQL-server %s eşli. %s çorında cibärelgän ide ul." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 #, fuzzy msgid "Replication status" msgstr "Bäyläneşlär" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Taşım" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Alındı" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Cibärelde" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Totaşular" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Failed attempts" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Özderelde" -#: server_status.php:784 -msgid "Processes" -msgstr "Proseslar" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8603,78 +8636,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8682,7 +8715,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8690,43 +8723,43 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 #, fuzzy msgid "The number of pages currently dirty." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Buş bitlär sanı." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8734,33 +8767,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8769,92 +8802,92 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 #, fuzzy msgid "The current number of pending reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:885 +#: server_status.php:893 #, fuzzy msgid "The current number of pending writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 #, fuzzy msgid "The total number of data reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:888 +#: server_status.php:896 #, fuzzy msgid "The total number of data writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 #, fuzzy msgid "The number of log write requests." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:894 +#: server_status.php:902 #, fuzzy msgid "The number of physical writes to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:895 +#: server_status.php:903 #, fuzzy msgid "The number of fsync() writes done to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8863,144 +8896,144 @@ msgstr "" "values are counted in pages; the page size allows them to be easily " "converted to bytes." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Uqılğan bit sanı bu." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Yazılğan bit sanı bu." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 #, fuzzy msgid "The number of physical writes of a key block to disk." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Açıq toruçı birem sanı." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Açıq toruçı tüşämä sanı." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "Alxätergä turı kilü sanı bu." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9008,99 +9041,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9108,18 +9141,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Biredä açıq bulğan totaşu sanı." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9127,7 +9160,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Açıq toruçı birem sanı." @@ -9252,7 +9285,7 @@ msgstr "Server üzgärmäläre & köyläneşe" msgid "Session value" msgstr "Sessi bäyäse" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Töp bäyä" diff --git a/po/ug.po b/po/ug.po index 88b2f6c981..01af29c9b3 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" +"Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -49,7 +49,7 @@ msgstr "ئىزدەش" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -86,7 +86,7 @@ msgstr "قىممەت ئىسمى" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "ئىزاھات" @@ -166,7 +166,7 @@ msgstr "تۈرى" msgid "Null" msgstr "بوش" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -195,7 +195,7 @@ msgstr "ئۇلانما" msgid "Comments" msgstr "ئىزاھلار" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -211,7 +211,7 @@ msgstr "ئىزاھلار" msgid "No" msgstr "يوق" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -271,7 +271,7 @@ msgstr "ساندان %s غا كۆچۈرۈلدى %s" msgid "Rename database to" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "بۇيرۇق" @@ -344,8 +344,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" -"sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " +"%sبۇ يەرنى كۆرۈڭ%s." #: db_operations.php:600 #, fuzzy @@ -375,7 +375,7 @@ msgstr "سەپ سانى" msgid "Size" msgstr "ھەجىم" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "ئىشلىتىلمەكتە" @@ -401,7 +401,7 @@ msgstr "ئاخىرقى يېڭلىنىش" msgid "Last check" msgstr "ئاخىرقى تەكشۈرۈش" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -582,63 +582,63 @@ msgstr "تۆۋەندىكى جەدۋەل(لەر): " msgid "Inside column:" msgstr "ئىچىدىكى سۆزلەم:" -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "سانداندا جەدۋەل يوق" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr " %s جەدۋەل تازىلاندى" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "%s جەدىۋەل ئۆچۈرۈلدى" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "ئاكتىپ ئىزلاش" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "قاراش" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "كۆچۈرۈش" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "جەمئىي" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -646,23 +646,23 @@ msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندى msgid "With selected:" msgstr "تاللانغىنى:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "ھەممىنى تاللاش" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "تاللاشنى بىكار قىلىش" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "مەزمۇن بارلارنى تاللاش" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -670,56 +670,56 @@ msgstr "مەزمۇن بارلارنى تاللاش" msgid "Export" msgstr "چىقىرىش" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "تازىلاش" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "ئۆچۈرۈش" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "جەدۋەل تەكشۈرۈش" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "جەدۋەلنى ئەلالاش" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "جەدۋەلنى ئوڭشاش" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "جەدۋەل تەھلىلى" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Repair table" msgid "Replace table prefix" msgstr "جەدۋەلنى ئوڭشاش" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "مەلۇمات لۇغىتى" @@ -734,7 +734,7 @@ msgstr "ئىزلانغان جەدۋەل" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -752,7 +752,7 @@ msgstr "قۇرۇش" msgid "Updated" msgstr "يېڭلاش" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "ھالەت" @@ -852,8 +852,8 @@ msgstr "%s ھۆججىتىدە ساقلاندى." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." @@ -1057,171 +1057,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "مۇلازىمىتېر تاللاش" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "SQL query" -msgid "Live query chart" -msgstr "SQL سورىقى" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "يىغىندىسى" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "بىكار قىلىش" - -#: js/messages.php:83 -msgid "Loading" -msgstr "" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Remove database" -msgid "Reload Database" -msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "كۆچۈرۈلگەن ساندان" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one column." -msgid "Table must have at least one column" -msgstr "سانلىق مەلۇمات جەدېۋىلىدە ئەڭ ئاز بولغاندا بىر خەت بۇلۇش كىرەك" - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create" -msgid "Create Table" -msgstr "قۇرۇش" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "جەدۋەللەرنى ئىشلىتىش" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "ئىزدەش" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "" - -#: js/messages.php:106 -#, fuzzy -#| msgid "SQL query" -msgid "Show search results" -msgstr "SQL سورىقى" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "كۆزەت" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Delete" -msgid "Deleting" -msgstr "ئۆچۈرۈش" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "" - -#: js/messages.php:115 -#, fuzzy -#| msgid "SQL query" -msgid "Show query box" -msgstr "SQL سورىقى" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Inline" -msgid "Inline Edit" -msgstr " ئىچكى بىرلىشىش" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1230,7 +1066,209 @@ msgstr " ئىچكى بىرلىشىش" msgid "Edit" msgstr "تەھىرلەش" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "مۇلازىمىتېر تاللاش" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "SQL query" +msgid "Live query chart" +msgstr "SQL سورىقى" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "يىغىندىسى" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "مۇلازىمىتېر تاللاش" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "" + +#: js/messages.php:85 +msgid "Connections / Processes" +msgstr "" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +msgid "Issued queries" +msgstr "" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "بىكار قىلىش" + +#: js/messages.php:96 +msgid "Loading" +msgstr "" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Remove database" +msgid "Reload Database" +msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "كۆچۈرۈلگەن ساندان" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one column." +msgid "Table must have at least one column" +msgstr "سانلىق مەلۇمات جەدېۋىلىدە ئەڭ ئاز بولغاندا بىر خەت بۇلۇش كىرەك" + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create" +msgid "Create Table" +msgstr "قۇرۇش" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "جەدۋەللەرنى ئىشلىتىش" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "ئىزدەش" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "" + +#: js/messages.php:119 +#, fuzzy +#| msgid "SQL query" +msgid "Show search results" +msgstr "SQL سورىقى" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "كۆزەت" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "ئۆچۈرۈش" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "" + +#: js/messages.php:128 +#, fuzzy +#| msgid "SQL query" +msgid "Show query box" +msgstr "SQL سورىقى" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Inline" +msgid "Inline Edit" +msgstr " ئىچكى بىرلىشىش" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1238,72 +1276,72 @@ msgstr "تەھىرلەش" msgid "Save" msgstr "" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy #| msgid "SQL query" msgid "Show search criteria" msgstr "SQL سورىقى" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "سېرتقى ئۇلىنىشنى تاللاش" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "تاشقى ئاچقۇق قىممىتى" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "پارول ھاسىللاش" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "ھاسىللاش" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "پارولنى ئۆزگەرتىش" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "تېخىمۇ كۆپ" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1311,13 +1349,13 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "ېيڭى نەشىر" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" @@ -1325,17 +1363,17 @@ msgid "up to date" msgstr "%s جەدۋەل" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "تامام" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "ئالدىنقى ئاي" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1343,231 +1381,231 @@ msgid "Next" msgstr "كىيىنكى ئاي" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "بۈگۈن" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "قەھرىتان" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "ھۇت" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "نورۇز" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "ئۈمىد" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "باھار" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "6-ئاي" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "7-ئاي" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "8-ئاي" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "9-ئاي" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "10-ئاي" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "11-ئاي" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "12-ئاي" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "1-ئاي" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "2-ئاي" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "3-ئاي" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "4-ئاي" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "5-ئاي" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "6-ئاي" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "چىللە" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "تومۇز" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "مىزان" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "ئوغۇز" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "ئوغلاق" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "كۆنەك" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "يەكشەنبە" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "دۈشەنبە" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "چارشەنبە" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "پەيشەنبە" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "جۈمە" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "شەنبە" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "يەكشەنبە" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "دۈشەنبە" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "سەيشەنبە" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "چارشەنبە" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "پەيشەنبە" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "جۈمە" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "شەنبە" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "يەكشەنبە" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "دۈشەنبە" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "سەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "چارشەنبە" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "پەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "جۈمە" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "شەنبە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "ھەپتە" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "سائەت" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "مىنۇت" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "سېكنۇت" @@ -1798,11 +1836,11 @@ msgstr "%s خۇش كەلدىڭىز" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -1941,7 +1979,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "" @@ -2070,7 +2108,7 @@ msgid "Documentation" msgstr "قوللانما" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL سورىقى" @@ -2099,7 +2137,7 @@ msgid "Create PHP Code" msgstr "PHP كودى قۇرۇش" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "يېڭلاش" @@ -4696,8 +4734,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4717,7 +4755,7 @@ msgstr "پىرىسلاش" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "يوق" @@ -4964,7 +5002,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "" @@ -5054,7 +5092,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "" @@ -5397,8 +5435,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5517,7 +5555,7 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "ئاساسىي ماشىنا" @@ -6205,13 +6243,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6446,12 +6484,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "" @@ -6706,7 +6744,7 @@ msgstr "" msgid "+ Add a new value" msgstr "" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "ۋاقىت" @@ -6869,7 +6907,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "" @@ -6969,8 +7007,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" -"sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " +"%sبۇ يەرنى كۆرۈڭ%s." #: main.php:314 msgid "" @@ -7309,17 +7347,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "" @@ -7701,8 +7739,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7824,7 +7862,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -7961,257 +7999,249 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "مۇلازىمىتېر تاللاش" -#: server_status.php:372 -msgid "Query statistics" -msgstr "" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "يېڭلاش" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "سېكنۇت" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "سېكنۇت" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "مىنۇت" -#: server_status.php:446 +#: server_status.php:460 msgid "Containing the word:" msgstr "" -#: server_status.php:451 +#: server_status.php:465 msgid "Show only alert values" msgstr "" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "مۇناسىۋىتى" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "" -#: server_status.php:784 -msgid "Processes" -msgstr "" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "" -#: server_status.php:846 +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8219,78 +8249,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8298,7 +8328,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8306,42 +8336,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8349,33 +8379,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8384,227 +8414,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8612,99 +8642,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8712,18 +8742,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8731,7 +8761,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -8852,7 +8882,7 @@ msgstr "" msgid "Session value" msgstr "" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "" diff --git a/po/uk.po b/po/uk.po index 5e5a9b5465..196b5629f4 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-12-28 22:26+0200\n" "Last-Translator: Olexiy Zagorskyi \n" "Language-Team: ukrainian \n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -48,7 +48,7 @@ msgstr "Шукати" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -85,7 +85,7 @@ msgstr "Ім'я ключа" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Опис" @@ -165,7 +165,7 @@ msgstr "Тип" msgid "Null" msgstr "Нуль" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -194,7 +194,7 @@ msgstr "Лінки до" msgid "Comments" msgstr "Коментарі" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,7 +210,7 @@ msgstr "Коментарі" msgid "No" msgstr "Ні" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -270,7 +270,7 @@ msgstr "Базу даних %s скопійовано в %s" msgid "Rename database to" msgstr "Перейменувати базу даних в" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Команда" @@ -372,7 +372,7 @@ msgstr "Рядки" msgid "Size" msgstr "Розмір" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "використовується" @@ -398,7 +398,7 @@ msgstr "Поновлено" msgid "Last check" msgstr "Перевірено" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -584,61 +584,61 @@ msgstr "Всередині таблиць:" msgid "Inside column:" msgstr "Всередині стовпчика:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "В БД не виявлено таблиць." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "Таблицю %s було очищено" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "Таблицю %s було знищено" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Трекінг є активним." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Трекінг не активний." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Всього" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -646,23 +646,23 @@ msgstr "" msgid "With selected:" msgstr "З відміченими:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Відмітити все" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Зняти усі відмітки" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -670,58 +670,58 @@ msgstr "" msgid "Export" msgstr "Експорт" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Версія для друку" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Очистити" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Знищити" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Перевірити таблицю" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Оптимізувати таблицю" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Ремонтувати таблицю" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Аналіз таблиці" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Замінити дані таблиці даними з файлу" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замінити дані таблиці даними з файлу" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Словник даних" @@ -736,7 +736,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -754,7 +754,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Статус" @@ -854,8 +854,8 @@ msgstr "Dump збережено у файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1040,157 +1040,7 @@ msgstr "Видалити відмічених користувачів" msgid "Close" msgstr "" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Вибір сервера" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "SQL query" -msgid "Live query chart" -msgstr "SQL-запит" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Разом" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "" - -#: js/messages.php:83 -msgid "Loading" -msgstr "" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "Обробка запиту" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "Перейменування баз даних" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "Перезавантаження бази даних" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "Копіювання бази даних" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "Зміна Кодування" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "Таблиця повинна мати принаймі один Стовпчик" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "Створити Таблицю" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Використовувати таблиці" - -#: js/messages.php:104 -msgid "Searching" -msgstr "Пошук" - -#: js/messages.php:105 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Hide search results" -msgstr "Сховати критерії пошуку" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Show search criteria" -msgid "Show search results" -msgstr "Показати критерії пошуку" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Переглянути" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "Усунути %s" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "Сховати блок запиту" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "Показати блок запиту" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "Редагування рядків" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1199,7 +1049,197 @@ msgstr "Редагування рядків" msgid "Edit" msgstr "Редагувати" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Вибір сервера" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "SQL query" +msgid "Live query chart" +msgstr "SQL-запит" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Разом" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Вибір сервера" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Процеси" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "З'єднань" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +msgid "Issued queries" +msgstr "" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "Статистика запиту" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "" + +#: js/messages.php:96 +msgid "Loading" +msgstr "" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "Обробка запиту" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "Перейменування баз даних" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "Перезавантаження бази даних" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "Копіювання бази даних" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "Зміна Кодування" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "Таблиця повинна мати принаймі один Стовпчик" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "Створити Таблицю" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Використовувати таблиці" + +#: js/messages.php:117 +msgid "Searching" +msgstr "Пошук" + +#: js/messages.php:118 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Hide search results" +msgstr "Сховати критерії пошуку" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Show search criteria" +msgid "Show search results" +msgstr "Показати критерії пошуку" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Переглянути" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Усунути %s" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "Сховати блок запиту" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "Показати блок запиту" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "Редагування рядків" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1207,67 +1247,67 @@ msgstr "Редагувати" msgid "Save" msgstr "Зберегти" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "Сховати критерії пошуку" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "Показати критерії пошуку" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ігнорувати" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Виберіть колонку для відображення" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "Згенерувати пароль" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "Змінити пароль" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "Більше" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1275,28 +1315,28 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr "" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Перейти до бази даних" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "Готово" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "Попередні" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1304,231 +1344,231 @@ msgid "Next" msgstr "Наступні" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "Сьогодні" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "Січень" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "Лютий" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "Березень" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "Квітень" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Травень" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "Червень" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "Липень" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "Серпень" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "Вересень" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "Жовтень" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "Листопад" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "Грудень" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Гру" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "Неділя" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "Понеділок" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "Вівторок" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "П'ятниця" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Нд" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "Нд" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "Хвилина" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "Секунда" @@ -1752,8 +1792,8 @@ msgstr "Ласкаво просимо до %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -1891,7 +1931,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Таблиць" @@ -2024,7 +2064,7 @@ msgid "Documentation" msgstr "Документація" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL-запит" @@ -2053,7 +2093,7 @@ msgid "Create PHP Code" msgstr "Створити PHP код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "" @@ -4591,8 +4631,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4610,7 +4650,7 @@ msgstr "Стискання:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Немає" @@ -4849,7 +4889,7 @@ msgid "The row has been deleted" msgstr "Рядок видалено" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Вбити" @@ -4939,7 +4979,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "Статус InnoDB" @@ -5282,8 +5322,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5402,7 +5442,7 @@ msgstr "Доступні MIME-types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Хост" @@ -6093,13 +6133,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Змінна" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Значення" @@ -6340,12 +6380,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Змінні" @@ -6554,8 +6594,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %" -"sописи перетворень%s" +"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть " +"%sописи перетворень%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -6637,7 +6677,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Додати нового користувача" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Час" @@ -6835,7 +6875,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Користувач" @@ -7291,17 +7331,17 @@ msgstr "Таблиці \"%s\" не існує!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Обрізати показані запити" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Показати повні запити" @@ -7699,8 +7739,8 @@ msgstr "Усунути бази даних, які мають такі ж наз msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав " "MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються " @@ -7833,7 +7873,7 @@ msgstr "Права успішно перезавантажено." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -7970,259 +8010,251 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s припинено." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "Інформація про роботу сервера" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Вибір сервера" -#: server_status.php:372 -msgid "Query statistics" -msgstr "Статистика запиту" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 msgid "Refresh rate" msgstr "" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "Секунда" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "Секунда" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "Хвилина" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Не змінювати пароль" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show tables" msgid "Show only alert values" msgstr "Показати таблиці" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Зв'язки" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "за годину" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "за хвилину" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "за секунду" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Тип запиту" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Цей MySQL сервер працює %s. Стартував %s." -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Трафік" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Отримано" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Відправлено" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "З'єднань" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Невдалих спроб" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Перервано" -#: server_status.php:784 -msgid "Processes" -msgstr "Процеси" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8230,78 +8262,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8309,7 +8341,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8317,42 +8349,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8360,33 +8392,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8395,227 +8427,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8623,99 +8655,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8723,18 +8755,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8742,7 +8774,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -8865,7 +8897,7 @@ msgstr "Змінні сервера та налаштування" msgid "Session value" msgstr "Значення сесії" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Загальне значення" @@ -9882,8 +9914,8 @@ msgstr "" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Статистика запитів: З моменту запуску, до сервера було надіслано %" -#~ "s запитів." +#~ "Статистика запитів: З моменту запуску, до сервера було надіслано " +#~ "%s запитів." #, fuzzy #~| msgid "The privileges were reloaded successfully." diff --git a/po/ur.po b/po/ur.po index 23b1434efd..b35833e7d3 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" +"Language: ur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -49,7 +49,7 @@ msgstr "تلاش" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -86,7 +86,7 @@ msgstr "کلید نام" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "وضاحت" @@ -171,7 +171,7 @@ msgstr "قِسم" msgid "Null" msgstr "خالی" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -200,7 +200,7 @@ msgstr "ربط بطرف" msgid "Comments" msgstr "تبصرہ" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -216,7 +216,7 @@ msgstr "تبصرہ" msgid "No" msgstr "نہیں" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -276,7 +276,7 @@ msgstr "کوائفیہ %s نام %s میں نقل کیا جاچکا ہے" msgid "Rename database to" msgstr "کوائفیہ نام بدلیں" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "حکم" @@ -379,7 +379,7 @@ msgstr "صفیں" msgid "Size" msgstr "ناپ" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "استعمال میں ہے" @@ -405,7 +405,7 @@ msgstr "آخری دفعہ کی تازہ کاری" msgid "Last check" msgstr "آخری دفعہ کی پڑتال" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -588,62 +588,62 @@ msgstr "جدول میں:" msgid "Inside column:" msgstr "کالم میں:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "کوائیفیہ میں کوئی جدول نہیں ملا" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s خالی ہوچکا ہے" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s چھوڑا جاچکا ہے" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "کھوج فعال ہے۔" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "کھوج غیر فعال ہے۔" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "نقل جدول" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "چربہ کاری" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "مجموعہ" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -651,23 +651,23 @@ msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔" msgid "With selected:" msgstr "مع منتخب:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "تمام پڑتال کریں" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "تمام غیر پڑتال کریں" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "اوور ہیڈ جداول کی پڑتال کریں" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -675,58 +675,58 @@ msgstr "اوور ہیڈ جداول کی پڑتال کریں" msgid "Export" msgstr "برآمد" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "چھپائی منظر" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "خالی" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "چھوڑیں" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "جدول پڑتال کریں" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "جدول احسن کریں" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "جدول مرمت کریں" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "جدول تجزیہ کریں" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "کوائف لغت" @@ -741,7 +741,7 @@ msgstr "کھوج شدہ جداول" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -759,7 +759,7 @@ msgstr "بنایا" msgid "Updated" msgstr "تازہ کی گئی" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "حالت" @@ -859,11 +859,11 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %" -"sdocumentation%s دیکھیں۔" +"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے " +"%sdocumentation%s دیکھیں۔" #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1061,157 +1061,7 @@ msgstr "منتخب صارفین ہٹائے جارہے ہیں" msgid "Close" msgstr "بند کریں" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "سرور انتخاب" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Hide query box" -msgid "Live query chart" -msgstr "طلب خانہ چھپائیں" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "میزان" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "منسوخ کریں" - -#: js/messages.php:83 -msgid "Loading" -msgstr "لوڈ کررہا ہے" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "فرمایش عمل کرتے ہوئے" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "فرمایش عمل کرتے ہوئے نقص ہے" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "کالم چھوڑا جارہا ہے" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "بنیادی کلید شامل کررہا ہے" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "ٹھیک ہے" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "کوائفیہ نام بدلا جارہا ہے" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "کوائفیہ پھر لوڈ کریں" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "کوائفیہ نقل کیا جارہا ہے" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "کریکٹر سیٹ تبدیل کیا جارہا ہے" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "جدول میں کم از کم ایک کالم ہو" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "جدول بنائیں" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "جداول استعمال کریں" - -#: js/messages.php:104 -msgid "Searching" -msgstr "تلاش کر رہا ہے" - -#: js/messages.php:105 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Hide search results" -msgstr "تلاش کسوٹی چھپائیں" - -#: js/messages.php:106 -#, fuzzy -#| msgid "Show search criteria" -msgid "Show search results" -msgstr "تلاش کسوٹی دکھائیں" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "براؤز" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Delete" -msgid "Deleting" -msgstr "حذف" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "طلب خانہ چھپائیں" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "طلب خانہ دکھائیں" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "ان لائن تدوین" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1220,7 +1070,199 @@ msgstr "ان لائن تدوین" msgid "Edit" msgstr "تدوین" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "سرور انتخاب" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Hide query box" +msgid "Live query chart" +msgstr "طلب خانہ چھپائیں" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "میزان" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "سرور انتخاب" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connection type" +msgid "Connections / Processes" +msgstr "جڑنے کی قسم" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL طلب" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "طلب شماریات" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "منسوخ کریں" + +#: js/messages.php:96 +msgid "Loading" +msgstr "لوڈ کررہا ہے" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "فرمایش عمل کرتے ہوئے" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "فرمایش عمل کرتے ہوئے نقص ہے" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "کالم چھوڑا جارہا ہے" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "بنیادی کلید شامل کررہا ہے" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "ٹھیک ہے" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "کوائفیہ نام بدلا جارہا ہے" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "کوائفیہ پھر لوڈ کریں" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "کوائفیہ نقل کیا جارہا ہے" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "کریکٹر سیٹ تبدیل کیا جارہا ہے" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "جدول میں کم از کم ایک کالم ہو" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "جدول بنائیں" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "جداول استعمال کریں" + +#: js/messages.php:117 +msgid "Searching" +msgstr "تلاش کر رہا ہے" + +#: js/messages.php:118 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Hide search results" +msgstr "تلاش کسوٹی چھپائیں" + +#: js/messages.php:119 +#, fuzzy +#| msgid "Show search criteria" +msgid "Show search results" +msgstr "تلاش کسوٹی دکھائیں" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "براؤز" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "حذف" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "طلب خانہ چھپائیں" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "طلب خانہ دکھائیں" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "ان لائن تدوین" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1228,98 +1270,98 @@ msgstr "تدوین" msgid "Save" msgstr "" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "نظر انداز کریں" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "محولہ کلید منتخب کریں" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "فارن کلید منتخب کریں" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "ایک بنیادی یا منفرد کلید منتخب کریں" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "کالم دکھانے کے لیے انتخاب کریں" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "کالم کے لیے ایک اختیار اضافہ کریں" -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "پاس ورڈ بنائیں" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "بنائیں" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "پاس ورڈ تبدیل کریں" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "مزید" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %" -"s, جاری کیا گیا %s." +"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ " +"%s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ", حالیہ مستحکم نسخہ:" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "کوائفیہ جائیں" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "ہوچکا" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "پچھلا" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1327,231 +1369,231 @@ msgid "Next" msgstr "اگلا" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "آج" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "جنوری" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "فروری" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "مارچ" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "اپریل" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "مئی" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "جون" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "جولائی" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "اگست" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "ستمبر" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "اکتوبر" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "نومبر" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "دسمبر" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "جنوری" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "فروری" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "مارچ" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "اپریل" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "مئی" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "جون" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "جولائی" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "اگست" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "ستمبر" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "اکتوبر" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "نومبر" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "دسمبر" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "اتوار" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "پیر" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "منگل" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "بدھ" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "جمعرات" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "جمعہ" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "ہفتہ" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "اتوار" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "پیر" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "منگل" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "بدھ" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "جمعرات" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "جمعہ" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "ہفتہ" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "اتوار" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "پیر" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "منگل" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "بدھ" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "جمعرات" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "جمعہ" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "ہفتہ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "ہفتہ وار" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "گھنٹہ" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "منٹ" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "سیکنڈ" @@ -1784,8 +1826,8 @@ msgstr "%s میں خوش آمدید" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو " "استعمال کرتے ہوئے بنانا چاہتے ہیں۔" @@ -1924,7 +1966,7 @@ msgstr "حصہ دارانہ" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "جداول" @@ -1979,8 +2021,8 @@ msgstr "" "phpMyAdmin آپ کی تشکیل مسل مطالعہ نہیں کرسکا!
یہ اس لیے بھی ہوسکتا ہے " "اگر PHP کو کوئی تجزیاتی نقص ملا یا PHP کو مسل نہیں ملا۔
نیچے دیے گئے " "ربط سے تشکیل مسل کوبراہ راست استعمال کریں اور وصول ہونے والے PHP نقص " -"پیغامات کا مطالعہ کریں۔ عام طور پر ایک کوٹ یا سیمی کولن ہی کہیں غائب ہوتا " -"ہے۔
اگر آپ کو ایک خالی صفحہ ملے تو سب ٹھیک ہے۔" +"پیغامات کا مطالعہ کریں۔ عام طور پر ایک کوٹ یا سیمی کولن ہی کہیں غائب ہوتا ہے۔" +"
اگر آپ کو ایک خالی صفحہ ملے تو سب ٹھیک ہے۔" #: libraries/common.inc.php:586 #, php-format @@ -2054,7 +2096,7 @@ msgid "Documentation" msgstr "دستاویزات" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL طلب" @@ -2083,7 +2125,7 @@ msgid "Create PHP Code" msgstr "PHP کوڈ بنائیں" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "تازہ کریں" @@ -4728,8 +4770,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -4747,7 +4789,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "" @@ -4974,7 +5016,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "" @@ -5064,7 +5106,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "" @@ -5407,8 +5449,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5511,7 +5553,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "" @@ -6197,13 +6239,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6436,12 +6478,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "" @@ -6700,7 +6742,7 @@ msgstr "" msgid "+ Add a new value" msgstr "" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "وقت" @@ -6861,7 +6903,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "" @@ -7297,17 +7339,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "" @@ -7689,8 +7731,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7812,7 +7854,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "" @@ -7949,259 +7991,251 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "سرور انتخاب" -#: server_status.php:372 -msgid "Query statistics" -msgstr "طلب شماریات" - -#: server_status.php:373 +#: server_status.php:387 msgid "All status variables" msgstr "" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "تازہ کریں" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "سیکنڈ" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "سیکنڈ" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "منٹ" -#: server_status.php:446 +#: server_status.php:460 msgid "Containing the word:" msgstr "" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show logo in left frame" msgid "Show only alert values" msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Replication" msgid "Related links:" msgstr "لپیٹنا" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "" -#: server_status.php:784 -msgid "Processes" -msgstr "" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "" -#: server_status.php:846 +#: server_status.php:854 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8209,78 +8243,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8288,7 +8322,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8296,42 +8330,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8339,33 +8373,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8374,227 +8408,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8602,99 +8636,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8702,18 +8736,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8721,7 +8755,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "" @@ -8842,7 +8876,7 @@ msgstr "" msgid "Session value" msgstr "" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "" diff --git a/po/uz.po b/po/uz.po index 66ca2b11ae..4c693d3f91 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" +"Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -46,7 +46,7 @@ msgstr "Қидириш" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -83,7 +83,7 @@ msgstr "Индекс номи" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Тавсифи" @@ -167,7 +167,7 @@ msgstr "Тур" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -196,7 +196,7 @@ msgstr "Алоқалар" msgid "Comments" msgstr "Изоҳлар" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -212,7 +212,7 @@ msgstr "Изоҳлар" msgid "No" msgstr "Йўқ" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -272,7 +272,7 @@ msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха msgid "Rename database to" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Буйруқ" @@ -383,7 +383,7 @@ msgstr "Қаторларсони" msgid "Size" msgstr "Ҳажми" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "ишлатилмоқда" @@ -409,7 +409,7 @@ msgstr "Охирги янгиланиш" msgid "Last check" msgstr "Охирги текширув" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -602,65 +602,65 @@ msgstr "Қуйидаги жадвал(лар)да қидириш:" msgid "Inside column:" msgstr "Қуйидаги майдон(лар)да қидириш: " -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" жадвали тозаланди" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr " \"%s\" намойиши ўчирилди" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" жадвали ўчирилди" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Кузатиш фаол." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Кузатиш фаол эмас." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Намойиш" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Жами" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -668,23 +668,23 @@ msgstr "\"%s\" - MySQL серверидаги андозавий маълумо msgid "With selected:" msgstr "Белгиланганларни: " -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Барчасини белгилаш" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Белгилашни бекор қилиш" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -692,60 +692,60 @@ msgstr "Оптималлаштириш лозим бўлгн жадваллар msgid "Export" msgstr "Экспорт" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Чоп этиш версияси" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Тозалаш" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "Ўчириш" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Жадвални текшириш" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Жадвални оптималлаштириш" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Жадвални тиклаш" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Жадвал таҳлили" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Ушбу жадвалга ўтиш" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Маълумотлар луғати" @@ -760,7 +760,7 @@ msgstr "Кузатилган жадваллар" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -778,7 +778,7 @@ msgstr "Тузилди" msgid "Updated" msgstr "Янгиланди" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Ҳолат" @@ -878,11 +878,11 @@ msgstr "Дамп \"%s\" файлида сақланди." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %" -"sдокументацияда%s келтирилган." +"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " +"%sдокументацияда%s келтирилган." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1096,181 +1096,7 @@ msgstr "Белгиланган фойдаланувчиларни ўчириш" msgid "Close" msgstr "Ёпиш" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Серверни танланг" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "SQL Query box" -msgid "Live query chart" -msgstr "SQL сўровлари қутиси" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Жами" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Бекор қилиш" - -#: js/messages.php:83 -#, fuzzy -#| msgid "Load" -msgid "Loading" -msgstr "Юклаш" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Жараёнлар" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Маълумотлар базасидан қуйидагига нусха олиш" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Кодировка" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Жадвалда, ҳеч бўлмаганда, битта майдон бўлиши шарт." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Жадвал тузиш" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Жадвалларни ишлатиш" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Қидириш" - -#: js/messages.php:105 -#, fuzzy -#| msgid "SQL Query box" -msgid "Hide search results" -msgstr "SQL сўровлари қутиси" - -#: js/messages.php:106 -#, fuzzy -#| msgid "SQL Query box" -msgid "Show search results" -msgstr "SQL сўровлари қутиси" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Кўриб чиқиш" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "\"%s\" ўчирилмоқда" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -#| msgid "SQL Query box" -msgid "Hide query box" -msgstr "SQL сўровлари қутиси" - -#: js/messages.php:115 -#, fuzzy -#| msgid "SQL Query box" -msgid "Show query box" -msgstr "SQL сўровлари қутиси" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Жадвал турлари" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1279,7 +1105,225 @@ msgstr "Жадвал турлари" msgid "Edit" msgstr "Таҳрирлаш" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Серверни танланг" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "SQL Query box" +msgid "Live query chart" +msgstr "SQL сўровлари қутиси" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Жами" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Серверни танланг" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Жараёнлар" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Уланишлар" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL сўровлари" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "Статискани кўрсатиш" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Бекор қилиш" + +#: js/messages.php:96 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Юклаш" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Жараёнлар" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Маълумотлар базасидан қуйидагига нусха олиш" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Кодировка" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Жадвалда, ҳеч бўлмаганда, битта майдон бўлиши шарт." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Жадвал тузиш" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Жадвалларни ишлатиш" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Қидириш" + +#: js/messages.php:118 +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide search results" +msgstr "SQL сўровлари қутиси" + +#: js/messages.php:119 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show search results" +msgstr "SQL сўровлари қутиси" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Кўриб чиқиш" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "\"%s\" ўчирилмоқда" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL сўровлари қутиси" + +#: js/messages.php:128 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL сўровлари қутиси" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Жадвал турлари" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1287,79 +1331,79 @@ msgstr "Таҳрирлаш" msgid "Save" msgstr "Сақлаш" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Яшириш" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Эътибор бермаслик" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Боғлиқ калитни танланг" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Ташқи калитни танланг" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Кўрсатиладиган майдонни танлаш" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Парол ўрнатиш" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Генерация қилиш" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Паролни ўзгартириш" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Душ" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1370,34 +1414,34 @@ msgstr "" "чиқарилган." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Охирги версияни текшириш" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ушбу базага ўтиш" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Садақа" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Орқага" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1405,96 +1449,96 @@ msgid "Next" msgstr "Кейинги" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Жами" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Иккилик" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Мар" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Апр" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "Май" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Июн" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Июл" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Авг" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Окт" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1502,178 +1546,178 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Дек" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Якш" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Душ" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Сеш" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Жум" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Шан" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Якш" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Душ" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Сеш" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Чор" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пай" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Жум" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Шан" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Вики" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ишлатилмоқда" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1912,8 +1956,8 @@ msgstr "\"%s\" дастурига хуш келибсиз" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш " "сценарийсидан%2$s фойдаланишингиз мумкин." @@ -2060,7 +2104,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Жадваллар" @@ -2202,7 +2246,7 @@ msgid "Documentation" msgstr "Документация" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL сўрови" @@ -2233,7 +2277,7 @@ msgid "Create PHP Code" msgstr "PHP-код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Янгилаш" @@ -4194,8 +4238,8 @@ msgstr "\"config\" аутентификация усули пароли" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]" -"\"pma_pdf_pages\"[/kbd]" +"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: " +"[kbd]\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:404 msgid "PDF schema: pages table" @@ -4303,8 +4347,8 @@ msgstr "SSL уланишдан фойдаланиш" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]" -"\"pma_table_coords\"[/kbd]" +"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: " +"[kbd]\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:423 msgid "PDF schema: table coordinates" @@ -5149,12 +5193,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги " -"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %" -"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." +"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " +"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5173,7 +5217,7 @@ msgstr "Сиқиш" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Йўқ" @@ -5445,7 +5489,7 @@ msgid "The row has been deleted" msgstr "Ёзув ўчирилди" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Тугатиш" @@ -5539,7 +5583,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Буфер пули" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB аҳволи" @@ -5935,8 +5979,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6061,7 +6105,7 @@ msgstr "Мавжуд MIME турлари" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Хост" @@ -6784,13 +6828,13 @@ msgid "Slave status" msgstr "Тобе сервер статуси" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "Ўзгарувчи" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Қиймати" @@ -7037,12 +7081,12 @@ msgid "Synchronize" msgstr "Синхронизация қилиш" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Иккилик журнал" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "Ўзгарувчилар" @@ -7339,7 +7383,7 @@ msgstr "Бўлакларни (PARTITIONS) белгилаш" msgid "+ Add a new value" msgstr "Янги фойдаланувчи қўшиш" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Вақт" @@ -7587,7 +7631,7 @@ msgid "Protocol version" msgstr "Протокол версияси" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Фойдаланувчи" @@ -8095,17 +8139,17 @@ msgstr "\"%s\" жадвали мавжуд эмас!" msgid "Select binary log to view" msgstr "Кўриш учун бинар журнални танланг" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Файллар сони " -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "Сўровларни қисқартириб кўрсатиш" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "Сўровларнинг кенгайтирилган кўриниши" @@ -8513,8 +8557,8 @@ msgstr "Фойдаланувчилар номлари билан аталган msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни " "тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги " @@ -8652,7 +8696,7 @@ msgstr "Бош репликация сервери қуйидагига ўзга msgid "This server is configured as master in a replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Уланган бош серверларни кўрсатиш" @@ -8813,179 +8857,173 @@ msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация " "қилинмаган. Сиз уни конфигурация қилмоқчимисиз?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr " \"%s\" жараёни муваффақиятли якунланди." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Қайта ишловчи дастур" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "Сўровлар кеши" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Оқимлар" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Вақтинчалик маълумотлар" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Кечиктирилган қўйилмалар" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Индекс кеши" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Бирлашишлар" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Сортировка" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Транзакциялар координатори" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Барча жадвалларни ёпиш" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Очиқ жадваллар рўйхати" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Тобе серверлар ҳақида маълумот" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Репликация сервери аҳволи ҳақида маълумот" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "Сўровлар кешини дефрагментация қилиш" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "MySQL-сервернинг ҳозирги ҳолати" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Серверни танланг" -#: server_status.php:372 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "Статискани кўрсатиш" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Тобе сервер статуси жадвалини кўриш" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Янгилаш" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "секундига" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "секундига" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "ишлатилмоқда" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Паролни ўзгартирмаслик" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Очиқ жадваллар рўйхати" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Алоқалар" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "соатига" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "минутига" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "секундига" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "Сўров тури" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL-сервер \"%s\" давомида ишламоқда. Ишга туширилган вақт: \"%s\"." -#: server_status.php:633 +#: server_status.php:641 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -8993,19 +9031,19 @@ msgid "" "b> process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:635 +#: server_status.php:643 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:637 +#: server_status.php:645 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:639 +#: server_status.php:647 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -9019,15 +9057,15 @@ msgstr "" "сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот " "учун, <a href=\"#replication\">репликация бўлими</a>га киринг." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Репликация статуси" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Трафик" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9035,45 +9073,41 @@ msgstr "" "Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг " "учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Қабул қилинди" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Юборилди" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Уланишлар" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "Максимал уланишлар сони " -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Муваффақиятсиз уринишлар сони: " -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Узилди" -#: server_status.php:784 -msgid "Processes" -msgstr "Жараёнлар" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-серверга уланиб бўлмади" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -9082,16 +9116,16 @@ msgstr "" "Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз " "ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Бинар журнал кешини ишлатган транзакциялар сони." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9104,11 +9138,11 @@ msgstr "" "сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини " "ошириш тавсия этилади." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9116,7 +9150,7 @@ msgstr "" "Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик " "тузилган вақтинчалик жадваллар сони." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9124,31 +9158,31 @@ msgstr "" "\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар " "(масалан, калитлар такрорланиши оқибатида) сони." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Бажариладиган \"INSERT DELAYED\" сўровлар сони." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" "Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган " "қаторлар сони." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Бажарилган \"FLUSH\" буйруқлар сони." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Ички \"COMMIT\" буйруқлари сони." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -9158,7 +9192,7 @@ msgstr "" "бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган " "жадваллар сони." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -9167,7 +9201,7 @@ msgstr "" "Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати " "катта бўлса, сервер бир неча маротиба индексни кўриб чиқади." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -9176,7 +9210,7 @@ msgstr "" "Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан " "далолат беради." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -9186,7 +9220,7 @@ msgstr "" "Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш " "вақтида ўзгарувчи қиймати ошади." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9195,7 +9229,7 @@ msgstr "" "бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... " "DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9208,7 +9242,7 @@ msgstr "" "чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри " "фойдаланадиган бирлашмаларнинг мавжудлиги." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9220,35 +9254,35 @@ msgstr "" "индексланганлигини ёки сўровлар индексларнинг афзалликларидан " "фойдаланмаётганлигини билдиради." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ички буйруқлар сони." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "\"Кир\" саҳифаларнинг жорий сони." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Бўш саҳифалар сони." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -9258,7 +9292,7 @@ msgstr "" "устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра " "тозалаш ёки ўчириш имконияти йўқ." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9270,11 +9304,11 @@ msgstr "" "\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -9283,7 +9317,7 @@ msgstr "" "сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй " "беради." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9292,12 +9326,12 @@ msgstr "" "сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй " "беради" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9305,7 +9339,7 @@ msgstr "" "InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга " "бўлган кетма-кет сўровлар сони." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9318,51 +9352,51 @@ msgstr "" "Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми " "тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Тугалланмаган \"fsync()\" операциялари сони." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Тугалланмаган ўқиш операциялари сони." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Тугалланмаган ёзиш операциялари сони." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Умумий маълумотларни ўқиш операциялари сони." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Умумий маълумотларни ёзиш операциялари сони." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "Бажарилган \"doublewrite\" операциялари сони." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9370,35 +9404,35 @@ msgstr "" "Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган " "ёзувлар сони" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Журналга ёзишга бўлган сўровларсони." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Журнал файлидаги жисмоний ёзувлар сони." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Тугалланмаган журналга ёзиш сўровлари сони." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Тузилган саҳифалар сони." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9407,51 +9441,51 @@ msgstr "" "Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, " "уларни байтларга ўтказиш мумкин." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "Ўқилган саҳифалар сони." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Ёзилган саҳифалар сони." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Ҳозирда кутилаётган қатор блокировкалари сони." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Умумий кутилаётган қатор блокировкалари сони." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB жадвалидан ўчирилган қаторлар сони." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB жадвалига ёзилган қаторлар сони." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB жадвалларидан ўқилган қаторлар сони." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB жадвалларида янгиланган қаторлар сони." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9459,7 +9493,7 @@ msgstr "" "Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. " "Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9467,7 +9501,7 @@ msgstr "" "Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши " "ишлатилиш даражасини белгилайди." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9476,11 +9510,11 @@ msgstr "" "Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида " "ишлатилиши мумкин бўлган блоклар сонини билдиради." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9491,15 +9525,15 @@ msgstr "" "қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти " "қуйидагича ҳисобланди: Key_reads/Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9510,19 +9544,19 @@ msgstr "" "эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров " "компиляция жараёни бажарилмаганлигини билдиради." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" " "сўровларида қўйилишини кутаётган қаторлар сони." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9530,42 +9564,42 @@ msgstr "" "Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта " "бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Очиқ файллар сони." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" -"\" функцияси ёрдамида очилган файлга айтилади." +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" +"()\" функцияси ёрдамида очилган файлга айтилади." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Очиқ жадваллар сони." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "Сўровлар кеши учун бўш хотира ҳажми" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" "Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан " "қониқтирилган сўровлар сони." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "Сўровлар кешига қўшилган сўровлар сони." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9577,7 +9611,7 @@ msgstr "" "кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги " "ишлатилган) стратегиясидан фойдаланади" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9585,19 +9619,19 @@ msgstr "" "Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида " "сўндирилган сўровлар сони." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Кешда регистрация қилинган сўровлар сони." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9605,13 +9639,13 @@ msgstr "" "Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати " "0 бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда " "бажарилган бирлашма сўровлар сони." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9620,7 +9654,7 @@ msgstr "" "ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 " "бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9629,17 +9663,17 @@ msgstr "" "сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса " "ҳам, унчалик муҳим эмас." -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" "Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " "бирлашма сўровлар сони." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9647,13 +9681,13 @@ msgstr "" "Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта " "транзакцияларнинг умумий сони." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган " "бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9661,12 +9695,12 @@ msgstr "" "Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар " "сони." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9676,25 +9710,25 @@ msgstr "" "қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш " "зарур." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Сортировка қилинган қаторлар сони" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" "Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари " "сони." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9706,7 +9740,7 @@ msgstr "" "пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал" "(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9717,11 +9751,11 @@ msgstr "" "ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" " "ўзгарувчисининг қийматини ошириш зарур." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Очиқ жорий уланишлар сони." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9733,7 +9767,7 @@ msgstr "" "ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам " "оширмайди)." -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Фаол ҳолатда бўлган жараёнлар сони." @@ -9859,7 +9893,7 @@ msgstr "Сервер ўзгарувчилари ва созланишлари" msgid "Session value" msgstr "Сессия қийматлари" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Глобал қиймат" @@ -10171,9 +10205,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -11039,8 +11073,8 @@ msgstr "Кўриниш номини ўзгартириш" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "" -#~ "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]" -#~ "\"FAQ 3.11\"[/a]га қаранг" +#~ "Тахминий бўлиши мумкин. [a@./Documentation." +#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг" #, fuzzy #~| msgid "Query type" diff --git a/po/uz@latin.po b/po/uz@latin.po index dcf42d3be1..1cde5c14b5 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" +"Language: uz@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uz@latin\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -47,7 +47,7 @@ msgstr "Qidirish" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -84,7 +84,7 @@ msgstr "Indeks nomi" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "Tavsifi" @@ -168,7 +168,7 @@ msgstr "Tur" msgid "Null" msgstr "Null" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -197,7 +197,7 @@ msgstr "Aloqalar" msgid "Comments" msgstr "Izohlar" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -213,7 +213,7 @@ msgstr "Izohlar" msgid "No" msgstr "Yo‘q" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -273,7 +273,7 @@ msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi." msgid "Rename database to" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "Buyruq" @@ -384,7 +384,7 @@ msgstr "Qatorlarsoni" msgid "Size" msgstr "Hajmi" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "ishlatilmoqda" @@ -410,7 +410,7 @@ msgstr "Oxirgi yangilanish" msgid "Last check" msgstr "Oxirgi tekshiruv" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -604,65 +604,65 @@ msgstr "Quyidagi jadval(lar)da qidirish:" msgid "Inside column:" msgstr "Quyidagi maydon(lar)da qidirish: " -#: db_structure.php:59 +#: db_structure.php:60 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" jadvali tozalandi" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr " \"%s\" namoyishi o‘chirildi" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" jadvali o‘chirildi" -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "Kuzatish faol." -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "Kuzatish faol emas." -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "Namoyish" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "Jami" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi." -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -670,23 +670,23 @@ msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi." msgid "With selected:" msgstr "Belgilanganlarni: " -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Barchasini belgilash" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "Belgilashni bekor qilish" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -694,60 +694,60 @@ msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" msgid "Export" msgstr "Eksport" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Chop etish versiyasi" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "Tozalash" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "O‘chirish" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "Jadvalni tekshirish" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "Jadvalni optimallashtirish" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "Jadvalni tiklash" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "Jadval tahlili" -#: db_structure.php:521 +#: db_structure.php:522 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Ushbu jadvalga o‘tish" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Ma`lumotlar lug‘ati" @@ -762,7 +762,7 @@ msgstr "Kuzatilgan jadvallar" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -780,7 +780,7 @@ msgstr "Tuzildi" msgid "Updated" msgstr "Yangilandi" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Holat" @@ -880,8 +880,8 @@ msgstr "Damp \"%s\" faylida saqlandi." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." @@ -1101,181 +1101,7 @@ msgstr "Belgilangan foydalanuvchilarni o‘chirish" msgid "Close" msgstr "Yopish" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "Serverni tanlang" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "SQL Query box" -msgid "Live query chart" -msgstr "SQL so‘rovlari qutisi" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "Jami" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "," - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "Bekor qilish" - -#: js/messages.php:83 -#, fuzzy -#| msgid "Load" -msgid "Loading" -msgstr "Yuklash" - -#: js/messages.php:84 -#, fuzzy -#| msgid "Processes" -msgid "Processing Request" -msgstr "Jarayonlar" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "OK" - -#: js/messages.php:91 -#, fuzzy -#| msgid "Rename database to" -msgid "Renaming Databases" -msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" - -#: js/messages.php:92 -#, fuzzy -#| msgid "Rename database to" -msgid "Reload Database" -msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" - -#: js/messages.php:93 -#, fuzzy -#| msgid "Copy database to" -msgid "Copying Database" -msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" - -#: js/messages.php:94 -#, fuzzy -#| msgid "Charset" -msgid "Changing Charset" -msgstr "Kodirovka" - -#: js/messages.php:95 -#, fuzzy -#| msgid "Table must have at least one field." -msgid "Table must have at least one column" -msgstr "Jadvalda, hech bo‘lmaganda, bitta maydon bo‘lishi shart." - -#: js/messages.php:96 -#, fuzzy -#| msgid "Create table" -msgid "Create Table" -msgstr "Jadval tuzish" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "Jadvallarni ishlatish" - -#: js/messages.php:104 -#, fuzzy -#| msgid "Search" -msgid "Searching" -msgstr "Qidirish" - -#: js/messages.php:105 -#, fuzzy -#| msgid "SQL Query box" -msgid "Hide search results" -msgstr "SQL so‘rovlari qutisi" - -#: js/messages.php:106 -#, fuzzy -#| msgid "SQL Query box" -msgid "Show search results" -msgstr "SQL so‘rovlari qutisi" - -#: js/messages.php:107 -#, fuzzy -#| msgid "Browse" -msgid "Browsing" -msgstr "Ko‘rib chiqish" - -#: js/messages.php:108 -#, fuzzy -#| msgid "Deleting %s" -msgid "Deleting" -msgstr "\"%s\" o‘chirilmoqda" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -#, fuzzy -#| msgid "SQL Query box" -msgid "Hide query box" -msgstr "SQL so‘rovlari qutisi" - -#: js/messages.php:115 -#, fuzzy -#| msgid "SQL Query box" -msgid "Show query box" -msgstr "SQL so‘rovlari qutisi" - -#: js/messages.php:116 -#, fuzzy -#| msgid "Engines" -msgid "Inline Edit" -msgstr "Jadval turlari" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1284,7 +1110,225 @@ msgstr "Jadval turlari" msgid "Edit" msgstr "Tahrirlash" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "Serverni tanlang" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "SQL Query box" +msgid "Live query chart" +msgstr "SQL so‘rovlari qutisi" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Jami" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "," + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "Serverni tanlang" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "Jarayonlar" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "Ulanishlar" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL so‘rovlari" + +#: js/messages.php:89 server_status.php:386 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "Statiskani ko‘rsatish" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "Bekor qilish" + +#: js/messages.php:96 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Yuklash" + +#: js/messages.php:97 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Jarayonlar" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "OK" + +#: js/messages.php:104 +#, fuzzy +#| msgid "Rename database to" +msgid "Renaming Databases" +msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" + +#: js/messages.php:105 +#, fuzzy +#| msgid "Rename database to" +msgid "Reload Database" +msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" + +#: js/messages.php:106 +#, fuzzy +#| msgid "Copy database to" +msgid "Copying Database" +msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" + +#: js/messages.php:107 +#, fuzzy +#| msgid "Charset" +msgid "Changing Charset" +msgstr "Kodirovka" + +#: js/messages.php:108 +#, fuzzy +#| msgid "Table must have at least one field." +msgid "Table must have at least one column" +msgstr "Jadvalda, hech bo‘lmaganda, bitta maydon bo‘lishi shart." + +#: js/messages.php:109 +#, fuzzy +#| msgid "Create table" +msgid "Create Table" +msgstr "Jadval tuzish" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "Jadvallarni ishlatish" + +#: js/messages.php:117 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Qidirish" + +#: js/messages.php:118 +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide search results" +msgstr "SQL so‘rovlari qutisi" + +#: js/messages.php:119 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show search results" +msgstr "SQL so‘rovlari qutisi" + +#: js/messages.php:120 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Ko‘rib chiqish" + +#: js/messages.php:121 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "\"%s\" o‘chirilmoqda" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL so‘rovlari qutisi" + +#: js/messages.php:128 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL so‘rovlari qutisi" + +#: js/messages.php:129 +#, fuzzy +#| msgid "Engines" +msgid "Inline Edit" +msgstr "Jadval turlari" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1292,80 +1336,80 @@ msgstr "Tahrirlash" msgid "Save" msgstr "Saqlash" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Yashirish" -#: js/messages.php:122 +#: js/messages.php:135 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:123 +#: js/messages.php:136 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "E`tibor bermaslik" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "Bog‘liq kalitni tanlang" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "Tashqi kalitni tanlang" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "" "Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Ko‘rsatiladigan maydonni tanlash" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "" -#: js/messages.php:139 +#: js/messages.php:152 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Parol o‘rnatish" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generatsiya qilish" -#: js/messages.php:141 +#: js/messages.php:154 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Parolni o‘zgartirish" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dush" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1376,34 +1420,34 @@ msgstr "" "sanada chiqarilgan." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Oxirgi versiyani tekshirish" -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ushbu bazaga o‘tish" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Sadaqa" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Orqaga" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1411,96 +1455,96 @@ msgid "Next" msgstr "Keyingi" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jami" -#: js/messages.php:177 +#: js/messages.php:190 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Ikkilik" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "" -#: js/messages.php:179 +#: js/messages.php:192 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:180 +#: js/messages.php:193 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "May" -#: js/messages.php:182 +#: js/messages.php:195 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Iyun" -#: js/messages.php:183 +#: js/messages.php:196 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Iyul" -#: js/messages.php:184 +#: js/messages.php:197 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avg" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "" -#: js/messages.php:186 +#: js/messages.php:199 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1508,178 +1552,178 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "Dek" -#: js/messages.php:217 +#: js/messages.php:230 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Yaksh" -#: js/messages.php:218 +#: js/messages.php:231 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dush" -#: js/messages.php:219 +#: js/messages.php:232 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sesh" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "" -#: js/messages.php:222 +#: js/messages.php:235 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "Shan" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Yaksh" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dush" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sesh" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Chor" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pay" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Shan" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Viki" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "" -#: js/messages.php:260 +#: js/messages.php:273 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ishlatilmoqda" -#: js/messages.php:261 +#: js/messages.php:274 #, fuzzy #| msgid "per second" msgid "Second" @@ -1918,8 +1962,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish " "ssenariysidan%2$s foydalanishingiz mumkin." @@ -2066,7 +2110,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "Jadvallar" @@ -2210,7 +2254,7 @@ msgid "Documentation" msgstr "Dokumentatsiya" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL so‘rovi" @@ -2241,7 +2285,7 @@ msgid "Create PHP Code" msgstr "PHP-kod" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "Yangilash" @@ -4117,9 +4161,9 @@ msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]" -"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" -"larga qarang" +"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?" +"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql." +"com/19588]\"MySQL Bugs\"[/a]larga qarang" #: libraries/config/messages.inc.php:387 msgid "Disable use of INFORMATION_SCHEMA" @@ -4209,8 +4253,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]" -"\"pma_pdf_pages\"[/kbd]" +"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: " +"[kbd]\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:404 msgid "PDF schema: pages table" @@ -4224,8 +4268,8 @@ msgid "" msgstr "" "Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. " "Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]" -"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]" -"\"phpmyadmin\"[/kbd]" +"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: " +"[kbd]\"phpmyadmin\"[/kbd]" #: libraries/config/messages.inc.php:406 #, fuzzy @@ -4318,8 +4362,8 @@ msgstr "SSL ulanishdan foydalanish" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" -"\"pma_table_coords\"[/kbd]" +"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: " +"[kbd]\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:423 msgid "PDF schema: table coordinates" @@ -4975,8 +5019,8 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" -"\"FAQ 3.11\"[/a]ga qarang" +"Taxminiy bo‘lishi mumkin. [a@./Documentation." +"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" #: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 msgid "Connection for controluser as defined in your configuration failed." @@ -5170,8 +5214,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun " "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " @@ -5194,7 +5238,7 @@ msgstr "Siqish" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "Yo‘q" @@ -5468,7 +5512,7 @@ msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "Tugatish" @@ -5563,7 +5607,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Bufer puli" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB ahvoli" @@ -5961,8 +6005,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6087,7 +6131,7 @@ msgstr "Mavjud MIME turlari" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "Xost" @@ -6814,13 +6858,13 @@ msgid "Slave status" msgstr "Tobе rеplikatsiya sеrvеri statusi" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "O‘zgaruvchi" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Qiymati" @@ -7067,12 +7111,12 @@ msgid "Synchronize" msgstr "Sinxronizatsiya qilish" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "Ikkilik jurnal" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "O‘zgaruvchilar" @@ -7371,7 +7415,7 @@ msgstr "Bo‘laklarni (PARTITIONS) belgilash" msgid "+ Add a new value" msgstr "Yangi foydalanuvchi qo‘shish" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "Vaqt" @@ -7622,7 +7666,7 @@ msgid "Protocol version" msgstr "Protokol versiyasi" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "Foydalanuvchi" @@ -8133,17 +8177,17 @@ msgstr "\"%s\" jadvali mavjud emas!" msgid "Select binary log to view" msgstr "Ko‘rish uchun binar jurnalni tanlang" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "Fayllar soni " -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "So‘rovlarni qisqartirib ko‘rsatish" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "So‘rovlarning kengaytirilgan ko‘rinishi" @@ -8557,8 +8601,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni " "to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi " @@ -8698,7 +8742,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish" @@ -8860,181 +8904,175 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr " \"%s\" jarayoni muvaffaqiyatli yakunlandi." -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin \"%s\" oqim ishini tuguta olmadi. Ehtimol, u allaqachon yopiq." -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "Qayta ishlovchi dastur" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "So‘rovlar keshi" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "Oqimlar" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "Vaqtinchalik ma`lumotlar" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "Kechiktirilgan qo‘yilmalar" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "Indeks keshi" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "Birlashishlar" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "Sortirovka" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "Tranzaksiyalar koordinatori" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "Barcha jadvallarni yopish" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "Ochiq jadvallar ro‘yxati" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "Tobe serverlar haqida ma`lumot" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "Replikatsiya serveri ahvoli haqida ma`lumot" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "So‘rovlar keshini defragmentatsiya qilish" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "MySQL-serverning hozirgi holati" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Serverni tanlang" -#: server_status.php:372 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "Statiskani ko‘rsatish" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Yangilash" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "per second" msgid "second" msgstr "sekundiga" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "per second" msgid "seconds" msgstr "sekundiga" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "in use" msgid "minutes" msgstr "ishlatilmoqda" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Parolni o‘zgartirmaslik" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Ochiq jadvallar ro‘yxati" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Aloqalar" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "soatiga" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "minutiga" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "sekundiga" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "So‘rov turi" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 +#: server_status.php:623 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:623 +#: server_status.php:631 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" "MySQL-server \"%s\" davomida ishlamoqda. Ishga tushirilgan vaqt: \"%s\"." -#: server_status.php:633 +#: server_status.php:641 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -9043,21 +9081,21 @@ msgid "" msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:635 +#: server_status.php:643 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:637 +#: server_status.php:645 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:639 +#: server_status.php:647 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -9072,15 +9110,15 @@ msgstr "" "uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga " "kiring." -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "Replikatsiya statusi" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "Trafik" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9089,45 +9127,41 @@ msgstr "" "shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi " "mumkin." -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "Qabul qilindi" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "Yuborildi" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "Ulanishlar" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "Maksimal ulanishlar soni " -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "Muvaffaqiyatsiz urinishlar soni: " -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "Uzildi" -#: server_status.php:784 -msgid "Processes" -msgstr "Jarayonlar" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-serverga ulanib bo‘lmadi" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -9136,16 +9170,16 @@ msgstr "" "Binar jurnali keshini ishlatib, \"binlog_cache_size\" qiymatidan oshib, o‘z " "ichiga olgan SQL-jumlalari vaqtinchalik faylga saqlangan tranzaksiyalar soni." -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni." -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9158,11 +9192,11 @@ msgstr "" "saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini " "oshirish tavsiya etiladi." -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni." -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9170,7 +9204,7 @@ msgstr "" "Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik " "tuzilgan vaqtinchalik jadvallar soni." -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9178,31 +9212,31 @@ msgstr "" "\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar " "(masalan, kalitlar takrorlanishi oqibatida) soni." -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Bajariladigan \"INSERT DELAYED\" so‘rovlar soni." -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan " "qatorlar soni." -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "Bajarilgan \"FLUSH\" buyruqlar soni." -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "Ichki \"COMMIT\" buyruqlari soni." -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni." -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -9212,7 +9246,7 @@ msgstr "" "berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan " "jadvallar soni." -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -9221,7 +9255,7 @@ msgstr "" "Indeksdan birinchi yozuvni o‘qishga bo‘lgan so‘rovlar soni. O‘zgaruvchining " "qiymati katta bo‘lsa, server bir necha marotiba indeksni ko‘rib chiqadi." -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -9230,7 +9264,7 @@ msgstr "" "soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri " "indekslanganidan dalolat beradi." -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -9240,7 +9274,7 @@ msgstr "" "soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib " "chiqish vaqtida o‘zgaruvchi qiymati oshadi." -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9249,7 +9283,7 @@ msgstr "" "o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun " "qo‘llaniladi: ORDER BY ... DESC." -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9263,7 +9297,7 @@ msgstr "" "bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning " "mavjudligi." -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9275,35 +9309,35 @@ msgstr "" "jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning " "afzalliklaridan foydalanmayotganligini bildiradi." -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ichki buyruqlar soni." -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni." -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "Jadvalga yozuv qo‘yishga bo‘lgan so‘rovlar soni." -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")." -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "\"Kir\" sahifalarning joriy soni." -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Bufer pulidagi tozalash jarayoni (FLUSH) qo‘llanilgan sahifalar soni." -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "Bo‘sh sahifalar soni." -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -9313,7 +9347,7 @@ msgstr "" "ustidan o‘qish yoki yozish jarayoni bajarilmoqda, yoki ularni boshqa " "sabablarga ko‘ra tozalash yoki o‘chirish imkoniyati yo‘q." -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9325,11 +9359,11 @@ msgstr "" "mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "Bufer pulining umumiy hajmi (sahifalarda)." -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -9338,7 +9372,7 @@ msgstr "" "o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib " "chiqayotganda ro‘y beradi." -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9347,12 +9381,12 @@ msgstr "" "soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda " "ro‘y beradi" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB tomonidan amalga oshirilgan o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9360,7 +9394,7 @@ msgstr "" "InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan " "o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9374,51 +9408,51 @@ msgstr "" "bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta " "bo‘lmasligi kerak." -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni." -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni." -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "Tugallanmagan o‘qish operatsiyalari soni." -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "Tugallanmagan yozish operatsiyalari soni." -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni." -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni." -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni." -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni." -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9426,35 +9460,35 @@ msgstr "" "Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi " "kutayotgan yozuvlar soni" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni." -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "Jurnal faylidagi jismoniy yozuvlar soni." -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni." -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni." -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)." -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "Tuzilgan sahifalar soni." -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9463,51 +9497,51 @@ msgstr "" "Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, " "ularni baytlarga o‘tkazish mumkin." -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "O‘qilgan sahifalar soni." -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "Yozilgan sahifalar soni." -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "Hozirda kutilayotgan qator blokirovkalari soni." -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)." -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)." -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)." -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "Umumiy kutilayotgan qator blokirovkalari soni." -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni." -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB jadvaliga yozilgan qatorlar soni." -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni." -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB jadvallarida yangilangan qatorlar soni." -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9515,7 +9549,7 @@ msgstr "" "Indeks keshidagi o‘zgartirilgan, lekin hali diskka yozilmagan bloklar soni. " "Ushbu parametr, shuningdek, \"Not_flushed_key_blocks\" nomi bilan ham ma`lum." -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9523,7 +9557,7 @@ msgstr "" "Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi " "ishlatilish darajasini belgilaydi." -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9532,11 +9566,11 @@ msgstr "" "Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning " "o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi." -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "Indeks keshidagi bloklarni o‘qishga bo‘lgan so‘rovlar soni." -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9548,15 +9582,15 @@ msgstr "" "murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/" "Key_read_requests." -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "Blokni indeks keshiga yozishga bo‘lgan so‘rovlar soni." -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni." -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9567,19 +9601,19 @@ msgstr "" "effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov " "kompilyatsiya jarayoni bajarilmaganligini bildiradi." -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kolichestvo strok, ojidayushix vstavki v zaprosax \"INSERT DELAYED\" " "so‘rovlarida qo‘yilishini kutayotgan qatorlar soni." -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9587,42 +9621,42 @@ msgstr "" "Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta " "bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi." -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "Ochiq fayllar soni." -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ochiq oqimlar soni (jurnal fayllarida ko‘llaniladi). Oqim deb \"fopen" "()\" funksiyasi yordamida ochilgan faylga aytiladi." -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "Ochiq jadvallar soni." -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "" "So‘rovlar keshiga \"tushishlar\" soni, ya`ni keshda turgan so‘rovlar " "tomonidan qoniqtirilgan so‘rovlar soni." -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni." -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9634,7 +9668,7 @@ msgstr "" "beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least " "Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9642,19 +9676,19 @@ msgstr "" "Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida " "so‘ndirilgan so‘rovlar soni." -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "Keshda registratsiya qilingan so‘rovlar soni." -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni." -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)." -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9662,13 +9696,13 @@ msgstr "" "Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi " "qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi." -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "" "Bog‘lanish mavjud bo‘lgan jadvalda diapazon bo‘yicha qidiruv ishlatgan holda " "bajarilgan birlashma so‘rovlar soni." -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9678,7 +9712,7 @@ msgstr "" "o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya " "etiladi." -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9687,17 +9721,17 @@ msgstr "" "birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda " "katta bo‘lsa ham, unchalik muhim emas." -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "" "Birinchi jadvalga nisbatan to‘laligicha qidiruv ishlatgan holda bajarilgan " "birlashma so‘rovlar soni." -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Tobe oqim tomonidan joriy vaqtda ochilgan vaqtinchalik jadvallar soni." -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9705,13 +9739,13 @@ msgstr "" "Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan " "qayta tranzaksiyalarning umumiy soni." -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Agar ushbu server bosh serverga ulangan holda tobe server sifatida " "ishlayotgan bo‘lsa, ushbu o‘zgaruvchiga \"ON\" qiymati belgilanadi." -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9719,12 +9753,12 @@ msgstr "" "Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan " "oqimlar soni." -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time sekunddan ko‘proq vaqt bajarilgan so‘rovlar soni." -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9734,26 +9768,26 @@ msgstr "" "o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining " "qiymatini oshirish zarur." -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni." -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "Sortirovka qilingan qatorlar soni" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "" "Jadvalni to‘laligicha ko‘rib chiqish yordamida bajarilgan sortirovka " "operatsiyalari soni." -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Darhol qoniqtirilgan jadvalni blokirovka qilishga bo‘lgan so‘rovlar soni." -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9766,7 +9800,7 @@ msgstr "" "so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish " "kerak." -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9777,11 +9811,11 @@ msgstr "" "Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda " "\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur." -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "Ochiq joriy ulanishlar soni." -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9793,7 +9827,7 @@ msgstr "" "o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik " "ham oshirmaydi)." -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "Faol holatda bo‘lgan jarayonlar soni." @@ -9919,7 +9953,7 @@ msgstr "Server o‘zgaruvchilari va sozlanishlari" msgid "Session value" msgstr "Sessiya qiymatlari" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "Global qiymat" @@ -10233,9 +10267,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -10249,9 +10283,9 @@ msgstr "" "real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog " "adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, " "serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga " -"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/" -"kbd] deb belgilash tavsiya etiladi." +"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http" +"[/kbd] deb belgilash tavsiya etiladi." #: setup/lib/index.lib.php:270 #, fuzzy, php-format @@ -11105,8 +11139,8 @@ msgstr "Ko‘rinish nomini o‘zgartirish" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "" -#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" -#~ "\"FAQ 3.11\"[/a]ga qarang" +#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation." +#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" #, fuzzy #~| msgid "Query type" diff --git a/po/zh_CN.po b/po/zh_CN.po index f7b5d3eeea..4ebc2abbda 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-08 05:00+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -46,7 +46,7 @@ msgstr "搜索" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -83,7 +83,7 @@ msgstr "键名" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "说明" @@ -163,7 +163,7 @@ msgstr "类型" msgid "Null" msgstr "空" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -192,7 +192,7 @@ msgstr "链接到" msgid "Comments" msgstr "注释" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,7 +208,7 @@ msgstr "注释" msgid "No" msgstr "否" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -268,7 +268,7 @@ msgstr "已将数据库 %s 复制为 %s" msgid "Rename database to" msgstr "将数据库改名为" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "命令" @@ -368,7 +368,7 @@ msgstr "行数" msgid "Size" msgstr "大小" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "使用中" @@ -394,7 +394,7 @@ msgstr "最后更新" msgid "Last check" msgstr "最后检查" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -574,61 +574,61 @@ msgstr "于以下表:" msgid "Inside column:" msgstr "包含字段:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "没有在数据库中找到表" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "已清空表 %s " -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "已删除视图 %s" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "已删除表 %s " -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "追踪已启用。" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "追踪已禁用。" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "该视图最少包含的行数,参见%s文档%s。" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr "视图" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "复制" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "总计" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 服务器的默认存储引擎。" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -636,23 +636,23 @@ msgstr "%s 是此 MySQL 服务器的默认存储引擎。" msgid "With selected:" msgstr "选中项:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "全选" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "全不选" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "仅选择多余" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -660,54 +660,54 @@ msgstr "仅选择多余" msgid "Export" msgstr "导出" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "打印预览" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "清空" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "删除" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "检查表" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "优化表" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "修复表" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "分析表" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "添加表前缀" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "修改表前缀" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "复制表为新前缀" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "数据字典" @@ -722,7 +722,7 @@ msgstr "已追踪的表" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -740,7 +740,7 @@ msgstr "创建" msgid "Updated" msgstr "更新" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "状态" @@ -838,8 +838,8 @@ msgstr "转存已经保存到文件 %s 中。" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1027,149 +1027,7 @@ msgstr "正在删除选中的用户" msgid "Close" msgstr "关闭" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "选择服务器" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "显示查询图表" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "总计" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "取消" - -#: js/messages.php:83 -msgid "Loading" -msgstr "正在加载" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "正在处理请求" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "处理请求时发生错误" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "正在删除字段" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "正在添加主键" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "确定" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "正在重命名数据库" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "重新载入数据库" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "正在复制数据库" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "正在修改字符集" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "数据表至少要有一个字段。" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "新建数据表" - -#: js/messages.php:101 -#, fuzzy -#| msgid "Use Tables" -msgid "Insert Table" -msgstr "使用表" - -#: js/messages.php:104 -msgid "Searching" -msgstr "正在搜索" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "隐藏搜索结果" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "显示搜索结果" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "正在浏览" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "正在删除" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "" - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "隐藏查询框" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "显示查询框" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "快速编辑" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1178,7 +1036,191 @@ msgstr "快速编辑" msgid "Edit" msgstr "编辑" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "选择服务器" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query chart" +msgid "Live query chart" +msgstr "显示查询图表" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "总计" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "选择服务器" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "进程" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "连接" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL 查询" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "查询统计" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "取消" + +#: js/messages.php:96 +msgid "Loading" +msgstr "正在加载" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "正在处理请求" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "处理请求时发生错误" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "正在删除字段" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "正在添加主键" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "确定" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "正在重命名数据库" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "重新载入数据库" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "正在复制数据库" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "正在修改字符集" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "数据表至少要有一个字段。" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "新建数据表" + +#: js/messages.php:114 +#, fuzzy +#| msgid "Use Tables" +msgid "Insert Table" +msgstr "使用表" + +#: js/messages.php:117 +msgid "Searching" +msgstr "正在搜索" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "隐藏搜索结果" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "显示搜索结果" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "正在浏览" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "正在删除" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "" + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "隐藏查询框" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "显示查询框" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "快速编辑" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1186,67 +1228,67 @@ msgstr "编辑" msgid "Save" msgstr "保存" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "隐藏" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "隐藏搜索条件" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "显示搜索条件" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "忽略" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "选择外键" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "选择外键" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "请选择主键或唯一键" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "选择要显示的字段" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "尚未保存当前布局。如果继续将会丢失本次的修改。是否继续?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "给字段添加选项 " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "生成密码" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "生成" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "修改密码" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "更多" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1254,28 +1296,28 @@ msgid "" msgstr "有新的 phpMyAdmin 可用,请考虑升级。最新的版本是 %s,于 %s 发布。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ",最新稳定版本: " -#: js/messages.php:150 +#: js/messages.php:163 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "转到数据库" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "完成" #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "上个月" #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1283,231 +1325,231 @@ msgid "Next" msgstr "下个月" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "今天" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "一月" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "二月" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "三月" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "四月" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "五月" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "六月" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "七月" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "八月" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "九月" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "十月" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "十一月" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "十二月" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "星期日" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "星期一" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "星期四" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "星期五" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "周六" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "周" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "时" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "分" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "秒" @@ -1734,8 +1776,8 @@ msgstr "欢迎使用 %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。" @@ -1874,7 +1916,7 @@ msgstr "已共享" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "数据表" @@ -2002,7 +2044,7 @@ msgid "Documentation" msgstr "文档" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL 查询" @@ -2031,7 +2073,7 @@ msgid "Create PHP Code" msgstr "创建 PHP 代码" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "刷新" @@ -4652,8 +4694,8 @@ msgstr ",@TABLE@ 将变成数据表名" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。" @@ -4673,7 +4715,7 @@ msgstr "压缩:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "无" @@ -4902,7 +4944,7 @@ msgid "The row has been deleted" msgstr "已删除该行" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "杀死" @@ -4988,7 +5030,7 @@ msgstr "InnoDB 用于缓存数据和索引要使用的内存缓冲大小。" msgid "Buffer Pool" msgstr "缓冲池" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB 状态" @@ -5357,8 +5399,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。" #: libraries/engines/pbxt.lib.php:129 @@ -5457,7 +5499,7 @@ msgstr "显示 MIME 类型" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "主机" @@ -6154,13 +6196,13 @@ msgid "Slave status" msgstr "从服务器状态" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "变量" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "值" @@ -6383,12 +6425,12 @@ msgid "Synchronize" msgstr "同步" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "二进制日志" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "变量" @@ -6656,7 +6698,7 @@ msgstr "分区定义" msgid "+ Add a new value" msgstr "+ 添加" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "时间" @@ -6832,7 +6874,7 @@ msgid "Protocol version" msgstr "协议版本" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "用户" @@ -7266,17 +7308,17 @@ msgstr "文件不存在" msgid "Select binary log to view" msgstr "选择要查看的二进制日志" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "文件" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "截断显示的查询" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "显示完整查询" @@ -7661,12 +7703,12 @@ msgstr "删除与用户同名的数据库。" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容" -"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%" -"s。" +"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" +"限%s。" #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -7787,7 +7829,7 @@ msgstr "已成功修改主服务器到 %s" msgid "This server is configured as master in a replication process." msgstr "此服务器已被配置为一个复制进程中的主服务器。" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "查看主服务器状态" @@ -7928,191 +7970,187 @@ msgstr "" "此服务器尚未配置为一个复制进程中的从服务器。你想现在配置" "吗?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "已杀死线程 %s 。" -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "句柄" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "查询缓存" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "线程" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "临时数据" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "延迟插入" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "键缓存" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "多表查询" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "排序" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "事务协调" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "强制更新 (关闭) 所有表" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "显示打开的表" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "显示从服务器" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "显示从服务器状态" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "强制更新查询缓存" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "运行信息" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "选择服务器" -#: server_status.php:372 -msgid "Query statistics" -msgstr "查询统计" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "查看从服务器状态" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "刷新" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "秒" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "秒" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "分" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "保持原密码" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "显示打开的表" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "相关链接" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "每小时" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "每分钟" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "每秒" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "查询方式" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "此 MySQL 服务器已经运行了 %s,启动时间为 %s。" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8120,15 +8158,15 @@ msgstr "" "要获得更多关于此服务器的复制状态,请查看复制状态信息。" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "复制状态" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "流量" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8136,45 +8174,41 @@ msgstr "" "在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正" "确" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "已接收" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "已发送" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "连接" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "最大并发连接数" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "已失败" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "已取消" -#: server_status.php:784 -msgid "Processes" -msgstr "进程" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." msgstr "设置连接到 MySQL 服务器时是否使用 SSL 安全连接。" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8183,16 +8217,16 @@ msgstr "" "因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储" "的数量。" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "事务所用的临时二进制日志缓存的数量。" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8202,17 +8236,17 @@ msgstr "" "服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables " "很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "mysqld 已创建的临时文件的数量。" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "服务器执行语句时自动在内存中创建的临时表的数量。" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8220,29 +8254,29 @@ msgstr "" "发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复" "值) 。" -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延迟插入处理线程的数量。每张使用延迟插入的表都有自己的线程。" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "延迟插入已写入的行数。" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "已执行的强制更新 (FLUSH) 语句数。" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "已执行的内部提交 (COMMIT) 语句数。" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "从表中删除行的次数。" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8251,7 +8285,7 @@ msgstr "" "如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。" "Handler_discovery 表明了一张表被发现的次数。" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8260,14 +8294,14 @@ msgstr "" "读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫" "描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。" -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" "根据索引读取行的请求数。如果该值很大,说明你的查询和表都建立了很好的索引。" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8276,7 +8310,7 @@ msgstr "" "根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或" "进行完整表扫描,该值将会不断增长。" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8284,7 +8318,7 @@ msgstr "" "根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... " "DESC 的查询。" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8294,7 +8328,7 @@ msgstr "" "根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能" "有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8304,35 +8338,35 @@ msgstr "" "从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味" "着你的表没有做好索引,或者你的查询语句没有使用好索引字段。" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "内部回滚 (ROLLBACK) 语句数。" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "表中更新行的请求数。" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "表中插入行的请求数。" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "非空页数 (含脏页) 。" -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "当前脏页数。" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "请求更新的缓冲池页数。" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "空闲页数。" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8341,7 +8375,7 @@ msgstr "" "InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能" "被刷新或删除的。" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8352,11 +8386,11 @@ msgstr "" "公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data 。" -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "缓冲池总大小 (单位:页)。" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8364,24 +8398,24 @@ msgstr "" "InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发" "生。" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" "InnoDB 初始化的顺序预读数。这会在 InnoDB 执行一个顺序完整表扫描时发生。" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的逻辑读请求数。" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 进行逻辑读取时无法从缓冲池中获取而执行单页读取的次数。" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8393,85 +8427,85 @@ msgstr "" "必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这" "个值应该会很小。" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "写入 InnoDB 缓冲池的次数。" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "fsync() 总操作的次数。" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "当前挂起 fsync() 操作的数量。" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "当前挂起的读操作数。" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "当前挂起的写操作数。" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "读取的总数据量 (单位:字节)。" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "数据读取总数。" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "数据写入总数。" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "写入的总数据量 (单位:字节)。" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "以双写入操作写入的页数。" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "已经执行的双写入次数。" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因日志缓存太小而必须等待其被写入所造成的等待数。" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "日志写入请求数。" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "日志物理写入次数。" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 写入日志文件的次数。" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "当前挂起的 fsync 日志文件数。" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "当前挂起的日志写入数。" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "写入日志文件的字节数。" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "创建的页数。" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8479,75 +8513,75 @@ msgstr "" "编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方" "便地将这些值转化为字节数。" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "读取的页数。" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "写入的页数。" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "正在等待行锁的数量。" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的平均时间 (单位:毫秒)。" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待获得行锁的总时间 (单位:毫秒)。" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的最大时间 (单位:毫秒)。" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "等待行锁的次数。" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "从 InnoDB 表中删除的行数。" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 表中的行数。" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "从 InnoDB 表中读取的行数。" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行数。" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "键缓存中还没有被写入到磁盘的键块数。该值过去名为 Not_flushed_key_blocks 。" -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "键缓存中未使用的块数。你可以根据这个值判断当前使用了多少键缓存。" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "键缓存中已经使用的块数。该值指示在某个时刻使用了最多块数的数量。" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "从缓存中读取键块的请求次数。" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8556,15 +8590,15 @@ msgstr "" "从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size " "可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "将一个键块写入缓存的请求数。" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "将键块物理写入到磁盘的次数。" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8573,54 +8607,54 @@ msgstr "" "最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行" "相同的查询时的效率差异。默认值0表示还没有查询被编译。" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待写入延迟插入队列的行数。" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已经打开的表个数。如果该值很大,则说明表缓冲大小可能设置过小。" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "打开的文件个数。" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "打开的流个数 (主要用于日志记录)。" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "打开的数据表个数。" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "查询缓存中空闲的内存总数。" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "缓存命中数。" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "加入到缓存的查询数。" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8630,7 +8664,7 @@ msgstr "" "为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除" "哪个已缓存的查询。该信息可帮助您调整查询缓存大小。" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8638,19 +8672,19 @@ msgstr "" "未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的" "查询)。" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "在缓存中注册的查询数。" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "查询缓存中的总块数。" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "失败保护器的状态 (尚未应用)。" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8658,11 +8692,11 @@ msgstr "" "没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当" "的索引。" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "使用在关联表上使用范围搜索的多表查询的数量。" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8670,7 +8704,7 @@ msgstr "" "没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细" "检查是否已经为表建立了适当的索引。)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8678,36 +8712,36 @@ msgstr "" "在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影" "响。)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "在第一张表上进行了完整表扫描的多表查询数。" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "当前由从 SQL 线程打开的临时表的数量。" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "从 SQL 线程总共重试事务复制数。" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多时间的查询数。" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8716,23 +8750,23 @@ msgstr "" "排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 " "sort_buffer_size 的值。" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "局部范围完成的排序次数。" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "排序的行数。" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "扫描表完成的排序次数。" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要锁定表的次数。" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8742,7 +8776,7 @@ msgstr "" "无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题," "则应该首先检查您的查询语句,然后使用复制操作来分开表。" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8751,11 +8785,11 @@ msgstr "" "线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。" "如果该值是红色的,则应该增加 thread_cache_size 的值。" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "当前打开的连接数。" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8766,7 +8800,7 @@ msgstr "" "thread_cache_size 的值 (如果线程状况良好,这么做通常并不会带来显著的性能提" "升)。" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "非睡眠状态的线程数量。" @@ -8887,7 +8921,7 @@ msgstr "服务器变量和设置" msgid "Session value" msgstr "会话值" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "全局值" @@ -9975,8 +10009,8 @@ msgstr "将视图改名为" #~ "Note that not every result table can be put to the chart. See FAQ 6.29" #~ msgstr "" -#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" +#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" #~ msgid "Redraw" #~ msgstr "重绘" diff --git a/po/zh_TW.po b/po/zh_TW.po index 380322f2f0..2490ecb0fb 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 08:36-0400\n" +"POT-Creation-Date: 2011-06-17 10:06+0200\n" "PO-Revision-Date: 2011-06-12 05:41+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -45,7 +45,7 @@ msgstr "搜尋" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:79 +#: db_structure.php:536 enum_editor.php:63 js/messages.php:92 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316 #: libraries/common.lib.php:2246 libraries/core.lib.php:557 @@ -82,7 +82,7 @@ msgstr "鍵名" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1020 +#: server_status.php:1028 msgid "Description" msgstr "說明" @@ -162,7 +162,7 @@ msgstr "類型" msgid "Null" msgstr "空" -#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 +#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1243 @@ -191,7 +191,7 @@ msgstr "連結到" msgid "Comments" msgstr "註釋" -#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,7 +207,7 @@ msgstr "註釋" msgid "No" msgstr "否" -#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -267,7 +267,7 @@ msgstr "已將資料庫 %s 複製爲 %s" msgid "Rename database to" msgstr "將資料庫改名為" -#: db_operations.php:409 server_status.php:789 +#: db_operations.php:409 server_status.php:797 msgid "Command" msgstr "命令" @@ -367,7 +367,7 @@ msgstr "行數" msgid "Size" msgstr "大小" -#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749 +#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749 #: libraries/export/sql.php:1076 msgid "in use" msgstr "使用中" @@ -393,7 +393,7 @@ msgstr "最後更新" msgid "Last check" msgstr "最後檢查" -#: db_printview.php:220 db_structure.php:439 +#: db_printview.php:220 db_structure.php:440 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -573,61 +573,61 @@ msgstr "於以下表:" msgid "Inside column:" msgstr "於以下欄位:" -#: db_structure.php:59 +#: db_structure.php:60 msgid "No tables found in database" msgstr "沒有在資料庫中找到表" -#: db_structure.php:277 tbl_operations.php:688 +#: db_structure.php:278 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" msgstr "已清空表 %s " -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" msgstr "已刪除 view %s" -#: db_structure.php:286 tbl_operations.php:705 +#: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" msgstr "已刪除表 %s " -#: db_structure.php:293 tbl_create.php:295 +#: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." msgstr "追蹤已啓用" -#: db_structure.php:295 tbl_create.php:297 +#: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." msgstr "追蹤已停用" -#: db_structure.php:379 libraries/display_tbl.lib.php:2156 +#: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。" -#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 +#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 msgid "View" msgstr " view" -#: db_structure.php:444 libraries/db_structure.lib.php:40 +#: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:242 +#: server_replication.php:162 server_status.php:256 msgid "Replication" msgstr "複製" -#: db_structure.php:448 +#: db_structure.php:449 msgid "Sum" msgstr "總計" -#: db_structure.php:455 libraries/StorageEngine.class.php:351 +#: db_structure.php:456 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 伺服器的預設儲存引擎" -#: db_structure.php:483 db_structure.php:500 db_structure.php:501 +#: db_structure.php:484 db_structure.php:501 db_structure.php:502 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 @@ -635,23 +635,23 @@ msgstr "%s 是此 MySQL 伺服器的預設儲存引擎" msgid "With selected:" msgstr "選中項:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2292 +#: db_structure.php:487 libraries/display_tbl.lib.php:2292 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "全選" -#: db_structure.php:490 libraries/display_tbl.lib.php:2293 +#: db_structure.php:491 libraries/display_tbl.lib.php:2293 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" msgstr "全不選" -#: db_structure.php:495 +#: db_structure.php:496 msgid "Check tables having overhead" msgstr "僅選擇多餘" -#: db_structure.php:503 libraries/config/messages.inc.php:164 +#: db_structure.php:504 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310 #: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 @@ -659,54 +659,54 @@ msgstr "僅選擇多餘" msgid "Export" msgstr "匯出" -#: db_structure.php:505 db_structure.php:567 +#: db_structure.php:506 db_structure.php:568 #: libraries/display_tbl.lib.php:2399 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "列印預覽" -#: db_structure.php:509 libraries/common.lib.php:2959 +#: db_structure.php:510 libraries/common.lib.php:2959 #: libraries/common.lib.php:2960 msgid "Empty" msgstr "清空" -#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 +#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487 #: libraries/common.lib.php:2957 libraries/common.lib.php:2958 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" msgstr "刪除" -#: db_structure.php:513 tbl_operations.php:604 +#: db_structure.php:514 tbl_operations.php:604 msgid "Check table" msgstr "檢查表" -#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 +#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" msgstr "最佳化表" -#: db_structure.php:517 tbl_operations.php:640 +#: db_structure.php:518 tbl_operations.php:640 msgid "Repair table" msgstr "修復表" -#: db_structure.php:519 tbl_operations.php:627 +#: db_structure.php:520 tbl_operations.php:627 msgid "Analyze table" msgstr "分析表" -#: db_structure.php:521 +#: db_structure.php:522 msgid "Add prefix to table" msgstr "資料表名稱增加前綴文字" -#: db_structure.php:523 libraries/mult_submits.inc.php:246 +#: db_structure.php:524 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" msgstr "覆蓋資料表名稱的前綴文字" -#: db_structure.php:525 libraries/mult_submits.inc.php:246 +#: db_structure.php:526 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" msgstr "複製資料表名稱的前綴文字" -#: db_structure.php:574 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "資料字典" @@ -721,7 +721,7 @@ msgstr "已追蹤的表" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:788 +#: server_privileges.php:2059 server_status.php:796 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -739,7 +739,7 @@ msgstr "建立" msgid "Updated" msgstr "更新" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:791 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "狀態" @@ -837,8 +837,8 @@ msgstr "備份資料已儲存至檔案 %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制." #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1029,147 +1029,7 @@ msgstr "正在刪除選中的使用者" msgid "Close" msgstr "關閉" -#: js/messages.php:64 server_status.php:397 -#, fuzzy -#| msgid "Server Choice" -msgid "Live traffic chart" -msgstr "選擇伺服器" - -#: js/messages.php:65 server_status.php:400 -msgid "Live conn./process chart" -msgstr "" - -#: js/messages.php:66 server_status.php:429 -#, fuzzy -#| msgid "Show query chart" -msgid "Live query chart" -msgstr "顯示查詢圖表" - -#: js/messages.php:68 -msgid "Static data" -msgstr "" - -#. l10n: Total number of queries -#: js/messages.php:70 libraries/build_html_for_db.lib.php:45 -#: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:691 server_status.php:752 tbl_printview.php:348 -#: tbl_structure.php:790 -msgid "Total" -msgstr "總計" - -#. l10n: Other, small valued, queries -#: js/messages.php:72 server_status.php:592 -msgid "Other" -msgstr "" - -#. l10n: Thousands separator -#: js/messages.php:74 libraries/common.lib.php:1375 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: js/messages.php:76 libraries/common.lib.php:1377 -msgid "." -msgstr "." - -#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388 -#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 -#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 -msgid "Cancel" -msgstr "取消" - -#: js/messages.php:83 -msgid "Loading" -msgstr "載入中" - -#: js/messages.php:84 -msgid "Processing Request" -msgstr "要求處理中" - -#: js/messages.php:85 libraries/import/ods.php:80 -msgid "Error in Processing Request" -msgstr "要求處理得程序中有錯誤" - -#: js/messages.php:86 -msgid "Dropping Column" -msgstr "刪除欄位" - -#: js/messages.php:87 -msgid "Adding Primary Key" -msgstr "正在新增主鍵" - -#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386 -#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 -#: pmd_general.php:721 pmd_general.php:784 -msgid "OK" -msgstr "確定" - -#: js/messages.php:91 -msgid "Renaming Databases" -msgstr "更改資料庫名稱中" - -#: js/messages.php:92 -msgid "Reload Database" -msgstr "重新載入資料庫" - -#: js/messages.php:93 -msgid "Copying Database" -msgstr "複製資料庫中" - -#: js/messages.php:94 -msgid "Changing Charset" -msgstr "更改文字編碼" - -#: js/messages.php:95 -msgid "Table must have at least one column" -msgstr "資料表最少需要有一個欄位" - -#: js/messages.php:96 -msgid "Create Table" -msgstr "建立資料表" - -#: js/messages.php:101 -msgid "Insert Table" -msgstr "插入資料表" - -#: js/messages.php:104 -msgid "Searching" -msgstr "搜索中" - -#: js/messages.php:105 -msgid "Hide search results" -msgstr "隱藏搜尋結果" - -#: js/messages.php:106 -msgid "Show search results" -msgstr "顯示搜尋結果" - -#: js/messages.php:107 -msgid "Browsing" -msgstr "瀏覽" - -#: js/messages.php:108 -msgid "Deleting" -msgstr "刪除" - -#: js/messages.php:111 -msgid "" -"Note: If the file contains multiple tables, they will be combined into one" -msgstr "注意: 若檔案包含多個資料表, 它們會被結合成一個資料表." - -#: js/messages.php:114 -msgid "Hide query box" -msgstr "隱藏查詢框" - -#: js/messages.php:115 -msgid "Show query box" -msgstr "顯示查詢框" - -#: js/messages.php:116 -msgid "Inline Edit" -msgstr "快速編輯" - -#: js/messages.php:117 libraries/Index.class.php:465 +#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 #: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 #: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150 @@ -1178,7 +1038,189 @@ msgstr "快速編輯" msgid "Edit" msgstr "編輯" -#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:66 server_status.php:411 +#, fuzzy +#| msgid "Server Choice" +msgid "Live traffic chart" +msgstr "選擇伺服器" + +#: js/messages.php:67 server_status.php:414 +msgid "Live conn./process chart" +msgstr "" + +#: js/messages.php:68 server_status.php:443 +#, fuzzy +#| msgid "Show query chart" +msgid "Live query chart" +msgstr "顯示查詢圖表" + +#: js/messages.php:70 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:72 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "總計" + +#. l10n: Other, small valued, queries +#: js/messages.php:74 server_status.php:600 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:76 libraries/common.lib.php:1375 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:78 libraries/common.lib.php:1377 +msgid "." +msgstr "." + +#: js/messages.php:80 +msgid "kB sent since last refresh" +msgstr "" + +#: js/messages.php:81 +msgid "kB received since last refresh" +msgstr "" + +#: js/messages.php:82 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic (in kB)" +msgstr "選擇伺服器" + +#: js/messages.php:83 +msgid "Connections since last refresh" +msgstr "" + +#: js/messages.php:84 server_status.php:792 +msgid "Processes" +msgstr "處理" + +#: js/messages.php:85 +#, fuzzy +#| msgid "Connections" +msgid "Connections / Processes" +msgstr "連線" + +#: js/messages.php:86 +msgid "Issued queries since last refresh" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "SQL queries" +msgid "Issued queries" +msgstr "SQL 查詢" + +#: js/messages.php:89 server_status.php:386 +msgid "Query statistics" +msgstr "查詢統計" + +#: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 +#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 +msgid "Cancel" +msgstr "取消" + +#: js/messages.php:96 +msgid "Loading" +msgstr "載入中" + +#: js/messages.php:97 +msgid "Processing Request" +msgstr "要求處理中" + +#: js/messages.php:98 libraries/import/ods.php:80 +msgid "Error in Processing Request" +msgstr "要求處理得程序中有錯誤" + +#: js/messages.php:99 +msgid "Dropping Column" +msgstr "刪除欄位" + +#: js/messages.php:100 +msgid "Adding Primary Key" +msgstr "正在新增主鍵" + +#: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 +#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 +#: pmd_general.php:721 pmd_general.php:784 +msgid "OK" +msgstr "確定" + +#: js/messages.php:104 +msgid "Renaming Databases" +msgstr "更改資料庫名稱中" + +#: js/messages.php:105 +msgid "Reload Database" +msgstr "重新載入資料庫" + +#: js/messages.php:106 +msgid "Copying Database" +msgstr "複製資料庫中" + +#: js/messages.php:107 +msgid "Changing Charset" +msgstr "更改文字編碼" + +#: js/messages.php:108 +msgid "Table must have at least one column" +msgstr "資料表最少需要有一個欄位" + +#: js/messages.php:109 +msgid "Create Table" +msgstr "建立資料表" + +#: js/messages.php:114 +msgid "Insert Table" +msgstr "插入資料表" + +#: js/messages.php:117 +msgid "Searching" +msgstr "搜索中" + +#: js/messages.php:118 +msgid "Hide search results" +msgstr "隱藏搜尋結果" + +#: js/messages.php:119 +msgid "Show search results" +msgstr "顯示搜尋結果" + +#: js/messages.php:120 +msgid "Browsing" +msgstr "瀏覽" + +#: js/messages.php:121 +msgid "Deleting" +msgstr "刪除" + +#: js/messages.php:124 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one" +msgstr "注意: 若檔案包含多個資料表, 它們會被結合成一個資料表." + +#: js/messages.php:127 +msgid "Hide query box" +msgstr "隱藏查詢框" + +#: js/messages.php:128 +msgid "Show query box" +msgstr "顯示查詢框" + +#: js/messages.php:129 +msgid "Inline Edit" +msgstr "快速編輯" + +#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1186,67 +1228,67 @@ msgstr "編輯" msgid "Save" msgstr "儲存" -#: js/messages.php:119 libraries/display_tbl.lib.php:637 pmd_general.php:158 +#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "隱藏" -#: js/messages.php:122 +#: js/messages.php:135 msgid "Hide search criteria" msgstr "隱藏搜尋條件" -#: js/messages.php:123 +#: js/messages.php:136 msgid "Show search criteria" msgstr "顯示搜尋條件" -#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "忽略" -#: js/messages.php:129 +#: js/messages.php:142 msgid "Select referenced key" msgstr "選擇外部鍵" -#: js/messages.php:130 +#: js/messages.php:143 msgid "Select Foreign Key" msgstr "選擇外部鍵" -#: js/messages.php:131 +#: js/messages.php:144 msgid "Please select the primary key or a unique key" msgstr "請選擇主鍵或唯一鍵" -#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "選擇要顯示的欄位" -#: js/messages.php:133 +#: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "你尚未儲存修改的資料。請確認是否要捨棄這些資料?" -#: js/messages.php:136 +#: js/messages.php:149 msgid "Add an option for column " msgstr "新增選項給欄位 " -#: js/messages.php:139 +#: js/messages.php:152 msgid "Generate password" msgstr "產生密碼" -#: js/messages.php:140 libraries/replication_gui.lib.php:365 +#: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "產生" -#: js/messages.php:141 +#: js/messages.php:154 msgid "Change Password" msgstr "修改密碼" -#: js/messages.php:144 tbl_structure.php:471 +#: js/messages.php:157 tbl_structure.php:471 msgid "More" msgstr "更多" -#: js/messages.php:147 setup/lib/index.lib.php:158 +#: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1254,28 +1296,28 @@ msgid "" msgstr "有新的 phpMyAdmin 可用,請考慮升級。最新的版本是 %s,於 %s 發佈" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:149 +#: js/messages.php:162 msgid ", latest stable version:" msgstr ",最新穩定版本: " -#: js/messages.php:150 +#: js/messages.php:163 msgid "up to date" msgstr "最新" #. l10n: Display text for calendar close link -#: js/messages.php:168 +#: js/messages.php:181 msgid "Done" msgstr "完成" # 這應該是使用於選擇日期的月曆 #. l10n: Display text for previous month link in calendar -#: js/messages.php:170 +#: js/messages.php:183 msgid "Prev" msgstr "上個月" # 這應該使用於選擇日期的小月曆 #. l10n: Display text for next month link in calendar -#: js/messages.php:172 libraries/common.lib.php:2309 +#: js/messages.php:185 libraries/common.lib.php:2309 #: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 @@ -1283,231 +1325,231 @@ msgid "Next" msgstr "下個月" #. l10n: Display text for current month link in calendar -#: js/messages.php:174 +#: js/messages.php:187 msgid "Today" msgstr "今天" -#: js/messages.php:177 +#: js/messages.php:190 msgid "January" msgstr "一月" -#: js/messages.php:178 +#: js/messages.php:191 msgid "February" msgstr "二月" -#: js/messages.php:179 +#: js/messages.php:192 msgid "March" msgstr "三月" -#: js/messages.php:180 +#: js/messages.php:193 msgid "April" msgstr "四月" -#: js/messages.php:181 +#: js/messages.php:194 msgid "May" msgstr "五月" -#: js/messages.php:182 +#: js/messages.php:195 msgid "June" msgstr "六月" -#: js/messages.php:183 +#: js/messages.php:196 msgid "July" msgstr "七月" -#: js/messages.php:184 +#: js/messages.php:197 msgid "August" msgstr "八月" -#: js/messages.php:185 +#: js/messages.php:198 msgid "September" msgstr "九月" -#: js/messages.php:186 +#: js/messages.php:199 msgid "October" msgstr "十月" -#: js/messages.php:187 +#: js/messages.php:200 msgid "November" msgstr "十一月" -#: js/messages.php:188 +#: js/messages.php:201 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:192 libraries/common.lib.php:1512 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:194 libraries/common.lib.php:1514 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:196 libraries/common.lib.php:1516 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:198 libraries/common.lib.php:1518 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:200 libraries/common.lib.php:1520 +#: js/messages.php:213 libraries/common.lib.php:1520 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:202 libraries/common.lib.php:1522 +#: js/messages.php:215 libraries/common.lib.php:1522 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:204 libraries/common.lib.php:1524 +#: js/messages.php:217 libraries/common.lib.php:1524 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:206 libraries/common.lib.php:1526 +#: js/messages.php:219 libraries/common.lib.php:1526 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:208 libraries/common.lib.php:1528 +#: js/messages.php:221 libraries/common.lib.php:1528 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:210 libraries/common.lib.php:1530 +#: js/messages.php:223 libraries/common.lib.php:1530 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:212 libraries/common.lib.php:1532 +#: js/messages.php:225 libraries/common.lib.php:1532 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:214 libraries/common.lib.php:1534 +#: js/messages.php:227 libraries/common.lib.php:1534 msgid "Dec" msgstr "十二月" -#: js/messages.php:217 +#: js/messages.php:230 msgid "Sunday" msgstr "星期日" -#: js/messages.php:218 +#: js/messages.php:231 msgid "Monday" msgstr "星期一" -#: js/messages.php:219 +#: js/messages.php:232 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:220 +#: js/messages.php:233 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:221 +#: js/messages.php:234 msgid "Thursday" msgstr "星期四" -#: js/messages.php:222 +#: js/messages.php:235 msgid "Friday" msgstr "星期五" -#: js/messages.php:223 +#: js/messages.php:236 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:227 libraries/common.lib.php:1537 +#: js/messages.php:240 libraries/common.lib.php:1537 msgid "Sun" msgstr "週日" #. l10n: Short week day name -#: js/messages.php:229 libraries/common.lib.php:1539 +#: js/messages.php:242 libraries/common.lib.php:1539 msgid "Mon" msgstr "週一" #. l10n: Short week day name -#: js/messages.php:231 libraries/common.lib.php:1541 +#: js/messages.php:244 libraries/common.lib.php:1541 msgid "Tue" msgstr "週二" #. l10n: Short week day name -#: js/messages.php:233 libraries/common.lib.php:1543 +#: js/messages.php:246 libraries/common.lib.php:1543 msgid "Wed" msgstr "週三" #. l10n: Short week day name -#: js/messages.php:235 libraries/common.lib.php:1545 +#: js/messages.php:248 libraries/common.lib.php:1545 msgid "Thu" msgstr "週四" #. l10n: Short week day name -#: js/messages.php:237 libraries/common.lib.php:1547 +#: js/messages.php:250 libraries/common.lib.php:1547 msgid "Fri" msgstr "週五" #. l10n: Short week day name -#: js/messages.php:239 libraries/common.lib.php:1549 +#: js/messages.php:252 libraries/common.lib.php:1549 msgid "Sat" msgstr "週六" #. l10n: Minimal week day name -#: js/messages.php:243 +#: js/messages.php:256 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:245 +#: js/messages.php:258 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:247 +#: js/messages.php:260 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:249 +#: js/messages.php:262 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:251 +#: js/messages.php:264 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:253 +#: js/messages.php:266 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:255 +#: js/messages.php:268 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:257 +#: js/messages.php:270 msgid "Wk" msgstr "周" -#: js/messages.php:259 +#: js/messages.php:272 msgid "Hour" msgstr "時" -#: js/messages.php:260 +#: js/messages.php:273 msgid "Minute" msgstr "分" -#: js/messages.php:261 +#: js/messages.php:274 msgid "Second" msgstr "秒" @@ -1728,8 +1770,8 @@ msgstr "歡迎使用 %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "您可能還沒有建立設定檔案。您可以使用 %1$s設定指令%2$s 來建立一個設定檔案" @@ -1866,7 +1908,7 @@ msgstr "已共享" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:244 +#: server_status.php:258 msgid "Tables" msgstr "資料表" @@ -1994,7 +2036,7 @@ msgid "Documentation" msgstr "文件" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:231 server_status.php:793 +#: server_status.php:245 server_status.php:801 msgid "SQL query" msgstr "SQL 查詢" @@ -2023,7 +2065,7 @@ msgid "Create PHP Code" msgstr "建立 PHP 程式碼" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:380 server_status.php:413 server_status.php:441 +#: server_status.php:394 server_status.php:427 server_status.php:455 msgid "Refresh" msgstr "重新整理" @@ -4668,8 +4710,8 @@ msgstr ",@TABLE@ 將變成資料資料表名稱" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "這個值是使用 %1$sstrftime%2$s 來解析的,所以您能用時間格式的字元串。另外,下" "列內容也將被轉換:%3$s。其他文字將保持原樣。參見%4$s常見問題 (FAQ)%5$s" @@ -4691,7 +4733,7 @@ msgstr "壓縮:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:825 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 msgid "None" msgstr "無" @@ -4939,7 +4981,7 @@ msgid "The row has been deleted" msgstr "已刪除該行" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:821 +#: server_status.php:829 msgid "Kill" msgstr "中止" @@ -5028,7 +5070,7 @@ msgstr "InnoDB 用於快取資料和索引要使用的記憶體快取大小" msgid "Buffer Pool" msgstr "快取池" -#: libraries/engines/innodb.lib.php:135 server_status.php:291 +#: libraries/engines/innodb.lib.php:135 server_status.php:305 msgid "InnoDB Status" msgstr "InnoDB 狀態" @@ -5395,8 +5437,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s" #: libraries/engines/pbxt.lib.php:129 @@ -5495,7 +5537,7 @@ msgstr "顯示 MIME 類型" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:787 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 msgid "Host" msgstr "主機" @@ -6194,13 +6236,13 @@ msgid "Slave status" msgstr "從伺服器狀態" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1018 server_variables.php:66 +#: server_status.php:1026 server_variables.php:66 msgid "Variable" msgstr "變數" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1019 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "值" @@ -6425,12 +6467,12 @@ msgid "Synchronize" msgstr "同步" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:237 test/theme.php:119 +#: server_status.php:251 test/theme.php:119 msgid "Binary log" msgstr "二進制日誌" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:289 test/theme.php:103 +#: server_engines.php:129 server_status.php:303 test/theme.php:103 msgid "Variables" msgstr "變數" @@ -6705,7 +6747,7 @@ msgstr "分區定義" msgid "+ Add a new value" msgstr "+ 新增" -#: libraries/tbl_triggers.inc.php:27 server_status.php:790 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 msgid "Time" msgstr "時間" @@ -6882,7 +6924,7 @@ msgid "Protocol version" msgstr "協定版本" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:786 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 msgid "User" msgstr "使用者" @@ -7325,17 +7367,17 @@ msgstr "檔案不存在" msgid "Select binary log to view" msgstr "選擇要查看的二進制日誌" -#: server_binlog.php:122 server_status.php:246 +#: server_binlog.php:122 server_status.php:260 msgid "Files" msgstr "檔案" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 +#: server_status.php:806 msgid "Truncate Shown Queries" msgstr "截斷顯示的查詢" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:796 -#: server_status.php:798 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 +#: server_status.php:806 msgid "Show Full Queries" msgstr "顯示完整查詢" @@ -7720,8 +7762,8 @@ msgstr "刪除與使用者同名的資料庫" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表" "內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入" @@ -7847,7 +7889,7 @@ msgstr "權限已成功重新讀取." msgid "This server is configured as master in a replication process." msgstr "此伺服器已被設定爲一個複製程序中的主伺服器" -#: server_replication.php:182 server_status.php:266 +#: server_replication.php:182 server_status.php:280 msgid "Show master status" msgstr "查看主伺服器狀態" @@ -7988,206 +8030,202 @@ msgstr "" "此伺服器尚未設定爲一個複製程序中的從伺服器。您想現在設定" "嗎?" -#: server_status.php:105 +#: server_status.php:119 #, php-format msgid "Thread %s was successfully killed." msgstr "已中止程序 %s " -#: server_status.php:107 +#: server_status.php:121 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉" -#: server_status.php:234 +#: server_status.php:248 msgid "Handler" msgstr "處理器" -#: server_status.php:235 +#: server_status.php:249 msgid "Query cache" msgstr "查詢快取" -#: server_status.php:236 +#: server_status.php:250 msgid "Threads" msgstr "程序" -#: server_status.php:238 +#: server_status.php:252 msgid "Temporary data" msgstr "臨時資料" -#: server_status.php:239 +#: server_status.php:253 msgid "Delayed inserts" msgstr "延遲插入" -#: server_status.php:240 +#: server_status.php:254 msgid "Key cache" msgstr "鍵快取" -#: server_status.php:241 +#: server_status.php:255 msgid "Joins" msgstr "多表查詢" -#: server_status.php:243 +#: server_status.php:257 msgid "Sorting" msgstr "排序" -#: server_status.php:245 +#: server_status.php:259 msgid "Transaction coordinator" msgstr "交易協調" -#: server_status.php:256 +#: server_status.php:270 msgid "Flush (close) all tables" msgstr "強制更新 (關閉) 所有表" -#: server_status.php:258 +#: server_status.php:272 msgid "Show open tables" msgstr "顯示開啟的表" -#: server_status.php:263 +#: server_status.php:277 msgid "Show slave hosts" msgstr "顯示從伺服器" -#: server_status.php:269 +#: server_status.php:283 msgid "Show slave status" msgstr "顯示從伺服器狀態" -#: server_status.php:274 +#: server_status.php:288 msgid "Flush query cache" msgstr "強制更新查詢快取" -#: server_status.php:366 +#: server_status.php:380 msgid "Runtime Information" msgstr "運行資訊" -#: server_status.php:371 +#: server_status.php:385 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "選擇伺服器" -#: server_status.php:372 -msgid "Query statistics" -msgstr "查詢統計" - -#: server_status.php:373 +#: server_status.php:387 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "查看從伺服器狀態" -#: server_status.php:383 server_status.php:416 +#: server_status.php:397 server_status.php:430 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "重新整理" -#: server_status.php:384 server_status.php:417 +#: server_status.php:398 server_status.php:431 #, fuzzy #| msgid "Second" msgid "second" msgstr "秒" -#: server_status.php:385 server_status.php:386 server_status.php:387 -#: server_status.php:388 server_status.php:389 server_status.php:418 -#: server_status.php:419 server_status.php:420 server_status.php:421 -#: server_status.php:422 +#: server_status.php:399 server_status.php:400 server_status.php:401 +#: server_status.php:402 server_status.php:403 server_status.php:432 +#: server_status.php:433 server_status.php:434 server_status.php:435 +#: server_status.php:436 #, fuzzy #| msgid "Second" msgid "seconds" msgstr "秒" -#: server_status.php:390 server_status.php:391 server_status.php:392 -#: server_status.php:393 server_status.php:423 server_status.php:424 -#: server_status.php:425 server_status.php:426 +#: server_status.php:404 server_status.php:405 server_status.php:406 +#: server_status.php:407 server_status.php:437 server_status.php:438 +#: server_status.php:439 server_status.php:440 #, fuzzy #| msgid "Minute" msgid "minutes" msgstr "分" -#: server_status.php:446 +#: server_status.php:460 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "保持原密碼" -#: server_status.php:451 +#: server_status.php:465 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "顯示開啟的表" -#: server_status.php:455 +#: server_status.php:469 msgid "Filter by category..." msgstr "" -#: server_status.php:468 +#: server_status.php:482 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "相關連結" -#: server_status.php:513 server_status.php:545 server_status.php:666 -#: server_status.php:711 +#: server_status.php:526 server_status.php:561 server_status.php:674 +#: server_status.php:719 msgid "per hour" msgstr "每小時" -#: server_status.php:516 +#: server_status.php:530 msgid "per minute" msgstr "每分鐘" -#: server_status.php:521 +#: server_status.php:535 msgid "per second" msgstr "每秒" -#: server_status.php:540 +#: server_status.php:556 msgid "Query type" msgstr "查詢方式" #. l10n: # = Amount of queries -#: server_status.php:543 +#: server_status.php:559 msgid "#" msgstr "" -#: server_status.php:615 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - #: server_status.php:623 #, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:631 +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s" -#: server_status.php:633 +#: server_status.php:641 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:635 +#: server_status.php:643 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:637 +#: server_status.php:645 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:639 +#: server_status.php:647 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" "要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊" -#: server_status.php:649 +#: server_status.php:657 msgid "Replication status" msgstr "複製狀態" -#: server_status.php:665 +#: server_status.php:673 msgid "Traffic" msgstr "流量" -#: server_status.php:665 +#: server_status.php:673 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8195,45 +8233,41 @@ msgstr "" "在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正" "確" -#: server_status.php:671 +#: server_status.php:679 msgid "Received" msgstr "已接收" -#: server_status.php:681 +#: server_status.php:689 msgid "Sent" msgstr "已發送" -#: server_status.php:710 +#: server_status.php:718 msgid "Connections" msgstr "連線" -#: server_status.php:717 +#: server_status.php:725 msgid "max. concurrent connections" msgstr "最大同時連線數" -#: server_status.php:724 +#: server_status.php:732 msgid "Failed attempts" msgstr "已失敗" -#: server_status.php:738 +#: server_status.php:746 msgid "Aborted" msgstr "已取消" -#: server_status.php:784 -msgid "Processes" -msgstr "處理" - -#: server_status.php:785 +#: server_status.php:793 msgid "ID" msgstr "ID" -#: server_status.php:846 +#: server_status.php:854 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "無法連線到 MySQL 伺服器" -#: server_status.php:847 +#: server_status.php:855 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8242,16 +8276,16 @@ msgstr "" "因交易使用的臨時二進制日誌快取超出 binlog_cache_size 的設定而使用臨時檔案儲存" "的數量" -#: server_status.php:848 +#: server_status.php:856 msgid "The number of transactions that used the temporary binary log cache." msgstr "交易所用的臨時二進制日誌快取的數量" -#: server_status.php:849 +#: server_status.php:857 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:850 +#: server_status.php:858 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8261,46 +8295,46 @@ msgstr "" "伺服器執行指令時自動在硬碟上建立的臨時表的數量。如果 Created_tmp_disk_tables " "很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存臨時表而非硬碟" -#: server_status.php:851 +#: server_status.php:859 msgid "How many temporary files mysqld has created." msgstr "mysqld 已建立的臨時檔案的數量" -#: server_status.php:852 +#: server_status.php:860 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量" -#: server_status.php:853 +#: server_status.php:861 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值) " -#: server_status.php:854 +#: server_status.php:862 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延遲插入處理程序的數量。每張使用延遲插入的表都有自己的程序" -#: server_status.php:855 +#: server_status.php:863 msgid "The number of INSERT DELAYED rows written." msgstr "延遲插入已寫入的行數" -#: server_status.php:856 +#: server_status.php:864 msgid "The number of executed FLUSH statements." msgstr "已執行的強制更新 (FLUSH) 指令數" -#: server_status.php:857 +#: server_status.php:865 msgid "The number of internal COMMIT statements." msgstr "已執行的內部送出 (COMMIT) 指令數" -#: server_status.php:858 +#: server_status.php:866 msgid "The number of times a row was deleted from a table." msgstr "從資料表中刪除行的次數" -#: server_status.php:859 +#: server_status.php:867 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8309,7 +8343,7 @@ msgstr "" "如果知道一個資料表的名字,MySQL 伺服器可以詢問 NDB 集羣儲存引擎,這被稱爲“發" "現”Handler_discovery 表明瞭一個資料表被發現的次數" -#: server_status.php:860 +#: server_status.php:868 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8318,14 +8352,14 @@ msgstr "" "讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃" "描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo " -#: server_status.php:861 +#: server_status.php:869 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" "根據索引讀取行的請求數。如果該值很大,說明您的查詢和表都建立了很好的索引" -#: server_status.php:862 +#: server_status.php:870 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8334,7 +8368,7 @@ msgstr "" "根據索引順序讀取下一行的請求數。如果您在查詢一個已索引的欄位且限制了範圍,或" "進行完整表掃描,該值將會不斷增長" -#: server_status.php:863 +#: server_status.php:871 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8342,7 +8376,7 @@ msgstr "" "根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY ... " "DESC 的查詢" -#: server_status.php:864 +#: server_status.php:872 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8352,7 +8386,7 @@ msgstr "" "根據固定位置讀取行的請求數。如果您執行很多需要排序的查詢,該值會很高。您可能" "有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢" -#: server_status.php:865 +#: server_status.php:873 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8362,35 +8396,35 @@ msgstr "" "從資料檔案中讀取行的請求數。如果您在掃描很多表,該值會很大。通常情況下這意味" "着您的表沒有做好索引,或者您的查詢指令沒有使用好索引欄位" -#: server_status.php:866 +#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "內部回滾 (ROLLBACK) 指令數" -#: server_status.php:867 +#: server_status.php:875 msgid "The number of requests to update a row in a table." msgstr "資料表中更新行的請求數" -#: server_status.php:868 +#: server_status.php:876 msgid "The number of requests to insert a row in a table." msgstr "資料表中插入行的請求數" -#: server_status.php:869 +#: server_status.php:877 msgid "The number of pages containing data (dirty or clean)." msgstr "非空頁數 (含髒頁) " -#: server_status.php:870 +#: server_status.php:878 msgid "The number of pages currently dirty." msgstr "目前髒頁數" -#: server_status.php:871 +#: server_status.php:879 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "請求更新的快取池頁數" -#: server_status.php:872 +#: server_status.php:880 msgid "The number of free pages." msgstr "空閒頁數" -#: server_status.php:873 +#: server_status.php:881 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8399,7 +8433,7 @@ msgstr "" "InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能" "被重新整理或刪除的" -#: server_status.php:874 +#: server_status.php:882 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8410,11 +8444,11 @@ msgstr "" "公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data " -#: server_status.php:875 +#: server_status.php:883 msgid "Total size of buffer pool, in pages." msgstr "快取池總大小 (單位:頁)" -#: server_status.php:876 +#: server_status.php:884 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8422,23 +8456,23 @@ msgstr "" "InnoDB 原始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時" "發生" -#: server_status.php:877 +#: server_status.php:885 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "InnoDB 原始化的順序預讀數。這會在 InnoDB 執行一個順序完整表掃描時發生" -#: server_status.php:878 +#: server_status.php:886 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的邏輯讀請求數" -#: server_status.php:879 +#: server_status.php:887 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 進行邏輯讀取時無法從快取池中取得而執行單頁讀取的次數" -#: server_status.php:880 +#: server_status.php:888 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8450,85 +8484,85 @@ msgstr "" "必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正" "確,這個值應該會很小" -#: server_status.php:881 +#: server_status.php:889 msgid "The number writes done to the InnoDB buffer pool." msgstr "寫入 InnoDB 快取池的次數" -#: server_status.php:882 +#: server_status.php:890 msgid "The number of fsync() operations so far." msgstr "fsync() 總操作的次數" -#: server_status.php:883 +#: server_status.php:891 msgid "The current number of pending fsync() operations." msgstr "目前掛起 fsync() 操作的數量" -#: server_status.php:884 +#: server_status.php:892 msgid "The current number of pending reads." msgstr "目前掛起的讀操作數" -#: server_status.php:885 +#: server_status.php:893 msgid "The current number of pending writes." msgstr "目前掛起的寫操作數" -#: server_status.php:886 +#: server_status.php:894 msgid "The amount of data read so far, in bytes." msgstr "讀取的總資料量 (單位:字元)" -#: server_status.php:887 +#: server_status.php:895 msgid "The total number of data reads." msgstr "資料讀取總數" -#: server_status.php:888 +#: server_status.php:896 msgid "The total number of data writes." msgstr "資料寫入總數" -#: server_status.php:889 +#: server_status.php:897 msgid "The amount of data written so far, in bytes." msgstr "寫入的總資料量 (單位:字元)" -#: server_status.php:890 +#: server_status.php:898 msgid "The number of pages that have been written for doublewrite operations." msgstr "以雙寫入操作寫入的頁數" -#: server_status.php:891 +#: server_status.php:899 msgid "The number of doublewrite operations that have been performed." msgstr "已經執行的雙寫入次數" -#: server_status.php:892 +#: server_status.php:900 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因日誌快取太小而必須等待其被寫入所造成的等待數" -#: server_status.php:893 +#: server_status.php:901 msgid "The number of log write requests." msgstr "日誌寫入請求數" -#: server_status.php:894 +#: server_status.php:902 msgid "The number of physical writes to the log file." msgstr "日誌物理寫入次數" -#: server_status.php:895 +#: server_status.php:903 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 寫入日志檔案的次數" -#: server_status.php:896 +#: server_status.php:904 msgid "The number of pending log file fsyncs." msgstr "目前掛起的 fsync 日志檔案數" -#: server_status.php:897 +#: server_status.php:905 msgid "Pending log file writes." msgstr "目前掛起的日誌寫入數" -#: server_status.php:898 +#: server_status.php:906 msgid "The number of bytes written to the log file." msgstr "寫入日志檔案的字元數" -#: server_status.php:899 +#: server_status.php:907 msgid "The number of pages created." msgstr "建立的頁數" -#: server_status.php:900 +#: server_status.php:908 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8536,75 +8570,75 @@ msgstr "" "編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方" "便地將這些值轉化爲字元數" -#: server_status.php:901 +#: server_status.php:909 msgid "The number of pages read." msgstr "讀取的頁數" -#: server_status.php:902 +#: server_status.php:910 msgid "The number of pages written." msgstr "寫入的頁數" -#: server_status.php:903 +#: server_status.php:911 msgid "The number of row locks currently being waited for." msgstr "正在等待行鎖的數量" -#: server_status.php:904 +#: server_status.php:912 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的平均時間 (單位:毫秒)" -#: server_status.php:905 +#: server_status.php:913 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待取得行鎖的總時間 (單位:毫秒)" -#: server_status.php:906 +#: server_status.php:914 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的最大時間 (單位:毫秒)" -#: server_status.php:907 +#: server_status.php:915 msgid "The number of times a row lock had to be waited for." msgstr "等待行鎖的次數" -#: server_status.php:908 +#: server_status.php:916 msgid "The number of rows deleted from InnoDB tables." msgstr "從 InnoDB 資料表中刪除的行數" -#: server_status.php:909 +#: server_status.php:917 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 資料表中的行數" -#: server_status.php:910 +#: server_status.php:918 msgid "The number of rows read from InnoDB tables." msgstr "從 InnoDB 資料表中讀取的行數" -#: server_status.php:911 +#: server_status.php:919 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行數" -#: server_status.php:912 +#: server_status.php:920 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "鍵快取中還沒有被寫入到硬碟的鍵塊數。該值過去名爲 Not_flushed_key_blocks " -#: server_status.php:913 +#: server_status.php:921 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "鍵快取中未使用的塊數。您可以根據這個值判斷目前使用了多少鍵快取" -#: server_status.php:914 +#: server_status.php:922 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "鍵快取中已經使用的塊數。該值指示在某個時刻使用了最多塊數的數量" -#: server_status.php:915 +#: server_status.php:923 msgid "The number of requests to read a key block from the cache." msgstr "從快取中讀取鍵塊的請求次數" -#: server_status.php:916 +#: server_status.php:924 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8613,15 +8647,15 @@ msgstr "" "從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size " "可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出" -#: server_status.php:917 +#: server_status.php:925 msgid "The number of requests to write a key block to the cache." msgstr "將一個鍵塊寫入快取的請求數" -#: server_status.php:918 +#: server_status.php:926 msgid "The number of physical writes of a key block to disk." msgstr "將鍵塊物理寫入到硬碟的次數" -#: server_status.php:919 +#: server_status.php:927 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8630,54 +8664,54 @@ msgstr "" "最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進" "行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯" -#: server_status.php:920 +#: server_status.php:928 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:921 +#: server_status.php:929 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待寫入延遲插入隊列的行數" -#: server_status.php:922 +#: server_status.php:930 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已經開啟的表個數。如果該值很大,則說明表快取大小可能設定過小" -#: server_status.php:923 +#: server_status.php:931 msgid "The number of files that are open." msgstr "開啟的檔案個數" -#: server_status.php:924 +#: server_status.php:932 msgid "The number of streams that are open (used mainly for logging)." msgstr "開啟的流個數 (主要用於日誌記錄)" -#: server_status.php:925 +#: server_status.php:933 msgid "The number of tables that are open." msgstr "開啟的資料表個數" -#: server_status.php:926 +#: server_status.php:934 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:927 +#: server_status.php:935 msgid "The amount of free memory for query cache." msgstr "查詢快取中空閒的記憶體總數" -#: server_status.php:928 +#: server_status.php:936 msgid "The number of cache hits." msgstr "快取命中數" -#: server_status.php:929 +#: server_status.php:937 msgid "The number of queries added to the cache." msgstr "加入到快取的查詢數" -#: server_status.php:930 +#: server_status.php:938 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8687,7 +8721,7 @@ msgstr "" "爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除" "哪個已快取的查詢。該資訊可幫助您調整查詢快取大小" -#: server_status.php:931 +#: server_status.php:939 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8695,19 +8729,19 @@ msgstr "" "未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的" "查詢)" -#: server_status.php:932 +#: server_status.php:940 msgid "The number of queries registered in the cache." msgstr "在快取中註冊的查詢數" -#: server_status.php:933 +#: server_status.php:941 msgid "The total number of blocks in the query cache." msgstr "查詢快取中的總塊數" -#: server_status.php:934 +#: server_status.php:942 msgid "The status of failsafe replication (not yet implemented)." msgstr "失敗保護器的狀態 (尚未套用)" -#: server_status.php:935 +#: server_status.php:943 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8715,11 +8749,11 @@ msgstr "" "沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當" "的索引" -#: server_status.php:936 +#: server_status.php:944 msgid "The number of joins that used a range search on a reference table." msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量" -#: server_status.php:937 +#: server_status.php:945 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8727,7 +8761,7 @@ msgstr "" "沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細" "檢查是否已經爲表建立了適當的索引。)" -#: server_status.php:938 +#: server_status.php:946 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8735,36 +8769,36 @@ msgstr "" "在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影" "響。)" -#: server_status.php:939 +#: server_status.php:947 msgid "The number of joins that did a full scan of the first table." msgstr "在第一個資料表上進行了完整表掃描的多表查詢數" -#: server_status.php:940 +#: server_status.php:948 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "目前由從 SQL 程序開啟的臨時表的數量" -#: server_status.php:941 +#: server_status.php:949 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "從 SQL 程序總共重試交易複製數" -#: server_status.php:942 +#: server_status.php:950 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果該值爲 ON,則這臺伺服器是一臺已經連線到主伺服器的從伺服器" -#: server_status.php:943 +#: server_status.php:951 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量" -#: server_status.php:944 +#: server_status.php:952 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多時間的查詢數" -#: server_status.php:945 +#: server_status.php:953 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8773,23 +8807,23 @@ msgstr "" "排序算法使用歸併的次數。如果該值很大,您應該考慮增加系統變數 " "sort_buffer_size 的值" -#: server_status.php:946 +#: server_status.php:954 msgid "The number of sorts that were done with ranges." msgstr "局部範圍完成的排序次數" -#: server_status.php:947 +#: server_status.php:955 msgid "The number of sorted rows." msgstr "排序的行數" -#: server_status.php:948 +#: server_status.php:956 msgid "The number of sorts that were done by scanning the table." msgstr "掃描表完成的排序次數" -#: server_status.php:949 +#: server_status.php:957 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要鎖定表的次數" -#: server_status.php:950 +#: server_status.php:958 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8799,7 +8833,7 @@ msgstr "" "無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題," "則應該首先檢查您的查詢指令,然後使用複製操作來分開表" -#: server_status.php:951 +#: server_status.php:959 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8808,11 +8842,11 @@ msgstr "" "程序快取中程序的數量。快取命中率可以由 Threads_created/Connections 計算得出如" "果該值是紅色的,則應該增加 thread_cache_size 的值" -#: server_status.php:952 +#: server_status.php:960 msgid "The number of currently open connections." msgstr "目前開啟的連線數" -#: server_status.php:953 +#: server_status.php:961 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8822,7 +8856,7 @@ msgstr "" "目前用於控制連線的程序數。如果 Threads_created 很大,您可能需要增加 " "thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" -#: server_status.php:954 +#: server_status.php:962 msgid "The number of threads that are not sleeping." msgstr "非睡眠狀態的程序數量" @@ -8943,7 +8977,7 @@ msgstr "伺服器變數和設定" msgid "Session value" msgstr "連線值" -#: server_variables.php:69 server_variables.php:108 +#: server_variables.php:69 server_variables.php:110 msgid "Global value" msgstr "全域值" @@ -10052,8 +10086,8 @@ msgstr "將 view改名爲" #~ "Note that not every result table can be put to the chart. See FAQ 6.29" #~ msgstr "" -#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" +#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" #~ msgid "Redraw" #~ msgstr "重繪" From e19aae70ee054207329b19e998c7ef138b13d0d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:23:57 +0200 Subject: [PATCH 235/340] Translation update done using Pootle. --- po/cs.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index 6b252ec721..9c3e4aeacb 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:06+0200\n" -"PO-Revision-Date: 2011-06-07 13:35+0200\n" +"PO-Revision-Date: 2011-06-17 10:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -1012,10 +1012,9 @@ msgstr "Nebylo zadáno číslo!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#, fuzzy #| msgid "Log file count" msgid "Total count" -msgstr "Počet souborů s logy" +msgstr "Celkový počet" #: js/messages.php:54 msgid "The host name is empty!" From f69ced64462ac15db958c560b5fd6acc7329bd8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:24:12 +0200 Subject: [PATCH 236/340] Translation update done using Pootle. --- po/cs.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index 9c3e4aeacb..3eb6e02cb6 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:06+0200\n" -"PO-Revision-Date: 2011-06-17 10:23+0200\n" +"PO-Revision-Date: 2011-06-17 10:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -1060,10 +1060,9 @@ msgid "Edit" msgstr "Upravit" #: js/messages.php:66 server_status.php:411 -#, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" -msgstr "Server" +msgstr "Živý graf provozu" #: js/messages.php:67 server_status.php:414 msgid "Live conn./process chart" From c6388fec60a376699a70c981432035804fe467c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:24:24 +0200 Subject: [PATCH 237/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 3eb6e02cb6..1fe5f2a5b5 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1066,7 +1066,7 @@ msgstr "Živý graf provozu" #: js/messages.php:67 server_status.php:414 msgid "Live conn./process chart" -msgstr "" +msgstr "Živý graf připojení a procesů" #: js/messages.php:68 server_status.php:443 #, fuzzy From 64710e3fd3e47aaff8f5a41519fcee54b46dd5b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:24:32 +0200 Subject: [PATCH 238/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 1fe5f2a5b5..4284583de3 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1069,10 +1069,9 @@ msgid "Live conn./process chart" msgstr "Živý graf připojení a procesů" #: js/messages.php:68 server_status.php:443 -#, fuzzy #| msgid "Show query chart" msgid "Live query chart" -msgstr "Zobrazit graf dotazu" +msgstr "Živý graf dotazů" #: js/messages.php:70 msgid "Static data" From ea0161e0b55ef275ed613280c2c83ed3705f9a80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:24:38 +0200 Subject: [PATCH 239/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 4284583de3..1de8ec57dc 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1075,7 +1075,7 @@ msgstr "Živý graf dotazů" #: js/messages.php:70 msgid "Static data" -msgstr "" +msgstr "Statická data" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 From f9bdd4163156d127c3f738ab50ebb0ebb8ca6161 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:24:48 +0200 Subject: [PATCH 240/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 1de8ec57dc..a366a528ca 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1088,7 +1088,7 @@ msgstr "Celkem" #. l10n: Other, small valued, queries #: js/messages.php:74 server_status.php:600 msgid "Other" -msgstr "" +msgstr "Ostatní" #. l10n: Thousands separator #: js/messages.php:76 libraries/common.lib.php:1375 From 73f8ab0695adbfa91169bb2b7791959b7e30a27e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:25:11 +0200 Subject: [PATCH 241/340] Translation update done using Pootle. --- po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index a366a528ca..3435254d27 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:06+0200\n" -"PO-Revision-Date: 2011-06-17 10:24+0200\n" +"PO-Revision-Date: 2011-06-17 10:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -1102,7 +1102,7 @@ msgstr "." #: js/messages.php:80 msgid "kB sent since last refresh" -msgstr "" +msgstr "Odesláno kB od posledního obnovení" #: js/messages.php:81 msgid "kB received since last refresh" From ef334edaad6821fac84bd6de70b1b3289fb1cbb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:25:25 +0200 Subject: [PATCH 242/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 3435254d27..59fc42f4a7 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1106,7 +1106,7 @@ msgstr "Odesláno kB od posledního obnovení" #: js/messages.php:81 msgid "kB received since last refresh" -msgstr "" +msgstr "Přijato kB od posledního obnovení" #: js/messages.php:82 #, fuzzy From f2bfb2aa3aec3664724dea606621634a030f03ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:25:41 +0200 Subject: [PATCH 243/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 59fc42f4a7..dceb7cec55 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1109,10 +1109,9 @@ msgid "kB received since last refresh" msgstr "Přijato kB od posledního obnovení" #: js/messages.php:82 -#, fuzzy #| msgid "Server Choice" msgid "Server traffic (in kB)" -msgstr "Server" +msgstr "Síťový provoz (v kiB)" #: js/messages.php:83 msgid "Connections since last refresh" From 9552c0381ed57708df47454c60cf91a7b7076e1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:25:58 +0200 Subject: [PATCH 244/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index dceb7cec55..fa8787c5fc 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1115,7 +1115,7 @@ msgstr "Síťový provoz (v kiB)" #: js/messages.php:83 msgid "Connections since last refresh" -msgstr "" +msgstr "Spojení od posledního obnovaní" #: js/messages.php:84 server_status.php:792 msgid "Processes" From 6c4ed0b60c495f78576a02e2accb4dca0486f61e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:26:07 +0200 Subject: [PATCH 245/340] Translation update done using Pootle. --- po/cs.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index fa8787c5fc..9765e499e1 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:06+0200\n" -"PO-Revision-Date: 2011-06-17 10:25+0200\n" +"PO-Revision-Date: 2011-06-17 10:26+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -1122,10 +1122,9 @@ msgid "Processes" msgstr "Procesy" #: js/messages.php:85 -#, fuzzy #| msgid "Connections" msgid "Connections / Processes" -msgstr "Připojení" +msgstr "Připojení / Procesů" #: js/messages.php:86 msgid "Issued queries since last refresh" From 345c0ed9028cceb8fa5aec7651c140a6d6b2f01e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:26:18 +0200 Subject: [PATCH 246/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 9765e499e1..2369c88944 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1128,7 +1128,7 @@ msgstr "Připojení / Procesů" #: js/messages.php:86 msgid "Issued queries since last refresh" -msgstr "" +msgstr "Provedených dotazů od posledního obnovení" #: js/messages.php:87 #, fuzzy From ca6f9c4dcf9808f41f8d94a7c77baff5e5c8089c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:26:26 +0200 Subject: [PATCH 247/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 2369c88944..e0017ec968 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1131,10 +1131,9 @@ msgid "Issued queries since last refresh" msgstr "Provedených dotazů od posledního obnovení" #: js/messages.php:87 -#, fuzzy #| msgid "SQL queries" msgid "Issued queries" -msgstr "SQL dotazy" +msgstr "Provedené dotazy" #: js/messages.php:89 server_status.php:386 msgid "Query statistics" From c83fbfe0c1b248ccd8682d0f2bfe9f1462a3d4e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:26:39 +0200 Subject: [PATCH 248/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index e0017ec968..d324747051 100644 --- a/po/cs.po +++ b/po/cs.po @@ -4957,10 +4957,9 @@ msgid "Language" msgstr "Jazyk" #: libraries/display_tbl.lib.php:397 -#, fuzzy #| msgid "Textarea columns" msgid "Restore column order" -msgstr "Sloupců v textové oblasti" +msgstr "Obnovit pořadí sloupců" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" From 16c8f2990265dee3f65d5059c0572630d7ec828c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:26:46 +0200 Subject: [PATCH 249/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index d324747051..13323cac14 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1102,7 +1102,7 @@ msgstr "." #: js/messages.php:80 msgid "kB sent since last refresh" -msgstr "Odesláno kB od posledního obnovení" +msgstr "Odesláno kiB od posledního obnovení" #: js/messages.php:81 msgid "kB received since last refresh" From 6c8e4c58c5c551746fa196f1daebf4d45d1d9b01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:26:49 +0200 Subject: [PATCH 250/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 13323cac14..a894ca4fd7 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1106,7 +1106,7 @@ msgstr "Odesláno kiB od posledního obnovení" #: js/messages.php:81 msgid "kB received since last refresh" -msgstr "Přijato kB od posledního obnovení" +msgstr "Přijato kiB od posledního obnovení" #: js/messages.php:82 #| msgid "Server Choice" From 126a69565adafdc6c045559e080d0b336e73c657 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:27:33 +0200 Subject: [PATCH 251/340] Translation update done using Pootle. --- po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index a894ca4fd7..9c5a88c48c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:06+0200\n" -"PO-Revision-Date: 2011-06-17 10:26+0200\n" +"PO-Revision-Date: 2011-06-17 10:27+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -4963,7 +4963,7 @@ msgstr "Obnovit pořadí sloupců" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" -msgstr "" +msgstr "Uspořádejte přetažením" #: libraries/display_tbl.lib.php:412 #, fuzzy From ac9e03b502a07f36b3ab1e812bf1be9d993254bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:27:42 +0200 Subject: [PATCH 252/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 9c5a88c48c..9cdcc3cad8 100644 --- a/po/cs.po +++ b/po/cs.po @@ -4966,10 +4966,9 @@ msgid "Drag to reorder" msgstr "Uspořádejte přetažením" #: libraries/display_tbl.lib.php:412 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "Klikněte pro vybrání" +msgstr "Klikněte pro řazení" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" From 070bb043204135f8b986e25cafe9df2eb6757cb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:27:54 +0200 Subject: [PATCH 253/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 9cdcc3cad8..daf878e11a 100644 --- a/po/cs.po +++ b/po/cs.po @@ -4972,7 +4972,7 @@ msgstr "Klikněte pro řazení" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" -msgstr "" +msgstr "Klikněte pro označení" #: libraries/display_tbl.lib.php:425 #, php-format From 6eae4435a649d16b815729d8a86f523e109bd8ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:28:10 +0200 Subject: [PATCH 254/340] Translation update done using Pootle. --- po/cs.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index daf878e11a..a9eb1c2508 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:06+0200\n" -"PO-Revision-Date: 2011-06-17 10:27+0200\n" +"PO-Revision-Date: 2011-06-17 10:28+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -8276,10 +8276,9 @@ msgid "Runtime Information" msgstr "Stav serveru" #: server_status.php:385 -#, fuzzy #| msgid "Server Choice" msgid "Server traffic" -msgstr "Server" +msgstr "Síťový provoz serveru" #: server_status.php:387 #, fuzzy From 364de739228455ed8ee47aefd9e326282b834663 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:28:20 +0200 Subject: [PATCH 255/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index a9eb1c2508..da76b959a9 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8281,10 +8281,9 @@ msgid "Server traffic" msgstr "Síťový provoz serveru" #: server_status.php:387 -#, fuzzy #| msgid "See slave status table" msgid "All status variables" -msgstr "Zobrazit tabulku se stavem podřízených" +msgstr "Všechny stavové proměnné" #: server_status.php:397 server_status.php:430 #, fuzzy From 6e73650cfc0fc954873a2b89ae6d212429567b96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:28:26 +0200 Subject: [PATCH 256/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index da76b959a9..5e9fb78347 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8286,10 +8286,9 @@ msgid "All status variables" msgstr "Všechny stavové proměnné" #: server_status.php:397 server_status.php:430 -#, fuzzy #| msgid "Refresh" msgid "Refresh rate" -msgstr "Obnovit" +msgstr "Obnovovací frekvence" #: server_status.php:398 server_status.php:431 #, fuzzy From bb5fe3f2d63cdf0b8281b25cd060ffbf39856ab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:35:23 +0200 Subject: [PATCH 257/340] Factor out refresh rate selection and use ngettext for it --- server_status.php | 39 +++++++++++++++++---------------------- 1 file changed, 17 insertions(+), 22 deletions(-) diff --git a/server_status.php b/server_status.php index 0811558d4c..045e40e9b4 100644 --- a/server_status.php +++ b/server_status.php @@ -20,6 +20,21 @@ if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) require_once './libraries/common.inc.php'; +/** + * Function to output refresh rate selection. + */ +function PMA_choose_refresh_rate() { + echo ''; + foreach(array(1, 2, 5, 1, 20, 40, 60, 120, 300, 600) as $key => $rate) { + if ($rate % 60 == 0) { + $minrate = $rate / 60; + echo ''; + } else { + echo ''; + } + } +} + /** * Ajax request */ @@ -394,17 +409,7 @@ echo __('Runtime Information'); @@ -427,17 +432,7 @@ echo __('Runtime Information'); From 31309248b132e93e08bf15ceb3c36aa75c298640 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:37:04 +0200 Subject: [PATCH 258/340] Update po files --- po/af.po | 426 +++++++++++++++---------------- po/ar.po | 546 +++++++++++++++++++-------------------- po/az.po | 426 +++++++++++++++---------------- po/be.po | 538 +++++++++++++++++++------------------- po/be@latin.po | 540 +++++++++++++++++++-------------------- po/bg.po | 538 +++++++++++++++++++------------------- po/bn.po | 636 +++++++++++++++++++++++---------------------- po/bs.po | 426 +++++++++++++++---------------- po/ca.po | 542 ++++++++++++++++++++------------------- po/cs.po | 437 ++++++++++++++++--------------- po/cy.po | 538 +++++++++++++++++++------------------- po/da.po | 428 ++++++++++++++++--------------- po/de.po | 428 ++++++++++++++++--------------- po/el.po | 416 +++++++++++++++--------------- po/en_GB.po | 416 +++++++++++++++--------------- po/es.po | 416 +++++++++++++++--------------- po/et.po | 428 ++++++++++++++++--------------- po/eu.po | 426 +++++++++++++++---------------- po/fa.po | 424 +++++++++++++++--------------- po/fi.po | 542 ++++++++++++++++++++------------------- po/fr.po | 416 +++++++++++++++--------------- po/gl.po | 428 ++++++++++++++++--------------- po/he.po | 544 ++++++++++++++++++++------------------- po/hi.po | 538 +++++++++++++++++++------------------- po/hr.po | 540 +++++++++++++++++++-------------------- po/hu.po | 428 ++++++++++++++++--------------- po/id.po | 426 +++++++++++++++---------------- po/it.po | 428 ++++++++++++++++--------------- po/ja.po | 414 +++++++++++++++--------------- po/ka.po | 638 +++++++++++++++++++++++----------------------- po/ko.po | 422 +++++++++++++++--------------- po/lt.po | 430 +++++++++++++++---------------- po/lv.po | 428 ++++++++++++++++--------------- po/mk.po | 428 ++++++++++++++++--------------- po/ml.po | 411 +++++++++++++++-------------- po/mn.po | 428 ++++++++++++++++--------------- po/ms.po | 426 +++++++++++++++---------------- po/nb.po | 428 ++++++++++++++++--------------- po/nl.po | 428 ++++++++++++++++--------------- po/phpmyadmin.pot | 411 +++++++++++++++-------------- po/pl.po | 430 +++++++++++++++---------------- po/pt.po | 426 +++++++++++++++---------------- po/pt_BR.po | 428 ++++++++++++++++--------------- po/ro.po | 528 +++++++++++++++++++------------------- po/ru.po | 418 +++++++++++++++--------------- po/si.po | 526 +++++++++++++++++++------------------- po/sk.po | 540 +++++++++++++++++++-------------------- po/sl.po | 420 +++++++++++++++--------------- po/sq.po | 428 ++++++++++++++++--------------- po/sr.po | 540 +++++++++++++++++++-------------------- po/sr@latin.po | 540 +++++++++++++++++++-------------------- po/sv.po | 416 +++++++++++++++--------------- po/ta.po | 411 +++++++++++++++-------------- po/te.po | 426 +++++++++++++++---------------- po/th.po | 544 ++++++++++++++++++++------------------- po/tr.po | 414 +++++++++++++++--------------- po/tt.po | 536 +++++++++++++++++++------------------- po/ug.po | 536 +++++++++++++++++++------------------- po/uk.po | 426 +++++++++++++++---------------- po/ur.po | 538 +++++++++++++++++++------------------- po/uz.po | 540 +++++++++++++++++++-------------------- po/uz@latin.po | 426 +++++++++++++++---------------- po/zh_CN.po | 540 +++++++++++++++++++-------------------- po/zh_TW.po | 540 +++++++++++++++++++-------------------- 64 files changed, 14990 insertions(+), 15084 deletions(-) diff --git a/po/af.po b/po/af.po index 93258c47d7..82d5d0dbe9 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" @@ -81,7 +81,7 @@ msgstr "Sleutelnaam" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 #, fuzzy msgid "Description" msgstr "geen Beskrywing" @@ -272,7 +272,7 @@ msgstr "Tabel %s is gekopieer na %s." msgid "Rename database to" msgstr "Hernoem tabel na" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 #, fuzzy msgid "Command" msgstr "Kommentaar" @@ -646,7 +646,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "" @@ -757,7 +757,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -776,7 +776,7 @@ msgstr "Skep" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -1073,17 +1073,17 @@ msgstr "" msgid "Edit" msgstr "Verander" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Bediener Keuse" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL-stelling" @@ -1095,14 +1095,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 #, fuzzy msgid "Total" msgstr "totaal" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1134,7 +1134,7 @@ msgstr "Bediener Keuse" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "" @@ -1151,7 +1151,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL-stelling" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Ry Statistiek" @@ -2017,7 +2017,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 #, fuzzy msgid "Tables" msgstr "Tabel" @@ -2152,7 +2152,7 @@ msgid "Documentation" msgstr "Dokumentasie" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-stelling" @@ -2181,7 +2181,7 @@ msgid "Create PHP Code" msgstr "Skep PHP Kode" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4828,7 +4828,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Geen" @@ -5072,7 +5072,7 @@ msgid "The row has been deleted" msgstr "Die ry is verwyder" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Vermoor" @@ -5163,7 +5163,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "" @@ -5623,7 +5623,7 @@ msgstr "Vertoon Funksies" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Gasheer (host)" @@ -6312,13 +6312,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Waarde" @@ -6554,13 +6554,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Biner" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "" @@ -6853,7 +6853,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Voeg 'n nuwe gebruiker by" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "" @@ -7014,7 +7014,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Gebruiker" @@ -7465,18 +7465,18 @@ msgstr "Die \"%s\" databasis bestaan nie!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "Velde" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "" @@ -7994,7 +7994,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8133,253 +8133,246 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +msgid "Refresh rate" +msgstr "Voortgebring deur" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "in gebruik" +msgstr[1] "in gebruik" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Records" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Rekords" +msgstr[1] "Rekords" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "Uitgebreide toevoegings" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 #, fuzzy msgid "Show open tables" msgstr "Wys tabelle" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Bediener Keuse" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -msgid "Refresh rate" -msgstr "Voortgebring deur" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Records" -msgid "second" -msgstr "Rekords" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Records" -msgid "seconds" -msgstr "Rekords" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "in gebruik" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Moenie die wagwoord verander nie" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "Wys tabelle" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy msgid "Related links:" msgstr "Operasies" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8387,78 +8380,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8466,7 +8459,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8474,42 +8467,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8517,33 +8510,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8552,227 +8545,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8780,99 +8773,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8880,18 +8873,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8899,7 +8892,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10026,6 +10019,11 @@ msgstr "" msgid "Rename view to" msgstr "Hernoem tabel na" +#, fuzzy +#~| msgid "Records" +#~ msgid "seconds" +#~ msgstr "Rekords" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/ar.po b/po/ar.po index 3f279de561..82caf98c0f 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-04-21 13:56+0200\n" "Last-Translator: \n" "Language-Team: arabic \n" @@ -84,7 +84,7 @@ msgstr "اسم المفتاح" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "الوصف" @@ -273,7 +273,7 @@ msgstr "تم نسخ قاعدة البيانات %s إلى %s" msgid "Rename database to" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "أمر" @@ -650,7 +650,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "" @@ -763,7 +763,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -781,7 +781,7 @@ msgstr "أنشئ" msgid "Updated" msgstr "محدث" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "وضع" @@ -1082,17 +1082,17 @@ msgstr "أغلق" msgid "Edit" msgstr "تحرير" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "اختيار الخادم" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "SQL query" msgid "Live query chart" @@ -1105,13 +1105,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "مجموع كلي" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1143,7 +1143,7 @@ msgstr "اختيار الخادم" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "معالَجات" @@ -1161,7 +1161,7 @@ msgstr "" msgid "Issued queries" msgstr "" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy #| msgid "Databases statistics" msgid "Query statistics" @@ -2039,7 +2039,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "جداول" @@ -2172,7 +2172,7 @@ msgid "Documentation" msgstr "مستندات وثائقية" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "استعلام-SQL" @@ -2201,7 +2201,7 @@ msgid "Create PHP Code" msgstr "أنشئ كود PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "حدث" @@ -4864,7 +4864,7 @@ msgstr "الضغط" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "لا شيء" @@ -5115,7 +5115,7 @@ msgid "The row has been deleted" msgstr "لقد تم حذف الصف" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "إبطال" @@ -5205,7 +5205,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "وضع InnoDB" @@ -5674,7 +5674,7 @@ msgstr "أنواع MIME المتوفرة" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "المزود" @@ -6365,13 +6365,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "متغير" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "القيمة" @@ -6611,12 +6611,12 @@ msgid "Synchronize" msgstr "تزامن" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "سجل ثنائي" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "متغيرات" @@ -6908,7 +6908,7 @@ msgstr "" msgid "+ Add a new value" msgstr "أضف مستخدم جديد" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "وقت" @@ -7114,7 +7114,7 @@ msgid "Protocol version" msgstr "نسخة البروتوكول" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "المستخدم" @@ -7566,17 +7566,17 @@ msgstr "الجدول \"%s\" غير موجود!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "الملفات" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "احذف الاستعلامات المعروضة" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "اعرض الاستعلامات كاملة" @@ -8098,7 +8098,7 @@ msgstr "تم إعادة قراءة الصلاحيات بنجاح." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8235,253 +8235,254 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "تم إيقاف العمليّة %s بنجاح." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا." - -#: server_status.php:248 -msgid "Handler" -msgstr "" - -#: server_status.php:249 -msgid "Query cache" -msgstr "" - -#: server_status.php:250 -msgid "Threads" -msgstr "" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:254 -msgid "Key cache" -msgstr "" - -#: server_status.php:255 -msgid "Joins" -msgstr "" - -#: server_status.php:257 -msgid "Sorting" -msgstr "" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "بيانات التشغيل" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "اختيار الخادم" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "حدث" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "الثانية" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "الثانية" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "Minute" -msgid "minutes" -msgstr "الدقيقة" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "الدقيقة" +msgstr[1] "الدقيقة" +msgstr[2] "الدقيقة" +msgstr[3] "الدقيقة" +msgstr[4] "الدقيقة" +msgstr[5] "الدقيقة" -#: server_status.php:460 +#: server_status.php:33 +#, 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.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "تم إيقاف العمليّة %s بنجاح." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا." + +#: server_status.php:263 +msgid "Handler" +msgstr "" + +#: server_status.php:264 +msgid "Query cache" +msgstr "" + +#: server_status.php:265 +msgid "Threads" +msgstr "" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:269 +msgid "Key cache" +msgstr "" + +#: server_status.php:270 +msgid "Joins" +msgstr "" + +#: server_status.php:272 +msgid "Sorting" +msgstr "" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "بيانات التشغيل" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "اختيار الخادم" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "لاتغير كلمة السر" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show tables" msgid "Show only alert values" msgstr "شاهد الجدول" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "الروابط" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "لكل ساعة" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "لكل دقيقة" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "لكل ثانية" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "نوع الاستعلام" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "مضى على عمل خادم MySQL مدة %s. بدأ العمل في %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "بيانات سير" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "استلم" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "أرسل" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "اتصالات" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "محاولات أخفقت" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "ألغي" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "رقم" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8489,78 +8490,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8568,7 +8569,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8576,42 +8577,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8619,33 +8620,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8654,227 +8655,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8882,99 +8883,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8982,18 +8983,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9001,7 +9002,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10125,6 +10126,11 @@ msgstr "" msgid "Rename view to" msgstr "أعد تسمية العرض الـ" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "الثانية" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/az.po b/po/az.po index b68f146bb0..6800998e8b 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" @@ -80,7 +80,7 @@ msgstr "Açar söz" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Haqqında" @@ -269,7 +269,7 @@ msgstr "%s cedveli %s - e kopyalandı." msgid "Rename database to" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Komanda Tipi" @@ -643,7 +643,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 #, fuzzy msgid "Replication" msgstr "Relations" @@ -755,7 +755,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -774,7 +774,7 @@ msgstr "Qur" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1085,17 +1085,17 @@ msgstr "" msgid "Edit" msgstr "Deyişdir" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Quraşdırılmış Serverler" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL sorğusu" @@ -1107,13 +1107,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Cemi" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1145,7 +1145,7 @@ msgstr "Quraşdırılmış Serverler" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Prosesler" @@ -1164,7 +1164,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL sorğusu" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Sıra Statistikası" @@ -2038,7 +2038,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Cedveller" @@ -2172,7 +2172,7 @@ msgid "Documentation" msgstr "Dokumentasiya" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL sorğusu" @@ -2201,7 +2201,7 @@ msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4887,7 +4887,7 @@ msgstr "Sıxışdırma" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Heç biri" @@ -5136,7 +5136,7 @@ msgid "The row has been deleted" msgstr "Setir silindi" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Söndür" @@ -5227,7 +5227,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5696,7 +5696,7 @@ msgstr "Mövcud olan MIME-tipleri" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Host" @@ -6398,13 +6398,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Deyişen" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Deyer" @@ -6646,13 +6646,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Binary" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Deyişenler" @@ -6950,7 +6950,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Yeni İstifadeçi elave Et" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Müddet" @@ -7160,7 +7160,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "İstifadeçi" @@ -7619,18 +7619,18 @@ msgstr "\"%s\" cedveli mövcud deyil!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "Sahe sayı" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Emrleri Tam Olaraq Göster" @@ -8163,7 +8163,7 @@ msgstr "The privileges were reloaded successfully." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8302,12 +8302,33 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +msgid "Refresh rate" +msgstr "Qurucu" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "istifadede" +msgstr[1] "istifadede" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "saniyede" +msgstr[1] "saniyede" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s uğurla söndürüldü (killed)." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8315,244 +8336,216 @@ msgstr "" "phpMyAdmin %s emeliyyat thread-ini söndüre (kill) bilmedi. Böyük ehtimal " "artıq söndürülmüşdür." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 #, fuzzy msgid "Query cache" msgstr "Sorğu tipi" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "Genişletilmiş girişli" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 #, fuzzy msgid "Show open tables" msgstr "Cedvelleri göster" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Runtime Me'lumatı" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Quraşdırılmış Serverler" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -msgid "Refresh rate" -msgstr "Qurucu" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "saniyede" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "saniyede" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "istifadede" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Parolu deyişdirme" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "Cedvelleri göster" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "saatda" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "deqiqede" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "saniyede" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Sorğu tipi" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Bu MySQL server %sdir işlemektedir. Server %s-de açılmışdır." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Neqliyyat" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Alındı" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Gönderildi" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Elaqeler" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Uğursuz Cehdler" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Dayandırılmış Elaqeler" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "Nömre" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8560,78 +8553,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8639,7 +8632,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8647,42 +8640,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8690,33 +8683,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8725,227 +8718,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8953,99 +8946,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9053,18 +9046,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9072,7 +9065,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10208,6 +10201,11 @@ msgstr "" msgid "Rename view to" msgstr "Cedveli yeniden adlandır" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "saniyede" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/be.po b/po/be.po index d2c4fbf723..7b5de24001 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" @@ -83,7 +83,7 @@ msgstr "Імя ключа" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Апісаньне" @@ -272,7 +272,7 @@ msgstr "База дадзеных %s была скапіяваная ў %s" msgid "Rename database to" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Каманда" @@ -646,7 +646,7 @@ msgstr "Выгляд" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Рэплікацыя" @@ -761,7 +761,7 @@ msgstr "Праверыць табліцу" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -781,7 +781,7 @@ msgstr "Стварыць" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Стан" @@ -1108,17 +1108,17 @@ msgstr "" msgid "Edit" msgstr "Рэдагаваць" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Выбар сэрвэра" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL-запыт" @@ -1130,13 +1130,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Агулам" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1168,7 +1168,7 @@ msgstr "Выбар сэрвэра" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Працэсы" @@ -1187,7 +1187,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL-запыт" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Статыстыка радку" @@ -2088,7 +2088,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Табліц" @@ -2226,7 +2226,7 @@ msgid "Documentation" msgstr "Дакумэнтацыя" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-запыт" @@ -2255,7 +2255,7 @@ msgid "Create PHP Code" msgstr "Стварыць PHP-код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Абнавіць" @@ -4990,7 +4990,7 @@ msgstr "Сьціск" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Няма" @@ -5252,7 +5252,7 @@ msgid "The row has been deleted" msgstr "Радок быў выдалены" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Спыніць" @@ -5345,7 +5345,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Пул буфэру" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Стан InnoDB" @@ -5871,7 +5871,7 @@ msgstr "Даступныя MIME-тыпы" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Хост" @@ -6576,13 +6576,13 @@ msgid "Slave status" msgstr "Паказаць стан залежных сэрвэраў" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Зьменная" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Значэньне" @@ -6825,12 +6825,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Двайковы лог" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Зьменныя" @@ -7133,7 +7133,7 @@ msgstr "Азначэньне PARTITION" msgid "+ Add a new value" msgstr "Дадаць новага карыстальніка" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Час" @@ -7378,7 +7378,7 @@ msgid "Protocol version" msgstr "Вэрсія пратаколу" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Карыстальнік" @@ -7859,17 +7859,17 @@ msgstr "Табліцы \"%s\" не існуе!" msgid "Select binary log to view" msgstr "Вылучыце двайковы лог для прагляду" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Файлы" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Абразаць паказаныя запыты" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Паказаць поўныя запыты" @@ -8406,7 +8406,7 @@ msgstr "Прывілеі былі пасьпяхова перазагружан msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 #, fuzzy msgid "Show master status" msgstr "Паказаць стан залежных сэрвэраў" @@ -8547,200 +8547,193 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Паток %s быў пасьпяхова спынены." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены." - -#: server_status.php:248 -msgid "Handler" -msgstr "Апрацоўнік" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Кэш запытаў" - -#: server_status.php:250 -msgid "Threads" -msgstr "Патокі" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "Часовыя дадзеныя" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Адкладзеныя ўстаўкі" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Кэш ключоў" - -#: server_status.php:255 -msgid "Joins" -msgstr "Аб'яднаньні" - -#: server_status.php:257 -msgid "Sorting" -msgstr "Сартаваньне" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Каардынатар перакладу" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "Скінуць (закрыць) усе табліцы" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Паказаць адкрытыя табліцы" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "Паказаць залежныя сэрвэры" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "Паказаць стан залежных сэрвэраў" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "Скінуць кэш запытаў" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "Бягучая інфармацыя" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Выбар сэрвэра" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Абнавіць" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "у сэкунду" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "у сэкунду" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "in use" -msgid "minutes" -msgstr "выкарыстоўваецца" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "выкарыстоўваецца" +msgstr[1] "выкарыстоўваецца" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "у сэкунду" +msgstr[1] "у сэкунду" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Паток %s быў пасьпяхова спынены." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены." + +#: server_status.php:263 +msgid "Handler" +msgstr "Апрацоўнік" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Кэш запытаў" + +#: server_status.php:265 +msgid "Threads" +msgstr "Патокі" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "Часовыя дадзеныя" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Адкладзеныя ўстаўкі" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Кэш ключоў" + +#: server_status.php:270 +msgid "Joins" +msgstr "Аб'яднаньні" + +#: server_status.php:272 +msgid "Sorting" +msgstr "Сартаваньне" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Каардынатар перакладу" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "Скінуць (закрыць) усе табліцы" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Паказаць адкрытыя табліцы" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "Паказаць залежныя сэрвэры" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "Паказаць стан залежных сэрвэраў" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "Скінуць кэш запытаў" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "Бягучая інфармацыя" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Выбар сэрвэра" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Не зьмяняць пароль" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Паказаць адкрытыя табліцы" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Сувязі" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "у гадзіну" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "у хвіліну" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "у сэкунду" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Тып запыту" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Гэты сэрвэр MySQL працуе %s. Ён быў запушчаны %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 #, fuzzy msgid "Replication status" msgstr "Рэплікацыя" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Трафік" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8748,41 +8741,41 @@ msgstr "" "На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму " "статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Атрымана" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Адпраўлена" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Падлучэньні" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "максымум адначасовых злучэньняў" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Няўдалых спробаў" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Спынена" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8792,17 +8785,17 @@ msgstr "" "якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для " "захоўваньня выразаў транзакцыі." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8814,11 +8807,11 @@ msgstr "" "павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў " "памяці, а не на дыску." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Колькасьць часовых файлаў, створаных mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8826,7 +8819,7 @@ msgstr "" "Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна " "створаныя сэрвэрам падчас выкананьня выразаў." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8834,7 +8827,7 @@ msgstr "" "Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя " "памылкі (пэўна, дубляваныя ключы)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8843,23 +8836,23 @@ msgstr "" "Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны " "паток." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Колькасьць запісаных INSERT DELAYED радкоў." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Колькасьць выкананых FLUSH-выразаў." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Колькасьць унутраных COMMIT-выразаў." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Колькасьць разоў выдаленьня радка з табліцы." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8869,7 +8862,7 @@ msgstr "" "яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. " "Handler_discover паказвае колькасьць высьвятленьняў табліц." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8880,7 +8873,7 @@ msgstr "" "сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 " "індэксаваная." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8888,7 +8881,7 @@ msgstr "" "Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна " "вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8898,7 +8891,7 @@ msgstr "" "павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам " "абмежаваньняў або калі адбываецца сканаваньне індэксаў." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8906,7 +8899,7 @@ msgstr "" "Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад " "чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8918,7 +8911,7 @@ msgstr "" "прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам " "або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8930,37 +8923,37 @@ msgstr "" "што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб " "выкарыстоўваць перавагі індэксаў." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Колькасьць унутраных выразаў ROLLBACK." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Колькасьць запытаў устаўкі радка ў табліцу." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Колькасьць зьмененых старонак." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Колькасьць вольных старонак." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8970,7 +8963,7 @@ msgstr "" "старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць " "быць скінутыя ці выдаленыя з-за пэўнай прычыны." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8983,11 +8976,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Агульны памер буфэрнага пулу, у старонках." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8996,7 +8989,7 @@ msgstr "" "адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым " "парадку." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9004,11 +8997,11 @@ msgstr "" "Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта " "адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9016,7 +9009,7 @@ msgstr "" "Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага " "пулу, а таму зрабіла аднастаронкавае чытаньне." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9030,55 +9023,55 @@ msgstr "" "падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны " "правільна, гэтае значэньне мусіць быць маленькім." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Колькасьць апэрацыяў fsync() на бягучы момант." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Агульная колькасьць чытаньняў дадзеных." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Агульная колькасьць запісаў дадзеных." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9086,35 +9079,35 @@ msgstr "" "Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і " "таму давялося чакаць, пакуль ён не ачысьціцца." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Колькасьць запісаў у лог." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Колькасьць фізычна выкананых запісаў у лог-файл." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Колькасьць байтаў, запісаных у лог-файл." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Колькасьць створаных старонак." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9122,55 +9115,55 @@ msgstr "" "Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні " "вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Колькасьць прачытаных старонак." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Колькасьць запісаных старонак." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" "Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у " "мілісэкундах." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Колькась радкоў, прачытаных з табліц InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9178,7 +9171,7 @@ msgstr "" "Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі " "скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9186,7 +9179,7 @@ msgstr "" "Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна " "выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9196,11 +9189,11 @@ msgstr "" "ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць " "блёкаў, якія выкарастоўваліся адначасова." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9210,15 +9203,15 @@ msgstr "" "вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць " "промахаў у кэш можна вылічыць як Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9229,17 +9222,17 @@ msgstr "" "Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў " "зкампіляваны." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9247,39 +9240,39 @@ msgstr "" "Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, " "значэньне кэшу табліц імаверна вельмі малое." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Колькасьць адкрытых файлаў." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Колькасьць адкрытых табліц." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Колькасьць вольнай памяці для кэшу запытаў." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Колькасьць зваротаў да кэшу." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Колькасьць запытаў, якія былі даданыя ў кэш." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9292,7 +9285,7 @@ msgstr "" "выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з " "кэшу." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9300,19 +9293,19 @@ msgstr "" "Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за " "значэньня дырэктывы query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Агульная колькасьць блёкаў у кэшы запытыў." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9320,13 +9313,13 @@ msgstr "" "Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае " "значэньне ня роўнае 0, варта праверыць індэксы ў табліцах." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай " "табліцы." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9335,7 +9328,7 @@ msgstr "" "ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта " "праверыць індэксы ў табліцах.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9343,17 +9336,17 @@ msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай " "табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-" "патокам." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9361,13 +9354,13 @@ msgstr "" "Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі " "паўтараў транзакцыі." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным " "да сэрвэра, які яго кантралюе." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9375,14 +9368,14 @@ msgstr "" "Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для " "стварэньня." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым " "long_query_time сэкундаў." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9392,25 +9385,25 @@ msgstr "" "значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай " "зьменнай sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" "Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх " "слупкоў." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Колькасьць адсартаваных радкоў." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9422,7 +9415,7 @@ msgstr "" "існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а " "пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9432,11 +9425,11 @@ msgstr "" "вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае " "ў чырвоны колер, варта павялічыць значэньне thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Колькасьць адкрытых на бягучы момант злучэньняў." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9448,7 +9441,7 @@ msgstr "" "thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага " "павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." @@ -10597,6 +10590,11 @@ msgstr "Назва прагляду" msgid "Rename view to" msgstr "Перайменаваць табліцу ў" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "у сэкунду" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/be@latin.po b/po/be@latin.po index b35234329a..00a0cf1093 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" @@ -85,7 +85,7 @@ msgstr "Imia kluča" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Apisańnie" @@ -274,7 +274,7 @@ msgstr "Baza dadzienych %s była skapijavanaja ŭ %s" msgid "Rename database to" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Kamanda" @@ -652,7 +652,7 @@ msgstr "Vyhlad" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikacyja" @@ -765,7 +765,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -783,7 +783,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stan" @@ -1105,17 +1105,17 @@ msgstr "" msgid "Edit" msgstr "Redagavać" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Vybar servera" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Showing SQL query" msgid "Live query chart" @@ -1128,13 +1128,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Ahułam" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1166,7 +1166,7 @@ msgstr "Vybar servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Pracesy" @@ -1184,7 +1184,7 @@ msgstr "" msgid "Issued queries" msgstr "" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy #| msgid "Databases statistics" msgid "Query statistics" @@ -2094,7 +2094,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tablic" @@ -2234,7 +2234,7 @@ msgid "Documentation" msgstr "Dakumentacyja" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-zapyt" @@ -2263,7 +2263,7 @@ msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Abnavić" @@ -4963,7 +4963,7 @@ msgstr "Ścisk" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Nijakaja" @@ -5226,7 +5226,7 @@ msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Spynić" @@ -5320,7 +5320,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Puł buferu" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Stan InnoDB" @@ -5850,7 +5850,7 @@ msgstr "Dastupnyja MIME-typy" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Chost" @@ -6550,13 +6550,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Źmiennaja" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Značeńnie" @@ -6799,12 +6799,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Dvajkovy łog" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Źmiennyja" @@ -7105,7 +7105,7 @@ msgstr "Aznačeńnie PARTITION" msgid "+ Add a new value" msgstr "Dadać novaha karystalnika" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Čas" @@ -7353,7 +7353,7 @@ msgid "Protocol version" msgstr "Versija pratakołu" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Karystalnik" @@ -7833,17 +7833,17 @@ msgstr "Tablicy \"%s\" nie isnuje!" msgid "Select binary log to view" msgstr "Vyłučycie dvajkovy łog dla prahladu" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Fajły" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Abrazać pakazanyja zapyty" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Pakazać poŭnyja zapyty" @@ -8381,7 +8381,7 @@ msgstr "Pryvilei byli paśpiachova pierazahružanyja." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 #, fuzzy msgid "Show master status" msgstr "Pakazać stan zaležnych serveraŭ" @@ -8519,199 +8519,194 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Patok %s byŭ paśpiachova spynieny." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin nia moža spynić praces %s. Napeŭna, jon užo spynieny." - -#: server_status.php:248 -msgid "Handler" -msgstr "Apracoŭnik" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Keš zapytaŭ" - -#: server_status.php:250 -msgid "Threads" -msgstr "Patoki" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "Časovyja dadzienyja" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Adkładzienyja ŭstaŭki" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Keš klučoŭ" - -#: server_status.php:255 -msgid "Joins" -msgstr "Ab'jadnańni" - -#: server_status.php:257 -msgid "Sorting" -msgstr "Sartavańnie" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Kaardynatar pierakładu" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "Skinuć (zakryć) usie tablicy" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Pakazać adkrytyja tablicy" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "Pakazać zaležnyja servery" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "Pakazać stan zaležnych serveraŭ" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "Skinuć keš zapytaŭ" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "Biahučaja infarmacyja" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Vybar servera" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Abnavić" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "u sekundu" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "u sekundu" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "in use" -msgid "minutes" -msgstr "vykarystoŭvajecca" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "vykarystoŭvajecca" +msgstr[1] "vykarystoŭvajecca" +msgstr[2] "vykarystoŭvajecca" -#: server_status.php:460 +#: server_status.php:33 +#, 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.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Patok %s byŭ paśpiachova spynieny." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin nia moža spynić praces %s. Napeŭna, jon užo spynieny." + +#: server_status.php:263 +msgid "Handler" +msgstr "Apracoŭnik" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Keš zapytaŭ" + +#: server_status.php:265 +msgid "Threads" +msgstr "Patoki" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "Časovyja dadzienyja" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Adkładzienyja ŭstaŭki" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Keš klučoŭ" + +#: server_status.php:270 +msgid "Joins" +msgstr "Ab'jadnańni" + +#: server_status.php:272 +msgid "Sorting" +msgstr "Sartavańnie" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Kaardynatar pierakładu" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "Skinuć (zakryć) usie tablicy" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Pakazać adkrytyja tablicy" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "Pakazać zaležnyja servery" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "Pakazać stan zaležnych serveraŭ" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "Skinuć keš zapytaŭ" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "Biahučaja infarmacyja" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Vybar servera" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nie źmianiać parol" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Pakazać adkrytyja tablicy" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Suviazi" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "u hadzinu" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "u chvilinu" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "u sekundu" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Typ zapytu" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Hety server MySQL pracuje %s. Jon byŭ zapuščany %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Trafik" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8719,41 +8714,41 @@ msgstr "" "Na zahružanym servery bajtavyja ličylniki mohuć pieraskokvać koła, tamu " "statystyka, jakuju pakazvaje MySQL-server, moža być niapravilnaj." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Atrymana" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Adpraŭlena" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Padłučeńni" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "maksymum adnačasovych złučeńniaŭ" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Niaŭdałych sprobaŭ" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Spyniena" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8763,17 +8758,17 @@ msgstr "" "jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł " "dla zachoŭvańnia vyrazaŭ tranzakcyi." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Kolkaść tranzakcyjaŭ, jakija vykarystoŭvali časovy dvajkovy keš zapytaŭ." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8785,11 +8780,11 @@ msgstr "" "pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ " "pamiaci, a nie na dysku." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8797,7 +8792,7 @@ msgstr "" "Kolkaść časovych tablic, raźmieščanych u pamiaci, jakija byli aŭtamatyčna " "stvoranyja serveram padčas vykanańnia vyrazaŭ." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8805,7 +8800,7 @@ msgstr "" "Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja " "pamyłki (peŭna, dublavanyja klučy)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8814,23 +8809,23 @@ msgstr "" "Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj " "ułasny patok." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Kolkaść vykananych FLUSH-vyrazaŭ." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Kolkaść unutranych COMMIT-vyrazaŭ." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8840,7 +8835,7 @@ msgstr "" "viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. " "Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8851,7 +8846,7 @@ msgstr "" "skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 " "indeksavanaja." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8860,7 +8855,7 @@ msgstr "" "vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra " "indeksavanyja." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8870,7 +8865,7 @@ msgstr "" "pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham " "abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8878,7 +8873,7 @@ msgstr "" "Kolkaść zapytaŭ čytańnia papiaredni radok u klučavym paradku. Hety metad " "čytańnia vykarystoŭvajecca pieravažna dla aptymizacyi ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8891,7 +8886,7 @@ msgstr "" "całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć " "klučy." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8903,37 +8898,37 @@ msgstr "" "aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja " "tak, kab vykarystoŭvać pieravahi indeksaŭ." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo " "niaźmienienych)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Kolkaść źmienienych staronak." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Kolkaść staronak bufernaha pułu, na jakija byŭ atrymany zapyt na skid." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Kolkaść volnych staronak." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8943,7 +8938,7 @@ msgstr "" "staronki, jakija ŭ biahučy momant čytajucca ci zapisvajucca abo jakija nia " "mohuć być skinutyja ci vydalenyja z-za peŭnaj pryčyny." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8956,11 +8951,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Ahulny pamier bufernaha pułu, u staronkach." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8969,7 +8964,7 @@ msgstr "" "adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym " "paradku." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8977,11 +8972,11 @@ msgstr "" "Kolkaść paśladoŭnych papiarednich čytańniaŭ, zroblenych InnoDB. Heta " "adbyvajecca, kali InnoDB vykonvaje paśladoŭny poŭny prahlad tablicy." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8989,7 +8984,7 @@ msgstr "" "Kolkaść lagičnych čytańniaŭ, jakija InnoDB nie zmahła adnavić z bufernaha " "pułu, a tamu zrabiła adnastaronkavaje čytańnie." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9003,55 +8998,55 @@ msgstr "" "kamputar padličvaje kolkaść takich čakańniaŭ. Kali pamier buferu byŭ " "vyznačany pravilna, hetaje značeńnie musić być maleńkim." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Ahulnaja kolkaść zapisaŭ dadzienych." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9059,35 +9054,35 @@ msgstr "" "Kolkaść vypadkaŭ čakańnia z-za taho, što bufer łogu byŭ zanadta mały, i tamu " "daviałosia čakać, pakul jon nie ačyścicca." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Kolkaść zapisaŭ u łog." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Kolkaść stvoranych staronak." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9096,54 +9091,54 @@ msgstr "" "vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho " "ŭ bajty." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Kolkaść pračytanych staronak." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Kolkaść zapisanych staronak." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" "Kolkaść blakavańniaŭ radkoŭ, čakańnie jakich adbyvajecca na biahučy momant." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Siaredni čas atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ahulny čas čakańnia atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Maksymalny čas atramańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Kolkaść razoŭ, kali davodziłasia čakać blakavańnie radku." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9151,7 +9146,7 @@ msgstr "" "Kolkaść blokaŭ u kešy klučoŭ, jakija byli źmienienyja, ale jašče nie byli " "skinutyja na dysk. Vykarystoŭvajecca jak značeńnie Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9159,7 +9154,7 @@ msgstr "" "Kolkaść niavykarystanych blokaŭ u kešy klučoŭ. Hetaje značeńnie možna " "vykarystoŭvać dla vyznačeńnia stupieni vykarystańnia kešu klučoŭ." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9169,11 +9164,11 @@ msgstr "" "stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, " "jakija vykarastoŭvalisia adnačasova." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Kolkaść zapytaŭ na čytańnie bloku klučoŭ z kešu." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9183,15 +9178,15 @@ msgstr "" "vialikaje, značeńnie key_buffer_size, vidać, vielmi małoje. Kolkaść " "promachaŭ u keš možna vyličyć jak Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Kolkaść zapytaŭ na zapis bloku klučoŭ u keš." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Kolkaść fizyčnych zapisaŭ bloku klučoŭ na dysk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9202,17 +9197,17 @@ msgstr "" "Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ " "zkampilavany." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Kolkaść radkoŭ dla zapisu, adkładzienych zapytami INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9220,39 +9215,39 @@ msgstr "" "Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, " "značeńnie kešu tablic imavierna vielmi małoje." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Kolkaść adkrytych fajłaŭ." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Kolkaść adkrytych patokaŭ (vykarystoŭvajucca pieravažna dla łahavańnia)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Kolkaść adkrytych tablic." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Kolkaść zvarotaŭ da kešu." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9265,7 +9260,7 @@ msgstr "" "vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać " "z kešu." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9273,19 +9268,19 @@ msgstr "" "Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za " "značeńnia dyrektyvy query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9293,13 +9288,13 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija nie vykarystoŭviajuć indeksy. Kali hetaje " "značeńnie nia roŭnaje 0, varta pravieryć indeksy ŭ tablicach." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali pošuk pa mascy ŭ metavaj " "tablicy." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9308,7 +9303,7 @@ msgstr "" "kluča paśla kožnaha radka. (Kali hetaje značeńnie nia roŭnaje 0, varta " "pravieryć indeksy ŭ tablicach.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9316,17 +9311,17 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali spałučeńni paloŭ u pieršaj " "tablicy. (Zvyčajna nie krytyčna, navat kali hetaje značeńnie vialikaje.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Kolkaść ab'jadnańniaŭ, jakija praviali poŭny prahlad pieršaj tablicy." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Kolkaść časovych tablic, jakija ŭ biahučy momant adkrytyja zaležnym SQL-" "patokam." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9334,13 +9329,13 @@ msgstr "" "Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi " "paŭtaraŭ tranzakcyi." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Hetaje značeńnie roŭnaje \"ON\", kali server źjaŭlajecca zaležnym i " "padłučanym da servera, jaki jaho kantraluje." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9348,14 +9343,14 @@ msgstr "" "Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla " "stvareńnia." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Kolkaść zapytaŭ, na vykanantnie jakich spatrebiłasia bolš, čym " "long_query_time sekundaŭ." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9365,25 +9360,25 @@ msgstr "" "hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia " "systemnaj źmiennaj sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" "Kolkaść sartavańniaŭ, jakija byli zroblenyja z vykarystańniem niekalkich " "słupkoŭ." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Kolkaść adsartavanych radkoŭ." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Kolkaść sartavańniaŭ, jakija byli zroblenyja padčas prahladu tablicy." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Kolkaść razoŭ, kali blakavańnie tablicy było zroblenaje imhnienna." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9395,7 +9390,7 @@ msgstr "" "prablemy z pradukcyjnaściu, varta spačatku aptymizavać zapyty, a paśla abo " "padzialić tablicu abo tablicy, abo vykarystoŭvać replikacyju." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9405,11 +9400,11 @@ msgstr "" "jak Threads_created/Connections. Kali hetaje značeńnie pafarbavanaje ŭ " "čyrvony koler, varta pavialičyć značeńnie thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9421,7 +9416,7 @@ msgstr "" "thread_cache_size. (Zvyčajna, heta nie daje jakoha-niebudź zaŭvažnaha " "pavieličeńnia pradukcyjnaści, kali prysutničaje dobraja realizacyja patokaŭ.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." @@ -10556,6 +10551,11 @@ msgstr "Nazva prahladu" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "u sekundu" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/bg.po b/po/bg.po index fbbf9d9610..d7f7fde74c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-14 08:31+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" @@ -84,7 +84,7 @@ msgstr "Име на ключ" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Описание" @@ -271,7 +271,7 @@ msgstr "БД %s беше копирана като %s" msgid "Rename database to" msgstr "Преименуване БД на" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Команда" @@ -623,7 +623,7 @@ msgstr "Изглед" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Репликация" @@ -730,7 +730,7 @@ msgstr "Следени таблици" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -748,7 +748,7 @@ msgstr "Създаден" msgid "Updated" msgstr "Съвременен" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Състояние" @@ -1055,17 +1055,17 @@ msgstr "Затваряне" msgid "Edit" msgstr "Редакция" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Избор на сървър" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Hide query box" msgid "Live query chart" @@ -1078,13 +1078,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Общо" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1116,7 +1116,7 @@ msgstr "Избор на сървър" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Процеси" @@ -1136,7 +1136,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL заявки" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Статистика за заявките" @@ -1935,7 +1935,7 @@ msgstr "споделен" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Таблици" @@ -2067,7 +2067,7 @@ msgid "Documentation" msgstr "Документация" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL заявка" @@ -2096,7 +2096,7 @@ msgid "Create PHP Code" msgstr "Създаване на PHP код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Презареждане" @@ -4648,7 +4648,7 @@ msgstr "Компресия:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Няма" @@ -4873,7 +4873,7 @@ msgid "The row has been deleted" msgstr "Редът беше изтрит" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Спиране" @@ -4959,7 +4959,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB Състояние" @@ -5400,7 +5400,7 @@ msgstr "Показване MIME типове" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Хост" @@ -6080,13 +6080,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Стойност" @@ -6311,12 +6311,12 @@ msgid "Synchronize" msgstr "Синхронизиране" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Двоичен дневник" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Променливи" @@ -6601,7 +6601,7 @@ msgstr "" msgid "+ Add a new value" msgstr "+ Добавяне на нова стойност" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Време" @@ -6782,7 +6782,7 @@ msgid "Protocol version" msgstr "Версия на протокола" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Потребител" @@ -7203,17 +7203,17 @@ msgstr "Файлът не съществува" msgid "Select binary log to view" msgstr "Изберете двоичен журнал за преглед" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Файлове" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Съкращаване на показаните заявки" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Показване на пълните заявки" @@ -7740,7 +7740,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -7873,233 +7873,226 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Нишка %s беше успешно спряна." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена." - -#: server_status.php:248 -msgid "Handler" -msgstr "" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Кеш на заявките" - -#: server_status.php:250 -msgid "Threads" -msgstr "Нишки" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "Временни данни" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Забавени вмъквания" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Кеш на ключове" - -#: server_status.php:255 -msgid "Joins" -msgstr "" - -#: server_status.php:257 -msgid "Sorting" -msgstr "Сортиране" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Координатор на транзакциите" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Показване на отворените теблици" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "Информация за състоянието на MySQL сървъра" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Избор на сървър" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Презареждане" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "секунда" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "секунда" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "Minute" -msgid "minutes" -msgstr "минута" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "минута" +msgstr[1] "минута" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "секунда" +msgstr[1] "секунда" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Нишка %s беше успешно спряна." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена." + +#: server_status.php:263 +msgid "Handler" +msgstr "" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Кеш на заявките" + +#: server_status.php:265 +msgid "Threads" +msgstr "Нишки" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "Временни данни" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Забавени вмъквания" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Кеш на ключове" + +#: server_status.php:270 +msgid "Joins" +msgstr "" + +#: server_status.php:272 +msgid "Sorting" +msgstr "Сортиране" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Координатор на транзакциите" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Показване на отворените теблици" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "Информация за състоянието на MySQL сървъра" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Избор на сървър" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Да не се сменя паролата" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Показване на отворените теблици" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Релации" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "на час" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "на минута" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "на секунда" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Тип на заявката" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Този MySQL сървър работи от %s. Стартиран е на %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Статус репликация" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Трафик" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Получени" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Изпратени" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Конекции" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "максимален брой на едновременните конекции" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Провалили се опити" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Прекъснати" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Limits the number of simultaneous connections the user may have." msgid "The number of failed attempts to connect to the MySQL server." @@ -8107,23 +8100,23 @@ msgstr "" "Ограничава броя на едновременните връзки, които потребителят може да държи " "отворени." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8131,78 +8124,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Брой на създадените от mysqld временни файлове." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Брой на вмъкнатите посредством INSERT DELAYED редове." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8210,7 +8203,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8218,42 +8211,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Брой заявки за обновяване на ред в таблица." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Брой заявки за вмъкване на ред в таблица." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8261,33 +8254,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8296,227 +8289,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Броят на заявки за запис в дневника." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Броят вмъкнати редове в InnoDB таблици." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Броят обновени редове в InnoDB таблици." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Брой на отворените файлове." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "Брой на отворените потоци (използва се главно за логове)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Брой на отвотените таблици." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Броят попадения в кеш." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8524,99 +8517,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Брой временни таблици отворени от подчинена SQL нишка." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Брой на сортираните редове." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8624,18 +8617,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Брой текущо отворени връзки." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8643,7 +8636,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Броят на нишките, които не са спящи." @@ -9742,6 +9735,11 @@ msgstr "Име на ИЗГЛЕД" msgid "Rename view to" msgstr "Преименуване на изгледа на" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "секунда" + #~ msgid "Query results" #~ msgstr "Резулат oт заявка" diff --git a/po/bn.po b/po/bn.po index a2c93249ae..aef95fdb63 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" @@ -84,7 +84,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "বর্ণনা" @@ -269,7 +269,7 @@ msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছ msgid "Rename database to" msgstr "ডাটাবেজ রিনেম কর" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "নির্দেশ" @@ -641,7 +641,7 @@ msgstr "View" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replication" @@ -754,7 +754,7 @@ msgstr "টেবিল পরীক্ষা কর" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -774,7 +774,7 @@ msgstr "তৈরী করুন" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "অবস্থা" @@ -1096,17 +1096,17 @@ msgstr "" msgid "Edit" msgstr "সম্পাদনা কর" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Server Choice" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL query" @@ -1118,13 +1118,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "মোট" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1156,7 +1156,7 @@ msgstr "Server Choice" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Processes" @@ -1175,7 +1175,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL query" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Row Statistics" @@ -2065,7 +2065,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "টেবিলসমূহ" @@ -2202,7 +2202,7 @@ msgid "Documentation" msgstr "বর্ণনা" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL query" @@ -2231,7 +2231,7 @@ msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Refresh" @@ -4954,7 +4954,7 @@ msgstr "সংকোচন" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "কোনটিই নয়" @@ -5217,7 +5217,7 @@ msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Kill" @@ -5310,7 +5310,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5797,7 +5797,7 @@ msgstr "Available MIME types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "হোষ্ট" @@ -6502,13 +6502,13 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "চলক" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "মান" @@ -6750,12 +6750,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "বাইনারী লগ" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "চলকসমূহ" @@ -7054,7 +7054,7 @@ msgstr "" msgid "+ Add a new value" msgstr "একটি নতুন ইউজার যোগ করুন" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "সময়" @@ -7295,7 +7295,7 @@ msgid "Protocol version" msgstr "Protocol version" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "User" @@ -7768,18 +7768,18 @@ msgstr "The \"%s\" table doesn't exist!" msgid "Select binary log to view" msgstr "Select binary log to view" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "ক্ষেত্রসমূহ" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -8314,7 +8314,7 @@ msgstr "The privileges were reloaded successfully." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 #, fuzzy msgid "Show master status" msgstr "Show slave status" @@ -8455,200 +8455,193 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Thread %s was successfully killed." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে" - -#: server_status.php:248 -msgid "Handler" -msgstr "Handler" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Query cache" - -#: server_status.php:250 -msgid "Threads" -msgstr "Threads" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "Temporary data" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Delayed inserts" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Key cache" - -#: server_status.php:255 -msgid "Joins" -msgstr "Joins" - -#: server_status.php:257 -msgid "Sorting" -msgstr "সাজাঁন" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Transaction coordinator" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "Flush (close) all tables" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Show open tables" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "Show slave hosts" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "Show slave status" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "Flush query cache" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "Runtime Information" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Server Choice" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Refresh" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "per second" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "per second" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "in use" -msgid "minutes" -msgstr "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "in use" +msgstr[1] "in use" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "per second" +msgstr[1] "per second" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Thread %s was successfully killed." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে" + +#: server_status.php:263 +msgid "Handler" +msgstr "Handler" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Query cache" + +#: server_status.php:265 +msgid "Threads" +msgstr "Threads" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "Temporary data" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Delayed inserts" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Key cache" + +#: server_status.php:270 +msgid "Joins" +msgstr "Joins" + +#: server_status.php:272 +msgid "Sorting" +msgstr "সাজাঁন" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Transaction coordinator" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "Flush (close) all tables" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Show open tables" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "Show slave hosts" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "Show slave status" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "Flush query cache" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "Runtime Information" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Server Choice" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Do not change the password" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Show open tables" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "per hour" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "per minute" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "per second" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Query type" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "This MySQL server has been running for %s. It started up on %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 #, fuzzy msgid "Replication status" msgstr "Replication" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Traffic" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8656,41 +8649,41 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "গৃহীত" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Sent" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "সংযোগসমূহ" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "বাদ দেওয়া হল" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "আইডি" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "The number of fsyncs writes done to the log file." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8700,16 +8693,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8721,11 +8714,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8733,7 +8726,7 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8741,7 +8734,7 @@ msgstr "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8749,23 +8742,23 @@ msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8775,96 +8768,96 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." +#: server_status.php:863 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: server_status.php:864 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: server_status.php:865 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: server_status.php:866 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + +#: server_status.php:867 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + #: server_status.php:868 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." #: server_status.php:869 -msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." -msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." - -#: server_status.php:870 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: server_status.php:871 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." - -#: server_status.php:872 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - -#: server_status.php:873 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "The number of free pages." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8874,7 +8867,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8886,11 +8879,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8898,7 +8891,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8906,11 +8899,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8918,7 +8911,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8932,55 +8925,55 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8988,35 +8981,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9024,51 +9017,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9076,7 +9069,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9084,7 +9077,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9094,11 +9087,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9108,15 +9101,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9126,17 +9119,17 @@ msgstr "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAY queues." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9144,38 +9137,38 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9187,7 +9180,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9195,19 +9188,19 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9215,11 +9208,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9227,7 +9220,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9235,15 +9228,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9251,11 +9244,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9263,13 +9256,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "The number of queries that have taken more than long_query_time seconds." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9279,23 +9272,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9307,7 +9300,7 @@ msgstr "" "should first optimize your queries, and then either split your table or " "tables or use replication." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9317,11 +9310,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9333,7 +9326,7 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." @@ -10475,6 +10468,11 @@ msgstr "" msgid "Rename view to" msgstr "টেবিল রিনেম করুন" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "per second" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/bs.po b/po/bs.po index aff3a55122..5e2c0a120e 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" @@ -83,7 +83,7 @@ msgstr "Ime ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Opis" @@ -272,7 +272,7 @@ msgstr "Tabela %s je kopirana u %s." msgid "Rename database to" msgstr "Promjeni ime tabele u " -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Naredba" @@ -645,7 +645,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 #, fuzzy msgid "Replication" msgstr "Relacije" @@ -757,7 +757,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -776,7 +776,7 @@ msgstr "Napravi" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1081,17 +1081,17 @@ msgstr "" msgid "Edit" msgstr "Promeni" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Izbor servera" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL upit" @@ -1103,13 +1103,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1141,7 +1141,7 @@ msgstr "Izbor servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Procesi" @@ -1160,7 +1160,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL upit" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Statistike reda" @@ -2036,7 +2036,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabele" @@ -2169,7 +2169,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL upit" @@ -2198,7 +2198,7 @@ msgid "Create PHP Code" msgstr "Napravi PHP kod" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4876,7 +4876,7 @@ msgstr "Kompresija" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "nema" @@ -5125,7 +5125,7 @@ msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Obustavi" @@ -5216,7 +5216,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB status" @@ -5681,7 +5681,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Host" @@ -6381,13 +6381,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Promjenljiva" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Vrijednost" @@ -6629,13 +6629,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Binarni" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Promjenljive" @@ -6931,7 +6931,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Dodaj novog korisnika" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Vrijeme" @@ -7140,7 +7140,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Korisnik" @@ -7600,18 +7600,18 @@ msgstr "Tabela \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "Polja" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -8144,7 +8144,7 @@ msgstr "Privilegije su uspešno ponovo učitane." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8283,256 +8283,249 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +msgid "Refresh rate" +msgstr "Generirao" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "se koristi" +msgstr[1] "se koristi" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "u sekundi" +msgstr[1] "u sekundi" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspješno prekinut." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin nije mogao da prekine proces %s. Vjerovatno je već zatvoren." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 #, fuzzy msgid "Query cache" msgstr "Vrsta upita" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "Prošireni INSERT" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 #, fuzzy msgid "Show open tables" msgstr "Prikaži tabele" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Informacije o toku rada" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Izbor servera" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -msgid "Refresh rate" -msgstr "Generirao" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "u sekundi" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "u sekundi" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "se koristi" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nemoj da mijenjaš lozinku" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "Prikaži tabele" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "na sat" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "u minuti" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "u sekundi" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Vrsta upita" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Saobraćaj" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Primljeno" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Poslato" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Konekcije" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8540,78 +8533,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8619,7 +8612,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8627,42 +8620,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8670,33 +8663,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8705,227 +8698,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8933,99 +8926,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9033,18 +9026,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9052,7 +9045,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10187,6 +10180,11 @@ msgstr "" msgid "Rename view to" msgstr "Promjeni ime tabele u " +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "u sekundi" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/ca.po b/po/ca.po index 714052d1b3..d08a9f363d 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" @@ -84,7 +84,7 @@ msgstr "Nom de clau" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Descripció" @@ -271,7 +271,7 @@ msgstr "La base de dades %s s'ha copiat a %s" msgid "Rename database to" msgstr "Reanomena base de dades a" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Ordre" @@ -624,7 +624,7 @@ msgstr "Vista" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replicació" @@ -737,7 +737,7 @@ msgstr "Taules seguides" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Creat" msgid "Updated" msgstr "Actualitzat" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Estat" @@ -1070,17 +1070,17 @@ msgstr "Tanca" msgid "Edit" msgstr "Edita" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Elecció de Servidor" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -1093,13 +1093,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1131,7 +1131,7 @@ msgstr "Elecció de Servidor" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Processos" @@ -1151,7 +1151,7 @@ msgstr "" msgid "Issued queries" msgstr "Consultes SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Consulta d'estadístiques" @@ -1976,7 +1976,7 @@ msgstr "compartit" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Taules" @@ -2109,7 +2109,7 @@ msgid "Documentation" msgstr "Documentació" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "Consulta SQL" @@ -2138,7 +2138,7 @@ msgid "Create PHP Code" msgstr "Crea codi PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Refresca" @@ -4911,7 +4911,7 @@ msgstr "Compressió:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Res" @@ -5150,7 +5150,7 @@ msgid "The row has been deleted" msgstr "S'ha esborrat la fila" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Finalitzar" @@ -5241,7 +5241,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Grup de memòries intermitges" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Estat InnoDB" @@ -5748,7 +5748,7 @@ msgstr "Mostra tipus MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Servidor" @@ -6475,13 +6475,13 @@ msgid "Slave status" msgstr "Estat de l'esclau" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -6710,12 +6710,12 @@ msgid "Synchronize" msgstr "Sincronitza" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Registre binari" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variables" @@ -6999,7 +6999,7 @@ msgstr "Definició de PARTICIÓ" msgid "+ Add a new value" msgstr "+ Afegir un nou valor" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Temps" @@ -7198,7 +7198,7 @@ msgid "Protocol version" msgstr "Versió del protocol" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Usuari" @@ -7648,17 +7648,17 @@ msgstr "L'arxiu no existeix" msgid "Select binary log to view" msgstr "Tria el registre binari per veure" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Arxius" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Talla les consultes mostrades" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Mostra Consultes completes" @@ -8188,7 +8188,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Aquest servidor s'ha configurat com a mestre en un procés de replicació." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Mostra l'estat del mestre -show master status-" @@ -8337,173 +8337,166 @@ msgstr "" "Aquest servidor no està configurat com a esclau en un procés de replicació. " "Vols configurar-lo ?" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Fil %s cancel.lat correctament." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin no pot cancel.lar el fil %s. Probablement, ja és tancat." - -#: server_status.php:248 -msgid "Handler" -msgstr "Gestor" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Memòria cau de consultes" - -#: server_status.php:250 -msgid "Threads" -msgstr "Fils" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "Dades temporals" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Insercions demorades" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Memòria cau de claus" - -#: server_status.php:255 -msgid "Joins" -msgstr "Unions" - -#: server_status.php:257 -msgid "Sorting" -msgstr "Classificant" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Coordinador de transaccions" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "Sincronitza (tanca) totes les taules" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Mostra taules obertes" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "Mostra servidors esclaus" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "Mostra l'estat d'esclaus" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "Buida la memòria cau de consultes" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "Informació d'execució" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Elecció de Servidor" - -#: server_status.php:387 -#, fuzzy -#| msgid "See slave status table" -msgid "All status variables" -msgstr "Veure la taula d'estat de l'esclau" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Refresca" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Segon" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Segon" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "Minute" -msgid "minutes" -msgstr "Minut" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minut" +msgstr[1] "Minut" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Segon" +msgstr[1] "Segon" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Fil %s cancel.lat correctament." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin no pot cancel.lar el fil %s. Probablement, ja és tancat." + +#: server_status.php:263 +msgid "Handler" +msgstr "Gestor" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Memòria cau de consultes" + +#: server_status.php:265 +msgid "Threads" +msgstr "Fils" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "Dades temporals" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Insercions demorades" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Memòria cau de claus" + +#: server_status.php:270 +msgid "Joins" +msgstr "Unions" + +#: server_status.php:272 +msgid "Sorting" +msgstr "Classificant" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Coordinador de transaccions" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "Sincronitza (tanca) totes les taules" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Mostra taules obertes" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "Mostra servidors esclaus" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "Mostra l'estat d'esclaus" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "Buida la memòria cau de consultes" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "Informació d'execució" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Elecció de Servidor" + +#: server_status.php:402 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Veure la taula d'estat de l'esclau" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "No canviïs la contrasenya" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Mostra taules obertes" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "Enllaços relacionats" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "per hora" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "per minut" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "per segon" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Tipus de consulta" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Aquest servidor MySQL és en marxa durant %s. Es va iniciar en %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8511,19 +8504,19 @@ msgstr "" "Aquest servidor MySQL treballa com a mestre i esclau en un " "procés de replicació ." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Aquest servidor MySQL treballa com a mestre en un procés de " "replicació ." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Aquest servidor MySQL treballa com a esclau en un procés de " "replicació ." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8531,15 +8524,15 @@ msgstr "" "Per obtenir més informació sobre l'estat de replicació al servidor, visita " "la secció de replicació." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Estat de la replicació" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Tràfic" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8547,41 +8540,41 @@ msgstr "" "En un servidor ocupat, els comptadors de bytes poden excedir el seu tamany, " "llavors les estadístiques donades pel servidor MySQL poden ser incorrectes." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Rebut" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Enviat" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Connexions" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "max. connexions a la vegada" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Intents erronis" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Avortat" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "No es pot connectar al servidor MySQL" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8591,17 +8584,17 @@ msgstr "" "però que excedeixen el valor de binlog_cache_size i usen un arxiu temporal " "per desar elements de la transacció." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El nombre de transaccions que han fet servir el registre binari temporal." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8613,11 +8606,11 @@ msgstr "" "incrementar el valor de tmp_table_size per fer que les taules temporals " "treballin en memòria en lloc de treballar en disc." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Arxius temporals creats per mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8625,7 +8618,7 @@ msgstr "" "El nombre de taules temporals creades en memòria per el servidor mentre " "executa instruccions." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8633,7 +8626,7 @@ msgstr "" "El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat " "quelcom error (possile clau duplicada)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8641,23 +8634,23 @@ msgstr "" "El nombre de gestors de fils de INSERT DELAYED en ús. Cada taula diferent ón " "s'usa INSERT DELAYED té el seu propi fil." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "El nombre de files escrites amb INSERT DELAYED." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "El nombre d'instruccions FLUSH executades." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "El nombre d'instruccions COMMIT internes." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "El nombre de vegades que s'ha esborrat una fila d'una taula." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8667,7 +8660,7 @@ msgstr "" "coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. " "Handler_discover indica el nombre de taules descobertes." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8677,7 +8670,7 @@ msgstr "" "és alt, suggereix que el servidor està fent moltes cerques d'índex complet; " "per exemple, SELECT col1 FROM taula, assumint que col1 és indexat." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8686,7 +8679,7 @@ msgstr "" "és una bona indicació de que les consultes i taules estàn indexades " "acuradament." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8696,7 +8689,7 @@ msgstr "" "Aixó s'incrementa si s'està consultant una columna d'index amb limitació de " "rang o si s'està fent una cerca d'index." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8705,7 +8698,7 @@ msgstr "" "Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... " "DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8717,7 +8710,7 @@ msgstr "" "Probablement tens moltes consultes que fan que MySQL cerqui les taules " "senceres o bé hi ha joins que no fan servir les claus acuradament." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8729,37 +8722,37 @@ msgstr "" "taules no estàn indexades acuradament o bé les consultes no estàn fetes per " "aprofitar les avantatges dels índexos definits." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "El nombre d'instruccions ROLLBACK." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "El nombre de peticions per a actualitzar una fila en una taula." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "El nombre de peticions per a insertar una fila en una taula." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "El nombre de pàgines contenint dades (brutes o netes)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "El nombre de pàgines actualment brutes." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El nombre de pàgines a la memòria cau que s'han demanat per ser " "actualitzades." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "El nombre de pàgines lliures." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8769,7 +8762,7 @@ msgstr "" "pàgines s'estàn llegint o escrivint actualment o no es poden actualitzar o " "esborrar per qualsevol altra raó." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8781,11 +8774,11 @@ msgstr "" "Aquest valor es pot calcular com Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Tamany total de la memòria cau, en pàgines." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8793,7 +8786,7 @@ msgstr "" "El nombre de lectures aleatòries d'InnoDB iniciades. Aixó passa quan una " "consulta cerca en una gran part de una taula però en ordre aleatori." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8801,11 +8794,11 @@ msgstr "" "El nombre de lectures secuencials d'InnoDB iniciades. Aixó passa quan InnoDB " "fa una cerca secuencial a la taula sencera." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "El nombre de peticions de lectures lògiques que InnoDB ha fet." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8813,7 +8806,7 @@ msgstr "" "El nombre de peticions de lectures lògiques que InnoDB no pot satisfer de la " "memòria cau i ha de fer lectures de pàgines individuals." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8827,55 +8820,55 @@ msgstr "" "comptador mostra instàncies d'aquestes esperes. Si el tamany de la memòria " "cau és adequat, aquest valor sól ser petit." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "El nombre d'escriptures fetes a la memòria cau d'InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "El nombre d'operacions fsync() aproximades." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "El nombre actual d'operacions fsync() pendents." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "El nombre actual de lectures pendents." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "El nombre actual d'escritures pendents." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "La quantitat aproximada de dades llegides, en bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "El nombre total de dades llegides." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "El nombre total de dades escrites." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "La quantitat aproximada de dades escrites, en bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8883,35 +8876,35 @@ msgstr "" "El nombre d'esperes fetes degut al petit tamany de la memòria intermèdia del " "registre i a esperar a que s'actualitzés abans de continuar." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "El nombre de peticions d'escriptura al registre." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "El nombre d'escriptures físiques a l'arxiu de registre." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "El nombre d'escriptures fsync() fetes a l'arxiu de registre." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Escriptures pendents a l'arxiu de registre." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "El nombre de bytes escrits a l'arxiu de registre." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "El nombre de pàgines creades." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8920,51 +8913,51 @@ msgstr "" "comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment " "a bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "El nombre de pàgines llegides." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "El nombre de pàgines escrites." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "El nombre de bloquejos de files actualment en espera." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El temps promig en fer un bloqueig de fila, en milisegons." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "El temps total emprat en fer bloquejos de files, en milisegons." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El temps màxim en fer un bloqueig de fila, en milisegons." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "El nombre de vegades que un bloqueig de fila ha estat en espera." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "El nombre de files esborrades de taules InnoDB." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "El nombre de files afegides a taules InnoDB." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "El nombre de files llegides de taules InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "El nombre de files actualitzades en taules InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8973,7 +8966,7 @@ msgstr "" "però que encara no han estat actualitzades a disc. Es coneix com a " "Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8981,7 +8974,7 @@ msgstr "" "El nombre de blocs no usats a la memòria cau de les claus. Aquest valor es " "pot fer servir per saber quànta memòria cau de les claus s'utilitza." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8990,11 +8983,11 @@ msgstr "" "El nombre de blocs usats a la memòria cau de les claus. Aquest valor és la " "marca indicativa del màxim nombre de blocs usats mai a l'hora." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "El nombre de peticions de lectura d'un bloc de clau de la memòria cau." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9004,16 +8997,16 @@ msgstr "" "gran, llavors el valor de key_buffer_size probablement és massa petit. El " "rati de la memòria cau es pot calcular com Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" "El nombre de peticions d'escriptura d'un bloc de clau a la memòria cau." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "El nombre d'escriptures físiques d'un bloc de clau a disc." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9024,17 +9017,17 @@ msgstr "" "de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s'ha " "compilat cap consulta." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El nombre de files esperant a ser escrites en cues INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9042,39 +9035,39 @@ msgstr "" "El nombre de taules que han estat obertes. Si el nombre de taules obertes és " "gran, probablement el valor de memòria cau de taula és massa petit." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "El nombre d'arxius que estàn oberts." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El nombre de fluxes que estàn oberts (usats principalment per a registre)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "El nombre de taules que estàn obertes." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "La quantitat de memòria liure per a memòria cau de consultes." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "El nombre d'encerts a memòria cau." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "El nombre de consultes afegides a la memòria cau." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9087,7 +9080,7 @@ msgstr "" "l'estratègia menys recentment usada(least recently used - LRU) per decidir " "quines consultes treure de la memòria cau." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9095,19 +9088,19 @@ msgstr "" "El nombre de consultes no enviades a la memòria cau (no enviables, o no " "enviades degut al paràmetre query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "El nombre de consultes registrades a la memòria cau." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "El nombre total de blocs a la memòria cau de consultes." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'estat de la replicació a prova d'errades (no implementat encara)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9115,12 +9108,12 @@ msgstr "" "El nombre de joins que no usen indexs. Si aquest valor no és 0, s'haurien de " "comprovar acuradament els indexs de les taules." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "El nombre de joins que han usat un rang de cerca en una taula de referència." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9129,7 +9122,7 @@ msgstr "" "cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els " "indexs de les taules.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9137,16 +9130,16 @@ msgstr "" "El nombre de joins que han usat rangs a la primera taula. (Normalment no és " "crític si el valor no és molt gran.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "El nombre de joins que han fet una cerca a la primera taula sencera." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El nombre de taules temporals obertes actualment pel fil esclau de SQL." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9154,25 +9147,25 @@ msgstr "" "Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació " "de SQL ha recuperat transaccions." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Aixó és ACTIU -ON- si aquest servidor és un esclau que està connectat a un " "mestre." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "El nombre de fils que han tardat més que slow_launch_time segons a crear." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "El nombre de consultes que han tardat més que long_query_time segons." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9182,23 +9175,23 @@ msgstr "" "hagut de fer. Si aquest valor és gran, s'hauria de considerar incrementar el " "valor de la variable de sistema sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "El nombre de classificacions fetes amb rangs." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "El nombre de files classificades." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "El nombre de classificacions fetes cercant la taula." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "El nombre de vegades que un bloqueig de taula s'ha fet immediatament." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9211,7 +9204,7 @@ msgstr "" "consultes, o també dividir la taula o taules en vàries o bé utilitzar la " "replicació." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9221,11 +9214,11 @@ msgstr "" "comptar com Threads_created/Connections. Si aquest valor és vermell s'hauria " "d'augmentar el valor de thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "El nombre de connexions obertes simultàniament." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9236,7 +9229,7 @@ msgstr "" "gran, pots voler augmentar el valor de thread_cache_size. (Normalment això " "no dóna una millora de rendiment notable si es té una bona aplicació de fil.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "El nombre de fils que no estàn dormint." @@ -10407,6 +10400,11 @@ msgstr "Nom de VISTA" msgid "Rename view to" msgstr "Reanomena la vista a" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Segon" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Comparació del temps d'execució de consultes (en microsegons)" diff --git a/po/cs.po b/po/cs.po index 5e9fb78347..28ed5ce563 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-17 10:28+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" @@ -87,7 +87,7 @@ msgstr "Název klíče" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Popis" @@ -273,7 +273,7 @@ msgstr "Databáze %s byla zkopírována na %s" msgid "Rename database to" msgstr "Přejmenovat databázi na" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Příkaz" @@ -629,7 +629,7 @@ msgstr "Pohled" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikace" @@ -736,7 +736,7 @@ msgstr "Sledované tabulky" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -754,7 +754,7 @@ msgstr "Vytvořeno" msgid "Updated" msgstr "Aktualizováno" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stav" @@ -1012,7 +1012,6 @@ msgstr "Nebylo zadáno číslo!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#| msgid "Log file count" msgid "Total count" msgstr "Celkový počet" @@ -1059,17 +1058,15 @@ msgstr "Ukončit" msgid "Edit" msgstr "Upravit" -#: js/messages.php:66 server_status.php:411 -#| msgid "Server Choice" +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "Živý graf provozu" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "Živý graf připojení a procesů" -#: js/messages.php:68 server_status.php:443 -#| msgid "Show query chart" +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "Živý graf dotazů" @@ -1080,13 +1077,13 @@ msgstr "Statická data" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Celkem" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "Ostatní" @@ -1109,7 +1106,6 @@ msgid "kB received since last refresh" msgstr "Přijato kiB od posledního obnovení" #: js/messages.php:82 -#| msgid "Server Choice" msgid "Server traffic (in kB)" msgstr "Síťový provoz (v kiB)" @@ -1117,12 +1113,11 @@ msgstr "Síťový provoz (v kiB)" msgid "Connections since last refresh" msgstr "Spojení od posledního obnovaní" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Procesy" #: js/messages.php:85 -#| msgid "Connections" msgid "Connections / Processes" msgstr "Připojení / Procesů" @@ -1131,11 +1126,10 @@ msgid "Issued queries since last refresh" msgstr "Provedených dotazů od posledního obnovení" #: js/messages.php:87 -#| msgid "SQL queries" msgid "Issued queries" msgstr "Provedené dotazy" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Statistika dotazů" @@ -1942,7 +1936,7 @@ msgstr "sdílený" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabulky" @@ -2074,7 +2068,7 @@ msgid "Documentation" msgstr "Dokumentace" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-dotaz" @@ -2103,7 +2097,7 @@ msgid "Create PHP Code" msgstr "Vytvořit PHP kód" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Obnovit" @@ -4823,7 +4817,7 @@ msgstr "Komprese:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Žádná" @@ -4957,7 +4951,6 @@ msgid "Language" msgstr "Jazyk" #: libraries/display_tbl.lib.php:397 -#| msgid "Textarea columns" msgid "Restore column order" msgstr "Obnovit pořadí sloupců" @@ -4966,7 +4959,6 @@ msgid "Drag to reorder" msgstr "Uspořádejte přetažením" #: libraries/display_tbl.lib.php:412 -#| msgid "Click to select" msgid "Click to sort" msgstr "Klikněte pro řazení" @@ -5060,7 +5052,7 @@ msgid "The row has been deleted" msgstr "Řádek byl smazán" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Ukončit" @@ -5148,7 +5140,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Vyrovnávací paměť" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Stav InnoDB" @@ -5647,7 +5639,7 @@ msgstr "Zobrazit MIME typy" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Počítač" @@ -6362,13 +6354,13 @@ msgid "Slave status" msgstr "Stav podřízeného" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Proměnná" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Hodnota" @@ -6597,12 +6589,12 @@ msgid "Synchronize" msgstr "Synchronizace" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binární log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Proměnné" @@ -6884,7 +6876,7 @@ msgstr "Definice PARTITION" msgid "+ Add a new value" msgstr "+ Přidat novou hodnotu" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Čas" @@ -7078,7 +7070,7 @@ msgid "Protocol version" msgstr "Verze protokolu" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Uživatel" @@ -7522,17 +7514,17 @@ msgstr "Soubor neexistuje" msgid "Select binary log to view" msgstr "Zvolte binární log pro zobrazení" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Soubory" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Zobrazit zkrácené dotazy" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Zobrazit celé dotazy" @@ -8055,7 +8047,7 @@ msgstr "Nadřízený server bych úspěšně změněn na %s" msgid "This server is configured as master in a replication process." msgstr "Tento server je v replikačním procesu nastavený jako nadřízený." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Zobrazit stav nadřízeného" @@ -8202,12 +8194,34 @@ msgstr "" "Tento server není nastaven jako podřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "Obnovovací frekvence" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minuty" +msgstr[1] "Minuty" +msgstr[2] "Minuty" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekundy" +msgstr[1] "Sekundy" +msgstr[2] "Sekundy" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bylo úspěšně zabito." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8215,159 +8229,129 @@ msgstr "" "phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již " "skončil." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Obslužné rutiny" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Vyrovnávací paměť dotazů" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Počet vláken" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Dočasná data" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Odložené inserty" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Vyrovnávací paměť klíčů" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Použité výběry" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Řazení" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Koordinátor transakcí" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Zavřít všechny tabulky" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Zobrazit otevřené tabulky" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Zobrazit podřízené servery" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Zobrazit stav podřízených serverů" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Vyprázdnit vyrovnávací paměť dotazů" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Stav serveru" -#: server_status.php:385 -#| msgid "Server Choice" +#: server_status.php:400 msgid "Server traffic" msgstr "Síťový provoz serveru" -#: server_status.php:387 -#| msgid "See slave status table" +#: server_status.php:402 msgid "All status variables" msgstr "Všechny stavové proměnné" -#: server_status.php:397 server_status.php:430 -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Obnovovací frekvence" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Sekundy" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Sekundy" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "Minuty" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Neměnit heslo" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Zobrazit otevřené tabulky" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "Související odkazy" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "za hodinu" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "za minutu" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "za sekundu" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Typ dotazu" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Tento MySQL server běží %s. Čas spuštění: %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8375,17 +8359,17 @@ msgstr "" "Tento server pracuje jako nadřízený i podřízený v " "replikačním procesu." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Tento server pracuje jako nadřízený v replikačním procesu." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Tento server pracuje jako podřízený v replikačním procesu." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8393,15 +8377,15 @@ msgstr "" "Pro více informací o stavu replikace se podívejte do sekce replikace." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Stav replikace" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Provoz" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8409,41 +8393,41 @@ msgstr "" "Na hodně zatíženém serveru mohou čítače přetéct, takže statistiky MySQL " "serveru mohou být nepřesné." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Přijato" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Odesláno" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Připojení" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "Maximum současných připojení" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Nepovedených pokusů" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Přerušené" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nepodařilo se připojit k MySQL serveru" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8453,16 +8437,16 @@ msgstr "" "binlog_cache_size a musely použít dočasný soubor pro uložení příkazů " "transakce." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcí, které využily dočasný binární log." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8473,18 +8457,18 @@ msgstr "" "Pokud je tato hodnota velká, můžete zvětšit parametr tmp_table_size a MySQL " "bude používat větší dočasné tabulky v paměti." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Počet vytvořených dočasných souborů." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" "Počet dočasných tabulek vytvořených serverem v paměti při provádění dotazů." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8492,7 +8476,7 @@ msgstr "" "Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba " "(pravděpodobně duplicitní klíč)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8500,23 +8484,23 @@ msgstr "" "Počet vláken používaných pro INSERT DELAYED. Každá tabulka na které je " "použit INSERT DEKAYED má přiděleno jedno vlákno." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Počet řádků zapsaných pomocí INSERT DELAYED." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Počet provedených příkazů FLUSH." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Počet interních příkazů COMMIT." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Počet požadavků na smazání řádku." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8525,7 +8509,7 @@ msgstr "" "Počet zjišťování tabulek. Tímto se nazývá dotaz NDB clusteru, jestli ví o " "tabulce daného jména." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8535,7 +8519,7 @@ msgstr "" "server provádí mnoho kompletních procházení indexu. Na příklad SELECT col1 " "FROM foo, pokud je col1 indexována." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8543,7 +8527,7 @@ msgstr "" "Počet požadavků na přečtení řádku vycházející z indexu. Vysoká hodnota " "znamená, že dotazy správně využívají indexy." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8553,7 +8537,7 @@ msgstr "" "zvětšuje pokud provádíte dotaz na indexované pole s omezením rozsahu nebo " "prohledáváte index." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8561,7 +8545,7 @@ msgstr "" "Počet požadavků na přečtení předchozího řádku z indexu. Používané pro " "optimalizaci dotazů ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8573,7 +8557,7 @@ msgstr "" "Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky " "nebo používáte spojení tabulek, která nevyužívají indexů." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8584,35 +8568,35 @@ msgstr "" "pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné " "indexy." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Počet interních příkazů ROLLBACK." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Počet požadavků na aktualizaci řádku." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Počet požadavků na vložení řádku." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránek obsahujících data (změněné i nezměněné)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Počet změněných stránek." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránek, na které je požadavek na vyprázdnění." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Počet volných stránek." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8621,7 +8605,7 @@ msgstr "" "Počet zamčených stránek, tzn. stránek, které jsou právě zapisovány nebo " "čteny nebo nemohou být odstraněny z jakéhokoliv důvodu." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8633,11 +8617,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Celková velikost InnoDB bufferů, ve stránkách." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8645,7 +8629,7 @@ msgstr "" "Počet provedených „náhodných“ dopředných čtení. Tato situace nastává pokud " "dotaz prochází velkou část tabulky v náhodném pořadí." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8653,11 +8637,11 @@ msgstr "" "Počet provedených sekvenčních dopředných čtení. Toto nastává pokud InnoDB " "musí procházet celou tabulku." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Počet provedených logických čtení." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8665,7 +8649,7 @@ msgstr "" "Počet logických čtení, které nemohly být uspokojeny z bufferu, ale bylo " "nutné přečíst stránku ze souboru." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8678,55 +8662,55 @@ msgstr "" "k dispozici, musí se čekat. Pokud je velikost bufferů nastavena správně, " "měla by tato hodnota být malá." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisů provedených do InnoDB bufferu." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Počet provedených synchronizací fsync()." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Počet nevyřízených synchronizací fsync()." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Počet nevyřízených čtení." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Počet nevyřízených zápisů." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Velikost přečtených dat, v bajtech." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Počet provedených čtení dat." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Počet provedených zápisů dat." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Velikost zapsaných dat, v bajtech." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8734,35 +8718,35 @@ msgstr "" "Počet čekání kvůli plnému bufferu logu, který musel být vyprázdněn před " "pokračováním." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Počet požadavků na zápis do logovacího souboru." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Počet skutečných zápisů do logovacího souboru." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Počet synchronizací fsync() provedených na logovacích souborech." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Počet nevyřízených synchronizací logovacích souborů." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Počet nevyřízených zápisů do logovacích souborů." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Počet bajtů zapsaných do logovacího souboru." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Počet vytvořených stránek." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8770,51 +8754,51 @@ msgstr "" "Zakompilovaná velikost stránky InnoDB (výchozí je 16 kB). Mnoho hodnot je " "uváděno ve stránkách, pomocí této hodnoty je můžete přepočítat na velikost." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Počet přečtených stránek." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Počet zapsaných stránek." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Počet zámků řádku, na které se v současné době čeká." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Průměrný čas potřebný pro získání zámku řádku, v milisekundách." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas strávený čekáním na zámek řádku, v milisekundách." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximální čas potřebný pro získání zámku řádku, v milisekundách." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Kolikrát se muselo čekat na zámek řádku." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet řádků odstraněných z InnoDB tabulek." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet řádků vložených do InnoDB tabulek." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Počet řádků přečtených z InnoDB tabulek." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Počet řádků aktualizovaných v InnoDB tabulkách." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8822,7 +8806,7 @@ msgstr "" "Počet bloků ve vyrovnávací paměti klíčů, které byly změněny, ale nebyly " "zapsány na disk. Dříve se tato hodnota jmenovala Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8830,7 +8814,7 @@ msgstr "" "Počet nepoužitých bloků ve vyrovnávací paměti klíčů. Pomocí této hodnoty " "poznáte jak moc je vyrovnávací paměť využitá." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8839,11 +8823,11 @@ msgstr "" "Počet použitých bloků ve vyrovnávací paměti klíčů. Tato hodnota určuje " "maximum bloků, které kdy byly obsazeny najednou." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Počet požadavků na přečtení klíče z vyrovnávací paměti." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8853,15 +8837,15 @@ msgstr "" "pravděpodobně máte malou vyrovnávací paměť (key_buffer_size). Úspěšnost " "vyrovnávací paměti můžete spočítat jako Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Počet požadavků na zápis bloku klíče na disk." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Počet skutečných zápisů bloku klíče na disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8871,17 +8855,17 @@ msgstr "" "dotazů. Užitečné pro porovnání různých dotazů. Výchozí hodnota 0 znamená, že " "žádný dotaz ještě nebyl kompilován." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet řádků čekajících na zapsání ve frontě INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8889,38 +8873,38 @@ msgstr "" "Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, " "pravděpodobně máte malou vyrovnávací paměť pro tabulky." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Počet otevřených souborů." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otevřených streamů (používané převážně pro logování)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Počet aktuálně otevřených tabulek." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Velikost volné paměti ve vyrovnávací paměti dotazů." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Počet zásahů vyrovnávací paměti dotazů." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Počet dotazů přidaných do vyrovnávací paměti dotazů." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8932,7 +8916,7 @@ msgstr "" "Vyrovnávací paměť používá strategii LRU (nejdéle nepoužité) pro vyřazování " "dotazů z vyrovnávací paměti." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8940,19 +8924,19 @@ msgstr "" "Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli " "nastavení query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Počet dotazů ve vyrovnávací paměti dotazů." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Celkový počet bloků ve vyrovnávací paměti dotazů." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikace." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8960,12 +8944,12 @@ msgstr "" "Počet spojení, které nevyužívaly indexy. Pokud tato hodnota není 0, měli " "byste zkontrolovat indexy tabulek." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, které používaly intervalové vyhledávání na referenční tabulce." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8973,7 +8957,7 @@ msgstr "" "Počet spojení bez klíčů, které kontrolovaly použití klíčů po každém řádku. " "(Pokud tato hodnota není 0, měli byste zkontrolovat indexy tabulek.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8981,38 +8965,38 @@ msgstr "" "Počet spojení, které používaly intervalové vyhledávání na první tabulce. " "(Tato hodnota obvykle není kritická i když je vysoká.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, které prováděly kompletní procházení první tabulky." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Počet dočasných tabulek v současné době otevřených podřízeným serverem." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "Celkový počet, kolikrát musel podřízený server opakovat transakce." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Tato položka je zapnutá, pokud server pracuje jako podřízený." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Počet vláken jejichž vytvoření trvalo déle než slow_launch_time sekund." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Počet dotazů, které trvaly déle než long_query_time sekund." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9021,23 +9005,23 @@ msgstr "" "Počet průchodů slučování, které musel provést řadicí algoritmus. Při příliš " "vysoké hodnotě zvažte zvýšení sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Počet řazení, které byly omezeny rozsahem." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Počet řazených řádek." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Počet řazení provedených procházením tabulky." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet okamžitých získání zámku tabulky." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9048,7 +9032,7 @@ msgstr "" "problémy s výkonem, měli byste optimalizovat dotazy a případně rozdělit " "tabulky nebo použít replikaci." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9058,11 +9042,11 @@ msgstr "" "spočítána jako Threads_created/Connections. Pokud je tato hodnota červená, " "měli byste zvýšit thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Počet aktuálně otevřených připojení." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9073,7 +9057,7 @@ msgstr "" "velká, můžete zvětšit parametr thread_cache_size. (Na platformách, které " "mají dobrou implementaci vláken však toto nemá příliš velký vliv.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Počet vláken, která nespí." @@ -10227,6 +10211,11 @@ msgstr "Jméno pohledu" msgid "Rename view to" msgstr "Přejmenovat pohled na" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Sekundy" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Porovnání běhu dotazu (v mikrosekundách)" diff --git a/po/cy.po b/po/cy.po index e3d1604586..e8c2824c82 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-05-19 21:21+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" @@ -87,7 +87,7 @@ msgstr "Enw allweddol" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Disgrifiad" @@ -274,7 +274,7 @@ msgstr "Cafodd y gronfa ddata %s ei chopïo i %s" msgid "Rename database to" msgstr "Ailenwch y gronfa ddata i" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Gorchymyn" @@ -628,7 +628,7 @@ msgstr "Dangos" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Dyblygiad" @@ -737,7 +737,7 @@ msgstr "Tablau a draciwyd" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Crëwyd" msgid "Updated" msgstr "Diweddarwyd" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Statws" @@ -1070,17 +1070,17 @@ msgstr "Cau" msgid "Edit" msgstr "Golygu" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Dewis Gweinydd" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show insert query" msgid "Live query chart" @@ -1093,13 +1093,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Cyfanswm" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1131,7 +1131,7 @@ msgstr "Dewis Gweinydd" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Prosesau" @@ -1147,7 +1147,7 @@ msgstr "" msgid "Issued queries" msgstr "" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -2003,7 +2003,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tablau" @@ -2130,7 +2130,7 @@ msgid "Documentation" msgstr "Dogfennaeth" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "Ymholiad SQL" @@ -2161,7 +2161,7 @@ msgid "Create PHP Code" msgstr "Creu Cod PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Adfywio" @@ -4830,7 +4830,7 @@ msgstr "Cywasgiad" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Dim" @@ -5081,7 +5081,7 @@ msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Lladd" @@ -5171,7 +5171,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Pwll Byffer" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Statws InnoDB" @@ -5640,7 +5640,7 @@ msgstr "Mathau MIME ar gael" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Gwesteiwr" @@ -6328,13 +6328,13 @@ msgid "Slave status" msgstr "Statws y caeth" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Newidyn" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Gwerth" @@ -6569,12 +6569,12 @@ msgid "Synchronize" msgstr "Cydamseru" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Log deuaidd" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Newidynnau" @@ -6831,7 +6831,7 @@ msgstr "Diffiniad PARTITION" msgid "+ Add a new value" msgstr "Ychwanegwch weinydd newydd" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Amser" @@ -6992,7 +6992,7 @@ msgid "Protocol version" msgstr "Fersiwn protocol" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Defnyddiwr" @@ -7438,17 +7438,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Ffeiliau" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "" @@ -7953,7 +7953,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8090,253 +8090,246 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_status.php:248 -msgid "Handler" -msgstr "" - -#: server_status.php:249 -msgid "Query cache" -msgstr "" - -#: server_status.php:250 -msgid "Threads" -msgstr "" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:254 -msgid "Key cache" -msgstr "" - -#: server_status.php:255 -msgid "Joins" -msgstr "" - -#: server_status.php:257 -msgid "Sorting" -msgstr "" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Dewis Gweinydd" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Adfywio" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Eiliad" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Eiliad" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "Minute" -msgid "minutes" -msgstr "Munud" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Munud" +msgstr[1] "Munud" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Eiliad" +msgstr[1] "Eiliad" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:263 +msgid "Handler" +msgstr "" + +#: server_status.php:264 +msgid "Query cache" +msgstr "" + +#: server_status.php:265 +msgid "Threads" +msgstr "" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:269 +msgid "Key cache" +msgstr "" + +#: server_status.php:270 +msgid "Joins" +msgstr "" + +#: server_status.php:272 +msgid "Sorting" +msgstr "" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Dewis Gweinydd" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 msgid "Containing the word:" msgstr "" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show only listed databases" msgid "Show only alert values" msgstr "Dangoswch gronfeydd data a restrir yn unig" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Perthnasau" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8344,78 +8337,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8423,7 +8416,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8431,42 +8424,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8474,33 +8467,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8509,227 +8502,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8737,99 +8730,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8837,18 +8830,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8856,7 +8849,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -9969,6 +9962,11 @@ msgstr "Enw VIEW" msgid "Rename view to" msgstr "Ailenwch golwg i" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Eiliad" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/da.po b/po/da.po index 638ff2389a..1f4f5c4fba 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-03-07 01:17+0200\n" "Last-Translator: \n" "Language-Team: danish \n" @@ -84,7 +84,7 @@ msgstr "Nøglenavn" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Beskrivelse" @@ -269,7 +269,7 @@ msgstr "Database %s er blevet kopieret til %s" msgid "Rename database to" msgstr "Omdøb database til" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Kommando" @@ -630,7 +630,7 @@ msgstr "Visning" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikering" @@ -741,7 +741,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -759,7 +759,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1081,17 +1081,17 @@ msgstr "" msgid "Edit" msgstr "Ret" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Server valg" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Showing SQL query" msgid "Live query chart" @@ -1104,13 +1104,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1142,7 +1142,7 @@ msgstr "Server valg" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Processer" @@ -1160,7 +1160,7 @@ msgstr "" msgid "Issued queries" msgstr "" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy #| msgid "Databases statistics" msgid "Query statistics" @@ -2060,7 +2060,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabeller" @@ -2198,7 +2198,7 @@ msgid "Documentation" msgstr "Dokumentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-forespørgsel" @@ -2227,7 +2227,7 @@ msgid "Create PHP Code" msgstr "Fremstil PHP-kode" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Opdatér" @@ -4908,7 +4908,7 @@ msgstr "Komprimering" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Ingen" @@ -5171,7 +5171,7 @@ msgid "The row has been deleted" msgstr "Rækken er slettet!" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Dræb (Kill)" @@ -5265,7 +5265,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB status" @@ -5746,7 +5746,7 @@ msgstr "Tilgængelige MIME-typer" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Vært" @@ -6444,13 +6444,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Værdi" @@ -6691,12 +6691,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binær log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variabler" @@ -6995,7 +6995,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Tilføj en ny bruger" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Tid" @@ -7237,7 +7237,7 @@ msgid "Protocol version" msgstr "Protokolversion" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Bruger" @@ -7714,17 +7714,17 @@ msgstr "Tabellen \"%s\" findes ikke!" msgid "Select binary log to view" msgstr "Vælg binærlog til gennemsyn" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Filer" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Trunkér viste forespørgsler" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Vis fuldstændige forespørgsler" @@ -8257,7 +8257,7 @@ msgstr "Privilegierne blev korrekt genindlæst." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8394,200 +8394,193 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Opdatér" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "i brug" +msgstr[1] "i brug" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "pr. sekund" +msgstr[1] "pr. sekund" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s blev stoppet." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke dræbe tråden %s. Den er sandsynligvis allerede lukket." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Handler" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Forespørgsel-mellemlager" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Tråde" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Midlertidige data" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Forsinkede inserts" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Nøglemellemlager (key cache)" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Joins" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Sortering" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Transaktionskoordinator" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Flush (luk) alle tabeller" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Vis åbne tabeller" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Vis slaveværter" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Vis slavestatus" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Flush forespørgsel-mellemlager (query cache)" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Runtime-information" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Server valg" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Opdatér" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "pr. sekund" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "pr. sekund" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "i brug" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Kodeord må ikke ændres" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Vis åbne tabeller" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relationer" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "pr. time" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "pr. minut" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "pr. sekund" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Forespørgselstype" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Denne MySQL-server har kørt i %s. Den startede op den %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Trafik" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8595,41 +8588,41 @@ msgstr "" "På en travl server er der risiko for at bytetællerne løber over, så disse " "statistikker som rapporteret af MySQL-serveren kan være forkerte." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Modtaget" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Sendt" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Forbindelser" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "maks. samtidige forbindelser" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Mislykkede forsøg" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Afbrudt" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Antallet af fsyncs skrivninger lavet til log filen." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8639,17 +8632,17 @@ msgstr "" "overskred værdien for binlog_cache_size og brugte en midlertidig fil til at " "gemme statements fra transaktionen." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antal transaktioner der brugte det midlertidige binære log mellemlager." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8661,11 +8654,11 @@ msgstr "" "overveje at forøge tmp_table_size værdien for at gøre midlertidige tabeller " "hukommelses-baserede i stedet for disk-baserede." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Hvor mange midlertidige filer mysqld har oprettet." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8673,7 +8666,7 @@ msgstr "" "Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren " "under udførelse af statements." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8681,7 +8674,7 @@ msgstr "" "Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke " "der opstod fejl (sandsynligvis dublerede nøgler)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8689,23 +8682,23 @@ msgstr "" "Antallet af INSERT DELAYED handler-tråde i brug. Hver forskellig tabel " "hvorpå en bruger INSERT DELAYED får sin egen tråd." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Antallet af INSERT DELAYED rækker skrevet." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Antallet af udførte FLUSH statements." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Antallet af interne COMMIT statements." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Antallet af gange en række blev slettet fra en tabel." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8715,7 +8708,7 @@ msgstr "" "tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer " "antallet af gange tabeller er blevet opdaget." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8725,7 +8718,7 @@ msgstr "" "antyder det at serveren laver mange fulde indeks scans; for eksempel, SELECT " "col1 FROM foo, antagende at col1 er indekseret." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8734,7 +8727,7 @@ msgstr "" "er høj, er det en god indikation af at dine forespørgsler og tabeller er " "ordentligt indekserede." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8744,7 +8737,7 @@ msgstr "" "hvis du forespørger på en indekskolonne med en range-begrænsning eller hvis " "du udfører et indeks scan." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8752,7 +8745,7 @@ msgstr "" "Antallet af anmodninger om at læse foregående række i nøgleorden. Denne " "læsemetode bruges hovedsageligt til at optimere ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8764,7 +8757,7 @@ msgstr "" "resultatet. Du har sandsynligvis mange forespørgsler der forlanger at MySQL " "scanner hele tabeller eller du har joins der ikke bruger nøgler ordentligt." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8776,35 +8769,35 @@ msgstr "" "enten ikke er ordentligt indekserede eller at dine forespørgsler ikke er " "skrevet til at drage fordel af de indeks du har." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Antallet af interne ROLLBACK statements." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Antallet af anmodninger om at opdatere en række i en tabel." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Antallet af anmodninger om at indsætte en række i en tabel." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Antallet af sider der indeholder data (beskidte eller rene)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Antallet af såkaldt beskidte sider." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antallet af buffer pool sider der er anmodet om at skulle flushes." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Antallet af frie sider." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8814,7 +8807,7 @@ msgstr "" "sider der i øjeblikket læses eller skrives eller som ikke kan flushes eller " "fjernes af andre årsager." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8826,11 +8819,11 @@ msgstr "" "også beregnes som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på buffer pool, i sider." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8839,7 +8832,7 @@ msgstr "" "forespørgsel skal scanne en større del af en tabel men i tilfældig " "rækkefølge." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8847,11 +8840,11 @@ msgstr "" "Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når " "InnoDB laver en sekventiel fuld tabelscanning." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Antallet af logiske read anmodninger InnoDB har lavet." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8859,7 +8852,7 @@ msgstr "" "Antallet af logiske reads som InnoDB ikke kunne tilfredsstille fra buffer " "pool og måtte lave en enkelt-side read." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8873,55 +8866,55 @@ msgstr "" "sider først. Denne tæller tæller hvor mange gange det er sket. Hvis buffer " "pool størrelsen er sat ordentligt, skulle denne værdi være lille." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antallet af skrivninger til InnoDB buffer poolen." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Antallet af fsync() operationer indtil nu." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Nuværende antal ventende fsync() operationer." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Nuværende antal af ventende reads." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Nuværende antal af ventende writes." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Mængden af data læst indtil nu, i bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Det totale antal af data reads." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Det totale antal af data writes." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Mængden af data skrevet indtil nu, i bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8929,35 +8922,35 @@ msgstr "" "Antallet af waits vi har haft fordi log buffer var for lille og vi skulle " "vente på at den blev flushed før vi kunne fortsætte." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Antallet af log write anmodninger." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Antallet af fysiske skrivninger til log filen." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Antallet af fsyncs skrivninger lavet til log filen." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Antallet af ventende log fil fsyncs." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Ventende log fil skrivninger." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Antallet af bytes skrevet til log filen." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Antallet af sider oprettet." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8965,51 +8958,51 @@ msgstr "" "Den indkompilerede InnoDB sidestørrelse (standard 16KB). Mange værdier " "tælles i sider; sidestørrelsen gør at man let kan omregne dem til bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Antallet af sider læst." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Antallet af sider skrevet." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Antallet af rækkelåse der ventes på i øjeblikket." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gennemsnitstiden for at få en rækkelås, i millisekunder." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brugt på at hente rækkelåse, i millisekunder." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimale tid for at hente en rækkelås, i millisekunder." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Antallet af gange der skulle ventes på en rækkelås." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Antallet af rækker slettet fra InnoDB tabeller." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Antallet af rækker indsat i InnoDB tabeller." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Antallet af rækker læst fra InnoDB tables." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Antallet af rækker opdateret i InnoDB tabeller." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9018,7 +9011,7 @@ msgstr "" "endnu ikke er blevet flushet til disk. Det hed tidligere " "Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9026,7 +9019,7 @@ msgstr "" "Antallet af ubrugte blokke i nøglemellemlageret. Du kan bruge denne værdi " "til at fastslå hvor meget af nøglemellemlagere der er i brug." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9036,11 +9029,11 @@ msgstr "" "mærke der indikerer det maksimale antal blokke der på noget tidspunkt har " "været i brug på en gang." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Antallet af anmodninger om at læse en nøgleblok fra mellemlageret." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9050,15 +9043,15 @@ msgstr "" "stor, er din key_buffer_size værdi sandsynligvis for lille. Mellemlager miss " "raten kan beregnes som Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Antallet af anmodninger om at skrive en nøgleblok til mellemlageret." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Antallet af fysiske skrivninger af en nøgleblok til disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9070,18 +9063,18 @@ msgstr "" "standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler " "endnu." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Antallet af rækker der venter på at blive skrevet i INSERT DELAYED køer." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9089,38 +9082,38 @@ msgstr "" "Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er " "dit tabelmellemlager sandsynligvis for lille." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Antallet af filer der er åbne." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antallet af streams der er åbne (bruges hovedsageligt til logning)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Antallet af tabeller der er åbne." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Antallet af mellemlager hits." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Antallet af forespørgsler tilføjet til mellemlageret." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9133,7 +9126,7 @@ msgstr "" "Forespørgselsmellemlageret bruger en mindst nyligt brugt (LRU) strategi til " "at afgøre hvilke forespørgsler der skal fjernes fra mellemlageret." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9141,19 +9134,19 @@ msgstr "" "Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre " "eller ikke mellemlagret grundet query_cache_type indstillingen)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Antallet af forespørgsler registreret i mellemlageret." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Totalt antal blokke i forespørgsels-mellemlageret." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status på failsafe replikering (endnu ikke implementeret)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9161,11 +9154,11 @@ msgstr "" "Antallet af joins der ikke bruger indeks. Hvis denne værdi ikke er 0, bør du " "nøje tjekke indeksene på dine tabeller." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "Antallet af joins der brugte en range søgning på en reference tabel." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9173,7 +9166,7 @@ msgstr "" "Antallet af joins uden nøgler der tjekker for nøglebrug efter hver række. " "(Hvis denne ikke er 0, bør du nøje tjekke indeks på dine tabeller.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9181,15 +9174,15 @@ msgstr "" "Antallet af joins der brugte ranges på den første tabel. (Normalt ikke " "kritisk selvom tallet er stort.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Antallet af joins som lavede en fuld scan af den første tabel." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antallet af midlertidige tabeller i øjeblikket åbne af SQL tråden." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9197,12 +9190,12 @@ msgstr "" "Totalt (siden opstart) antal gange replikeringsslave SQL tråden har gen-" "forsøgt transaktioner." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dette er TIL hvis denne server er en slave der er forbundet til en master." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9210,13 +9203,13 @@ msgstr "" "Antallet af tråde der har taget mere end slow_launch_time sekunder at " "oprette." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Antallet af forespørgsler der har taget mere end long_query_time sekunder." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9226,23 +9219,23 @@ msgstr "" "denne værdi er høj, bør du overveje at forøge værdien af sort_buffer_size " "systemvariablen." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Antallet af sorteringer lavet med ranges." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Antallet af sorterede rækker." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Antallet af sorteringer udført ved scanning af tabellen." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Antallet af gange en tabellås blev givet øjeblikkeligt." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9254,7 +9247,7 @@ msgstr "" "optimere dine forespørgsler, og derefter enten opdele din tabel eller " "tabeller, eller bruge replikering." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9264,11 +9257,11 @@ msgstr "" "som Threads_created/Forbindelser. Hvis denne værdi er rød bør du forøge din " "thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Antallet af i øjeblikket åbne forbindelser." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9280,7 +9273,7 @@ msgstr "" "(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god " "tråd-implementering.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Antallet af tråde der ikke sover." @@ -10409,6 +10402,11 @@ msgstr "VIEW navn" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "pr. sekund" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/de.po b/po/de.po index 09adecc6b0..d8837f2c91 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-04-23 04:28+0200\n" "Last-Translator: Dominik Geyer \n" "Language-Team: german \n" @@ -84,7 +84,7 @@ msgstr "Schlüsselname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Beschreibung" @@ -271,7 +271,7 @@ msgstr "Datenbank %s wurde nach %s kopiert" msgid "Rename database to" msgstr "Datenbank umbenennen in" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Befehl" @@ -625,7 +625,7 @@ msgstr "Ansicht" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikation" @@ -738,7 +738,7 @@ msgstr "Verfolgte Tabellen" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -756,7 +756,7 @@ msgstr "Erstellt" msgid "Updated" msgstr "Aktualisiert" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1072,17 +1072,17 @@ msgstr "Schliesse" msgid "Edit" msgstr "Bearbeiten" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Server Auswählen" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -1095,13 +1095,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Insgesamt" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1133,7 +1133,7 @@ msgstr "Server Auswählen" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Prozesse" @@ -1153,7 +1153,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL-Abfragen" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Statistiken abfragen" @@ -1983,7 +1983,7 @@ msgstr "freigegeben" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabellen" @@ -2117,7 +2117,7 @@ msgid "Documentation" msgstr "Dokumentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-Befehl" @@ -2146,7 +2146,7 @@ msgid "Create PHP Code" msgstr "PHP-Code erzeugen" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Aktualisieren" @@ -4913,7 +4913,7 @@ msgstr "Komprimierung:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "keine" @@ -5154,7 +5154,7 @@ msgid "The row has been deleted" msgstr "Die Zeile wurde gelöscht." #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Beenden" @@ -5244,7 +5244,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Puffer-Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB-Status" @@ -5745,7 +5745,7 @@ msgstr "MIME-Typen anzeigen" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Host" @@ -6480,13 +6480,13 @@ msgid "Slave status" msgstr "Slave-Status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Wert" @@ -6715,12 +6715,12 @@ msgid "Synchronize" msgstr "Gleiche ab" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binäres Protokoll" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variablen" @@ -7008,7 +7008,7 @@ msgstr "PARTITION Definition" msgid "+ Add a new value" msgstr "+ Neuen Wert hinzufügen" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Dauer" @@ -7214,7 +7214,7 @@ msgid "Protocol version" msgstr "Protokoll-Version" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Benutzer" @@ -7667,17 +7667,17 @@ msgstr "Datei existiert nicht" msgid "Select binary log to view" msgstr "Binäres Protokoll zur Anzeige auswählen" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Dateien" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Zeige die SQL-Abfragen verkürzt an" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Zeige die SQL-Abfragen vollständig an" @@ -8213,7 +8213,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Dieser Server ist als Master in einem Replikations-Prozess konfiguriert." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Zeige den Master-Status" @@ -8364,12 +8364,34 @@ msgstr "" "Dieser Server ist nicht als Slave in einem Replikationsprozess konfiguriert. " "Möchten Sie ihn konfigurieren ?" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Aktualisieren" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minute" +msgstr[1] "Minute" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekunde" +msgstr[1] "Sekunde" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Der Prozess %s wurde erfolgreich abgebrochen." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8377,162 +8399,133 @@ msgstr "" "phpMyAdmin konnte den Prozess %s nicht abbrechen. Er wurde wahrscheinlich " "bereits geschlossen." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Handler" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Abfragen-Cache" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Prozesse" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Temporäre Daten" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Verzögertes Einfügen (delayed inserts)" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Schlüssel-Cache" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Tabellenverknüpfungen (joins)" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Sortierung" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Transaktions-Koordinator" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Alle Tabellen aktualisieren und schließen." -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Zeige alle offenen Tabellen" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Zeige alle Slave-Hosts" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Zeige den Slave-Status" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Den Abfragen-Cache leeren. (FLUSH)" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Laufzeit-Informationen" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Server Auswählen" -#: server_status.php:387 +#: server_status.php:402 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Die Slave Statustabelle sehen" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Aktualisieren" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Sekunde" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Sekunde" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "Minute" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Passwort nicht verändert" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Zeige alle offenen Tabellen" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "Weiterführende Links" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "pro Stunde" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "pro Minute" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "pro Sekunde" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Abfrageart" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Dieser MySQL-Server läuft bereits %s. Er wurde am %s gestartet." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8540,17 +8533,17 @@ msgstr "" "Dieser MySQL Server arbeitet als Master und Slave im " "Replikations-Prozess." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Dieser MySQL Server arbeitet als Master im Replikations-Prozess." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Dieser MySQL Server arbeitet als Slave im Replikations-Prozess." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8558,15 +8551,15 @@ msgstr "" "Für weitere Informationen über den Replikations-Status auf dem Server siehe " "Abschnitt Replikation." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Replikations-Status" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Netzwerkverkehr" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8575,41 +8568,41 @@ msgstr "" "\" (wieder bei 0 beginnen), deshalb können diese Werte, wie sie vom MySQL " "Server ausgegeben werden, falsch sein." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Empfangen" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Gesendet" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Verbindungen" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "max. gleichzeitige Verbindungen" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Fehlversuche" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Abgebrochen" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." msgstr "SSL für die MySQL Serververbindung aktivieren." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8619,17 +8612,17 @@ msgstr "" "des Binarylog-Caches (binlog_cache_size) überschritten und eine temporäre " "Datei verwendet haben um die Statements der Transaktion zu speichern." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Anzahl der Transaktionen, die den temporären Binarylog-Cache verwendet haben." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8641,11 +8634,11 @@ msgstr "" "Sie eventuell die Variable tmp_table_size herauf setzen, damit temporäre " "Tabellen im Speicher erzeugt werden statt auf der Festplatte." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8653,7 +8646,7 @@ msgstr "" "Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei " "der Ausführung von Statements." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8661,7 +8654,7 @@ msgstr "" "Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden, und bei denen " "ein Fehler auftrat (z. B. duplicate key)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8669,23 +8662,23 @@ msgstr "" "Anzahl der verzögerten Insert-Handler-Prozesse in Benutzung. Jede einzelne " "Tabelle mit verzögerten Inserts bekommt einen eigenen Prozess." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Anzahl der ausgeführten FLUSH-Befehle." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Anzahl der Zeilen, die aus Tabellen gelöscht wurden." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8695,7 +8688,7 @@ msgstr "" "kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle " "kennt. Dieser Vorgang wird "discovery" genannt." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8706,7 +8699,7 @@ msgstr "" "Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert " "ist)." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8715,7 +8708,7 @@ msgstr "" "dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und " "Tabellen korrekt indiziert sind." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8726,7 +8719,7 @@ msgstr "" "Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, " "wenn Sie einen Index-Scan durchführen." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8735,7 +8728,7 @@ msgstr "" "Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung " "von ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8748,7 +8741,7 @@ msgstr "" "haben Sie wahrscheinlich viele Anfragen, die MySQL zwingen, ganze Tabellen " "zu scannen, oder Sie haben Joins, die Schlüssel nicht richtig benutzen." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8761,36 +8754,36 @@ msgstr "" "sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile " "aus den Indexen ziehen, die Sie haben." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in einer Tabelle zu aktualisieren." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in eine Tabelle einzufügen." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Anzahl der als "dirty" markierten Seiten." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Anzahl der Seiten im Puffer-Pool, die zurückgeschrieben werden müssen." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Anzahl der unbenutzten Seiten." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8800,7 +8793,7 @@ msgstr "" "beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder " "entfernt werden können." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8812,11 +8805,11 @@ msgstr "" "aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Die Größe des Puffer-Pools in Seiten." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8824,7 +8817,7 @@ msgstr "" "Anzahl \"random\" read-aheads durch InnoDB. Dies geschieht wenn eine Abfrage " "einen großen Teil einer Tabelle durchsucht aber in zufälliger Reihenfolge." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8832,11 +8825,11 @@ msgstr "" "Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB " "eine Tabelle komplett sequentiell durchsucht." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8844,7 +8837,7 @@ msgstr "" "Anzahl an Lesevorgängen die InnoDB nicht aus dem Zwischenspeicher bedienen " "konnte und deshalb einen Einzel-Seiten-Lesevorgang starten musste." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8859,55 +8852,55 @@ msgstr "" "geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist " "sollte dieser Wert klein sein." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Bisher ausgeführte fsync()-Operationen." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Momentan anstehende fsync()-Operationen." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Momentan anstehende Lesezugriffe." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Momentan anstehende Schreizugriffe." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Wieviel Daten bisher gelesen wurden, in Byte." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Wie oft Daten gelesen wurden." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Wie oft Daten geschrieben wurden." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Anzahl der ausgeführten \"doublewrite\" Schreibzugriffe und die Anzahl der " "Seiten die dafür geschrieben wurden." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Anzahl der ausgeführten \"doublewrite\" Schreibzugriffe und die Anzahl der " "Seiten die dafür geschrieben wurden." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8915,35 +8908,35 @@ msgstr "" "Wie oft gewartet werden musste weil der Protokoll-Zwischenspeicher zu klein " "war und deshalb gewartet wurde das er geleert wird." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Getätigte fsyncs Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Anstehende \"fsyncs\" für die Protokoll-Datei." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Anzahl erstellter Seiten." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8952,55 +8945,55 @@ msgstr "" "werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte " "umzurechnen." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Anzahl gelesener Seiten." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Anzahl geschriebener Seiten." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Momentan anstehende Zeilen-Sperren." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Durchschnittliche Wartezeite um eine Zeilen-Sperre zu bekommen, in " "Millisekunden." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Summe aller Wartezeiten um Zeilen-Sperren zu bekommen, in Millisekunden." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Längste Wartezeite um eine Zeilen-Sperre zu bekommen, in Millisekunden." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Wie oft auf ein Zeilen-Sperre gewartet werden musste." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Anzahl gelöschter Zeilen aller InnoDB Tabellen." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Anzahl der eingefügten Zeilen in alle InnoDB Tabellen." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Anzahl der Zeilen, die aus InnoDB-Tabellen gelesen wurden." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Anzahl der Zeilen, die in InnoDB-Tabellen aktualisiert wurden." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9009,7 +9002,7 @@ msgstr "" "auf die Platte zurück geschrieben (flush) wurden; auch bekannt als " "Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9017,7 +9010,7 @@ msgstr "" "Die Anzahl der unbenutzten Schlüssel-Blöcke im Schlüssel-Cache. Dieser Wert " "kann dazu dienen die Auslastung des Schlüssel-Cache zu bestimmen." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9025,11 +9018,11 @@ msgid "" msgstr "" "Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-Cache." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Cache zu lesen." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9040,17 +9033,17 @@ msgstr "" "Die Cache-Zugriffsrate kann mit key_reads / key_read_requests berechnet " "werden." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block in den Cache zu schreiben." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" "Die Anzahl physikalischer Schreibvorgänge eines Schlüssel-Blocks auf Platte." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9060,19 +9053,19 @@ msgstr "" "berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu " "vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Anzahl der Zeilen, die in INSERT-DELAYED-Warteschleifen darauf warten, " "geschrieben zu werden." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9080,39 +9073,39 @@ msgstr "" "Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist " "Ihre table_cache-Variable wahrscheinlich zu niedrig." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Anzahl der geöffneten Dateien." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Anzahl der geöffneten Streams (hauptsächlich zum Protokollieren benutzt)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Anzahl der geöffneten Tabellen." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Freier Speicher im Abfragen-Cache." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Abfrage-Cache-Zugriffsrate." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Die Anzahl der Abfragen die dem Cache hinzugefügt wurden." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9125,7 +9118,7 @@ msgstr "" "recently used), d. h. es wird stets die Abfrage gelöscht, die am " "längsten unbenutzt im Cache lag." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9133,19 +9126,19 @@ msgstr "" "Die Anzahl der nicht im Cache eingetragenen Abfragen (nicht möglich, oder " "aufgrund der query_cache_type Einstellung)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Die Anzahl der Abfragen im Cache." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Cache." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Der Status der ausfallsicheren Replikation." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9153,13 +9146,13 @@ msgstr "" "Anzahl der Joins ohne Schlüssel. Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Anzahl der Joins, bei denen eine Bereichssuche auf die Referenztabelle statt " "fand." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9168,7 +9161,7 @@ msgstr "" "Schlüsselbenutzung geprüft wurde. Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden." -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9176,16 +9169,16 @@ msgstr "" "Anzahl der Joins, bei denen Bereiche auf die erste Tabelle benutzt wurden. " "(Es ist normalerweise unkritisch, wenn dieser Wert hoch ist.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Anzahl der Joins, bei denen die erste Tabelle gescannt wurde." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Anzahl der temporären Tabellen, die momentan vom Slave-Prozess geöffnet sind." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9193,13 +9186,13 @@ msgstr "" "Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread " "wiederversuchten Transaktionen." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dieser Wert steht auf ON wenn dieser Server ein Slave ist und mit dem Master " "verbunden ist." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9207,12 +9200,12 @@ msgstr "" "Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " "verbinden." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Anzahl der Anfragen, die länger als long_query_time benötigten." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9222,25 +9215,25 @@ msgstr "" "wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, " "sort_buffer herauf zu setzen." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Anzahl der sortierten Zeilen." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" "Anzahl der Sortiervorgänge, die durchgeführt wurden, indem die Tabelle " "gescannt wurde." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Wie oft eine Tabellensperre sofort erlangt wurde." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9252,7 +9245,7 @@ msgstr "" "sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle" "(n) zerteilen oder Replikation benutzen." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9262,11 +9255,11 @@ msgstr "" "Threads_created / Connections berechnet werden. Wenn dieser Wert rot ist, " "sollte der thread_cache_size erhöht werden." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Anzahl der momentan offenen Verbindungen." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9278,7 +9271,7 @@ msgstr "" "Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare " "Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Anzahl der Prozesse, die nicht schlafen." @@ -10456,6 +10449,11 @@ msgstr "VIEW Name" msgid "Rename view to" msgstr "View umbenennen in" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Sekunde" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Vergleich der Abfragedauer (in Mikrosekunden)" diff --git a/po/el.po b/po/el.po index 0f6a0ca86b..90461b8abf 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-16 12:17+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" @@ -84,7 +84,7 @@ msgstr "Όνομα κλειδιού" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Περιγραφή" @@ -271,7 +271,7 @@ msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s" msgid "Rename database to" msgstr "Μετονομασία βάσης δεδομένων σε" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Εντολή" @@ -625,7 +625,7 @@ msgstr "Προβολή" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Αναπαραγωγή" @@ -733,7 +733,7 @@ msgstr "Παρακολουθούμενοι πίνακες" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -751,7 +751,7 @@ msgstr "Δημιουργήθηκε" msgid "Updated" msgstr "Ενημερώθηκε" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Κατάσταση" @@ -1059,15 +1059,15 @@ msgstr "Κλείσιμο" msgid "Edit" msgstr "Επεξεργασία" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "Διάγραμμα τρέχουσας κυκλοφορίας" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "Διάγραμμα τρέχουσας σύνδεσης/διαδικασίας" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "Διάγραμμα τρέχοντος ερωτήματος" @@ -1078,13 +1078,13 @@ msgstr "Στατικά δεδομένα" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Σύνολο" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "Άλλα" @@ -1116,7 +1116,7 @@ msgstr "Κυκλοφορία Διακομιστή" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Διεργασίες" @@ -1136,7 +1136,7 @@ msgstr "" msgid "Issued queries" msgstr "Ερωτήματα SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Στατιστικά ερωτήματος" @@ -1947,7 +1947,7 @@ msgstr "κοινόχρηστο" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Πίνακες" @@ -2081,7 +2081,7 @@ msgid "Documentation" msgstr "Τεκμηρίωση" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "Εντολή SQL" @@ -2110,7 +2110,7 @@ msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Ανανέωση" @@ -4885,7 +4885,7 @@ msgstr "Συμπίεση" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Καμία" @@ -5123,7 +5123,7 @@ msgid "The row has been deleted" msgstr "Η Εγγραφή έχει διαγραφεί" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Τερματισμός" @@ -5214,7 +5214,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Κατάσταση InnoDB" @@ -5724,7 +5724,7 @@ msgstr "Διαθέσιμοι τύποι MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Φιλοξενητής" @@ -6447,13 +6447,13 @@ msgid "Slave status" msgstr "Κατάσταση δευτερεύοντος" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Μεταβλητή" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Τιμή" @@ -6682,12 +6682,12 @@ msgid "Synchronize" msgstr "Συγχρονισμός" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Μεταβλητές" @@ -6970,7 +6970,7 @@ msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)" msgid "+ Add a new value" msgstr "+ Προσθήκη νέας τιμής" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Χρόνος" @@ -7173,7 +7173,7 @@ msgid "Protocol version" msgstr "Έκδοση πρωτοκόλλου" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Χρήστης" @@ -7628,17 +7628,17 @@ msgstr "Το αρχείο δεν υπάρχει" msgid "Select binary log to view" msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για προβολή" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Αρχεία" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Πλήρης εμφάνιση ερωτημάτων" @@ -8175,7 +8175,7 @@ msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική " "διαδικασία." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Προβολή κατάστασης πρωτεύοντος" @@ -8327,12 +8327,32 @@ msgstr "" "Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "Ρυθμός ανανέωσης" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "minutes" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "λεπτά" +msgstr[1] "λεπτά" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "δευτερόλεπτο" +msgstr[1] "δευτερόλεπτο" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Η λειτουργία %s διεκόπη." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8340,144 +8360,123 @@ msgstr "" "Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη " "σταματήσει." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Χειριστής" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Λανθάνουσα μνήμη ερωτήματος" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Διεργασίες" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Προσωρινά δεδομένα" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Καθυστερημένες εισαγωγές" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Λανθάνουσα μνήμη κλειδιού" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Ενώσεις" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Ταξινόμηση" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Συντονιστής κινήσεων" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Εμφάνιση ανοιχτών πινάκων" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Εμφάνιση δευτερευόντων διακομιστών" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Εμφάνιση κατάστασης δευτερεύοντος" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Πληροφορίες εκτέλεσης" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "Κυκλοφορία Διακομιστή" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "Όλες οι μεταβλητές κατάστασης" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "Ρυθμός ανανέωσης" - -#: server_status.php:398 server_status.php:431 -msgid "second" -msgstr "δευτερόλεπτο" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -msgid "seconds" -msgstr "δευτερόλεπτα" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -msgid "minutes" -msgstr "λεπτά" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "Να περιλαμβάνει τη λέξη:" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "Εμφάνιση μόνο τιμών ειδοποίησης" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "Φιλτράρισμα ανά κατηγορία..." -#: server_status.php:482 +#: server_status.php:477 msgid "Related links:" msgstr "Σχετικοί σύνδεσμοι:" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "ανά ώρα" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "ανά λεπτό" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "ανά δευτερόλεπτο" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Τύπος ερωτήματος" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "#" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "Κυκλοφορία δικτύου από την εκκίνηση: %s" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Αυτός ο διακομιστής MySQL λειτουργεί για %s. Ξεκίνησε στις %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8485,19 +8484,19 @@ msgstr "" "Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε " "μια αναπαραγωγική διαδικασία." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική διαδικασία." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια " "αναπαραγωγική διαδικασία." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8505,15 +8504,15 @@ msgstr "" "Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, " "επισκεφτείτε τον τομέα αναπαραγωγής." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Κατάσταση αναπαραγωγής" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Κίνηση" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8522,40 +8521,40 @@ msgstr "" "έτσι αυτές οι στατιστικές όπως αναφέρονται από τον διακομιστή μπορεί να " "είναι εσφαλμένες." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Ελήφθησαν" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Εστάλησαν" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Συνδέσεις" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Αποτυχημένες προσπάθειες" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Ακυρωμένες συνδέσεις" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "Κωδικός" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8565,20 +8564,20 @@ msgstr "" "μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν " "ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα " "μνήμη καταγραφής." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή " "MySQL." -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8590,11 +8589,11 @@ msgstr "" "είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι " "προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8602,7 +8601,7 @@ msgstr "" "Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από " "τον διακομιστή κατά την εκτέλεσε δηλώσεων." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8610,7 +8609,7 @@ msgstr "" "Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις " "οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8619,25 +8618,25 @@ msgstr "" "διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT " "DELAYED χρησιμοποιεί της δική του διεργασία." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ο αριθμός των ΚΑΘΥΣΤΕΡΗΜΕΝΑ ΕΙΣΕΡΧΟΜΕΝΩΝ (INSERT DELAYED) γραμμών που " "εγγράφτηκαν." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων ΕΚΚΑΘΑΡΙΣΗΣ (FLUSH)." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΠΑΡΑΠΟΜΠΗΣ (COMMIT)." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8648,7 +8647,7 @@ msgstr "" "ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που " "βρέθηκαν." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8659,7 +8658,7 @@ msgstr "" "ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει " "ευρετήριο." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8668,7 +8667,7 @@ msgstr "" "είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές " "σας έχουν κάνει σωστά ευρετήρια." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8678,7 +8677,7 @@ msgstr "" "κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα " "περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8687,7 +8686,7 @@ msgstr "" "η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής " "ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8700,7 +8699,7 @@ msgstr "" "σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα " "κλειδιά." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8712,37 +8711,37 @@ msgstr "" "ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν " "έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΕΠΙΣΤΡΟΦΗΣ (ROLLBACK)." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Ο αριθμός των μη καθαρώ σελίδων." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για " "εκκαθάριση." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Ο αριθμός των ελεύθερων σελίδων." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8752,7 +8751,7 @@ msgstr "" "σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να " "εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8764,11 +8763,11 @@ msgstr "" "τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8777,7 +8776,7 @@ msgstr "" "συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά " "με τυχαία σειρά." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8785,11 +8784,11 @@ msgstr "" "Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " "συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8797,7 +8796,7 @@ msgstr "" "Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει " "από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8812,55 +8811,55 @@ msgstr "" "αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή " "πρέπει να είναι μικρή." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8868,36 +8867,36 @@ msgstr "" "Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer " "καταγραφής και και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" "Ο αριθμός των εγγραφών fsyncs() που ολοκληρώθηκαν στο αρχείο καταγραφής." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Ο αριθμός των δημιουργηθέντων σελίδων." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8906,56 +8905,56 @@ msgstr "" "υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη " "μετατροπή σε bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Ο αριθμός των αναγνωσμένων σελίδων." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Ο αριθμός των εγεγγραμμένων σελίδων." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα.." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8964,7 +8963,7 @@ msgstr "" "αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως " "Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8973,7 +8972,7 @@ msgstr "" "Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση " "λανθάνουσα μνήμη κλειδιού χρησιμοποιείται." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8983,12 +8982,12 @@ msgstr "" "τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι " "σε χρήση με μια φορά." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" "Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8999,16 +8998,16 @@ msgstr "" "μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως " "Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" "Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9019,7 +9018,7 @@ msgstr "" "διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 " "σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -9027,13 +9026,13 @@ msgstr "" "Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση " "του διακομιστή." -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές ΚΑΘΥΣΤΕΡΗΜΕΝΩΝ " "ΕΙΣΑΓΩΓΩΝ (INSERT DELAYED)." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9041,21 +9040,21 @@ msgstr "" "Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι " "μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για " "καταγραφή)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -9065,19 +9064,19 @@ msgstr "" "ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας " "την εντολή FLUSH QUERY CACHE." -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9091,7 +9090,7 @@ msgstr "" "χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να " "απομακρύνει από τη λανθάνουσα μνήμη." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9099,19 +9098,19 @@ msgstr "" "Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν " "απομνημονεύονται λόγω της ρύθμισης query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9119,13 +9118,13 @@ msgstr "" "Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, " "πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα " "παραπομπής." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9134,7 +9133,7 @@ msgstr "" "κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα " "ευρετήρια των πινάκων σας.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9142,17 +9141,17 @@ msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά " "δεν είναι κρίσιμος αν δεν είναι μεγάλος.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα " "συνεργασία SQL." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9160,13 +9159,13 @@ msgstr "" "Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας " "αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε " "πρωτεύωντα." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9174,14 +9173,14 @@ msgstr "" "Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time " "δευτερόλεπτα να δημιουργηθούν." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time " "δευτερόλεπτα." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9191,23 +9190,23 @@ msgstr "" "ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της " "μεταβλητής συστήματος sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Ο αριθμός των ταξινομημένων γραμμών." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα.." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9219,7 +9218,7 @@ msgstr "" "απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον " "πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9229,11 +9228,11 @@ msgstr "" "λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν " "η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9245,7 +9244,7 @@ msgstr "" "thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης " "αν έχετε μια καλή εφαρμογή διεργασίας.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη." @@ -10405,6 +10404,9 @@ msgstr "ΠΡΟΒΟΛΗ ονόματος" msgid "Rename view to" msgstr "Μετονομασία πίνακα σε" +#~ msgid "seconds" +#~ msgstr "δευτερόλεπτα" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Σύγκριση χρόνου εκτέλεσης ερωτήματος (σε χιλιοστοδευτερόλεπτα)" diff --git a/po/en_GB.po b/po/en_GB.po index 190c7bd3c6..778ad004e5 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-15 16:58+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" @@ -84,7 +84,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Description" @@ -271,7 +271,7 @@ msgstr "Database %s has been copied to %s" msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Command" @@ -625,7 +625,7 @@ msgstr "View" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replication" @@ -732,7 +732,7 @@ msgstr "Tracked tables" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -750,7 +750,7 @@ msgstr "Created" msgid "Updated" msgstr "Updated" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1051,15 +1051,15 @@ msgstr "Close" msgid "Edit" msgstr "Edit" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "Live traffic chart" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "Live conn./process chart" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "Live query chart" @@ -1070,13 +1070,13 @@ msgstr "Static data" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "Other" @@ -1108,7 +1108,7 @@ msgstr "Server traffic" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Processes" @@ -1128,7 +1128,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL queries" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Query statistics" @@ -1933,7 +1933,7 @@ msgstr "shared" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tables" @@ -2065,7 +2065,7 @@ msgid "Documentation" msgstr "Documentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL query" @@ -2094,7 +2094,7 @@ msgid "Create PHP Code" msgstr "Create PHP Code" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Refresh" @@ -4809,7 +4809,7 @@ msgstr "Compression:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "None" @@ -5043,7 +5043,7 @@ msgid "The row has been deleted" msgstr "The row has been deleted" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Kill" @@ -5133,7 +5133,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5632,7 +5632,7 @@ msgstr "Display MIME types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Host" @@ -6348,13 +6348,13 @@ msgid "Slave status" msgstr "Slave status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Value" @@ -6583,12 +6583,12 @@ msgid "Synchronize" msgstr "Synchronise" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binary log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variables" @@ -6870,7 +6870,7 @@ msgstr "PARTITION definition" msgid "+ Add a new value" msgstr "+ Add a new value" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Time" @@ -7068,7 +7068,7 @@ msgid "Protocol version" msgstr "Protocol version" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "User" @@ -7513,17 +7513,17 @@ msgstr "File doesn't exist" msgid "Select binary log to view" msgstr "Select binary log to view" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Files" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -8043,7 +8043,7 @@ msgstr "Master server changed successfully to %s" msgid "This server is configured as master in a replication process." msgstr "This server is configured as master in a replication process." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Show master status" @@ -8191,156 +8191,155 @@ msgstr "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "Refresh rate" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "minutes" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "minutes" +msgstr[1] "minutes" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "second" +msgstr[1] "second" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Handler" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Query cache" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Threads" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Temporary data" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Key cache" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Joins" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Sorting" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Show open tables" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Show slave hosts" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Show slave status" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Runtime Information" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "Server traffic" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "All status variables" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "Refresh rate" - -#: server_status.php:398 server_status.php:431 -msgid "second" -msgstr "second" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -msgid "seconds" -msgstr "seconds" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -msgid "minutes" -msgstr "minutes" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "Containing the word:" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "Show only alert values" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "Filter by category..." -#: server_status.php:482 +#: server_status.php:477 msgid "Related links:" msgstr "Related links:" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "per hour" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "per minute" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "per second" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Query type" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "#" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "Network traffic since startup: %s" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "This MySQL server has been running for %s. It started up on %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8348,16 +8347,16 @@ msgstr "" "This MySQL server works as master and slave in replication process." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "This MySQL server works as master in replication process." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "This MySQL server works as slave in replication process." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8365,15 +8364,15 @@ msgstr "" "For further information about replication status on the server, please visit " "the replication section." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Replication status" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Traffic" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8381,39 +8380,39 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Received" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Sent" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Connections" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Failed attempts" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Aborted" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "The number of failed attempts to connect to the MySQL server." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8423,17 +8422,17 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "The number of connection attempts (successful or not) to the MySQL server." -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8445,11 +8444,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8457,7 +8456,7 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8465,7 +8464,7 @@ msgstr "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8473,23 +8472,23 @@ msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8499,7 +8498,7 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8509,7 +8508,7 @@ msgstr "" "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8517,7 +8516,7 @@ msgstr "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8527,7 +8526,7 @@ msgstr "" "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8535,7 +8534,7 @@ msgstr "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimise ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8547,7 +8546,7 @@ msgstr "" "probably have a lot of queries that require MySQL to scan whole tables or " "you have joins that don't use keys properly." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8559,36 +8558,36 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "The number of free pages." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8598,7 +8597,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8610,11 +8609,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8622,7 +8621,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8630,11 +8629,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8642,7 +8641,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8656,51 +8655,51 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "The number of pages that have been written for doublewrite operations." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8708,35 +8707,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsync() writes done to the log file." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8744,51 +8743,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8796,7 +8795,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8804,7 +8803,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8814,11 +8813,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8828,15 +8827,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8846,7 +8845,7 @@ msgstr "" "optimiser. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -8854,11 +8853,11 @@ msgstr "" "The maximum number of connections that have been in use simultaneously since " "the server started." -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8866,19 +8865,19 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -8888,19 +8887,19 @@ msgstr "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8912,7 +8911,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8920,19 +8919,19 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8940,11 +8939,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8952,7 +8951,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8960,15 +8959,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8976,11 +8975,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8988,13 +8987,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "The number of queries that have taken more than long_query_time seconds." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9004,23 +9003,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9032,7 +9031,7 @@ msgstr "" "should first optimise your queries, and then either split your table or " "tables or use replication." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9042,11 +9041,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9058,7 +9057,7 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." @@ -10191,6 +10190,9 @@ msgstr "VIEW name" msgid "Rename view to" msgstr "Rename view to" +#~ msgid "seconds" +#~ msgstr "seconds" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Query execution time comparison (in microseconds)" diff --git a/po/es.po b/po/es.po index 338ec1613c..913eb849d4 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-15 23:05+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" @@ -84,7 +84,7 @@ msgstr "Nombre de la clave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Descripción" @@ -271,7 +271,7 @@ msgstr "La base de datos %s ha sido copiada a %s" msgid "Rename database to" msgstr "Renombrar la base de datos a" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Comando" @@ -629,7 +629,7 @@ msgstr "Visualizar" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replicación" @@ -737,7 +737,7 @@ msgstr "Tablas con seguimiento" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Creado/a" msgid "Updated" msgstr "Actualizado" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Estado actual" @@ -1064,15 +1064,15 @@ msgstr "Cerrar" msgid "Edit" msgstr "Editar" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "Gráfico de tráfico en vivo" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "Gráfico de procesos/conexiones en vivo" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "Gráfico de consultas en vivo" @@ -1083,13 +1083,13 @@ msgstr "Datos estáticos" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "Otro" @@ -1121,7 +1121,7 @@ msgstr "Tráfico del servidor" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Procesos" @@ -1141,7 +1141,7 @@ msgstr "" msgid "Issued queries" msgstr "Consultas SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Estadísticas de Consulta" @@ -1955,7 +1955,7 @@ msgstr "compartido" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tablas" @@ -2089,7 +2089,7 @@ msgid "Documentation" msgstr "Documentación" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "consulta SQL" @@ -2118,7 +2118,7 @@ msgid "Create PHP Code" msgstr "Crear código PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Actualizar" @@ -4907,7 +4907,7 @@ msgstr "Compresión:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Ninguna" @@ -5146,7 +5146,7 @@ msgid "The row has been deleted" msgstr "La fila se ha borrado" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Matar el proceso" @@ -5238,7 +5238,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Reserva de búfers" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Estado del InnoDB" @@ -5755,7 +5755,7 @@ msgstr "Tipos MIME disponibles" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Servidor" @@ -6485,13 +6485,13 @@ msgid "Slave status" msgstr "Estado del esclavo" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -6721,12 +6721,12 @@ msgid "Synchronize" msgstr "Sincronizar" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Registro binario" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variables" @@ -7014,7 +7014,7 @@ msgstr "definición de la PARTICIÓN" msgid "+ Add a new value" msgstr "+ Agregar un nuevo valor" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Tiempo" @@ -7217,7 +7217,7 @@ msgid "Protocol version" msgstr "Versión del protocolo" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Usuario" @@ -7676,17 +7676,17 @@ msgstr "El archivo no existe" msgid "Select binary log to view" msgstr "Seleccionar el registro binario que desea examinar" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Archivos" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Truncar las consultas que ya se han mostrado" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Mostrar las consultas enteras" @@ -8228,7 +8228,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como maestro en un proceso de replicación." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Mostrar el estado del maestro" @@ -8380,12 +8380,32 @@ msgstr "" "Este servidor no está configurado como esclavo en un proceso de replicación. " "¿Desea configurarlo?" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "Velocidad de actualización" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "minutes" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "minutos" +msgstr[1] "minutos" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "segundo" +msgstr[1] "segundo" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "El proceso %s fue destruido exitosamente." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8393,144 +8413,123 @@ msgstr "" "phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido " "cerrado." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Gestor" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Cache de consultas" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Procesos" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Datos temporales" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Caché de claves" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Vínculos (Joins)" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Ordenación" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Coordinador de transacción" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Vaciar el cache de todas las tablas" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Mostrar las tablas que están abiertas" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Mostrar los hosts esclavos" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Mostrar el estado del esclavo" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Vaciar el cache de consultas" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Información acerca del tiempo de ejecución del proceso principal" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "Tráfico del servidor" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "Todas las variables de estado" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "Velocidad de actualización" - -#: server_status.php:398 server_status.php:431 -msgid "second" -msgstr "segundo" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -msgid "seconds" -msgstr "segundos" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -msgid "minutes" -msgstr "minutos" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "Que contengan la palabra:" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "Mostrar sólo valores de alerta" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "Filtrar por categoría..." -#: server_status.php:482 +#: server_status.php:477 msgid "Related links:" msgstr "Enlaces relacionados:" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "por hora" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "por minuto" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "por segundo" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Tipo de consulta" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "#" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "Tráfico de red desde el inicio: %s" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Este servidor MySQL ha estado activo durante %s. Se inició en %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8538,19 +8537,19 @@ msgstr "" "Este servidor MySQL trabaja como maestro y esclavo en un " "proceso de replicación." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Este servidor MySQL trabaja como maestro en un proceso de " "replicación." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Este servidor MySQL trabaja como esclavo en un proceso de " "replicación." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8558,15 +8557,15 @@ msgstr "" "Para más información sobre el estado de replicación en el servidor, por " "favor visita la sección sobre replicación." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Estado de replicación" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Tráfico" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8575,39 +8574,39 @@ msgstr "" "pueden excederse. Por tanto, las estadísticas reportadas por el servidor " "MySQL pueden ser incorrectas." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Recibido" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Enviado" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Conexiones" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "Número máx. de conexiones concurrentes" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Intentos fallidos" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Abortado" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "Identificación" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Cantidad de intentos de conexión al servidor MySQL fallidos." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8617,19 +8616,19 @@ msgstr "" "binarios pero que excedieron el valor del binlog_cache_size y usaron un " "archivo temporal para almacenar las sentencias de la transacción." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El número de transacciones que usaron el cache temporal de registros " "binarios." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Cantidad de intentos de conexión al servidor MySQL (fallidos o exitosos)." -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8642,11 +8641,11 @@ msgstr "" "tmp_table_size para hacer que las tablas temporales se basen en memoria en " "lugar de basarse en disco." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "El número de archivos temporales que fueron creados por mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8654,7 +8653,7 @@ msgstr "" "El número de tablas temporales en memoria creadas automáticamente por el " "servidor mientras se ejecutaban las sentencias." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8662,7 +8661,7 @@ msgstr "" "El número de filas escritas con INSERT DELAYED en los cuales ocurrió algún " "error (probablemente una clave duplicada)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8670,23 +8669,23 @@ msgstr "" "El número de procesos gestores INSERT DELAYED en uso. Cada tabla diferente " "en la cual uno usa INSERT DELAYED recibe su propio proceso." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "El número de filas INSERT DELAYED escritas." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "El número de sentencias FLUSH ejecutadas." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "El número de sentencias COMMIT internas." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "El número de veces que una fila fue eliminada de una tabla." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8697,7 +8696,7 @@ msgstr "" "Handler_discover indica el número ocasiones que las tablas han sido " "descubiertas." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8708,7 +8707,7 @@ msgstr "" "de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, " "asumiendo que col1 está indizado." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8717,7 +8716,7 @@ msgstr "" "este valor es alto, es una buena indicación de que sus consultas y tablas " "están indexadas apropiadamente." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8727,7 +8726,7 @@ msgstr "" "clave. Este se incrementa si usted está consultando una columna índice con " "un limitante de rango o si usted está haciendo un escaneo del índice." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8736,7 +8735,7 @@ msgstr "" "clave. Este método de lectura se usa principalmente para optimizar a ORDER " "BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8749,7 +8748,7 @@ msgstr "" "requieren que MySQL escanee tablas enteras o usted debe tener vínculos " "(joins) que no usan las claves de manera apropiada." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8762,37 +8761,37 @@ msgstr "" "o que sus consultas no están escritas para tomar ventaja de los índices que " "tiene." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "El número de sentencias ROLLBACK internas." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "El número de solicitudes hechas para actualizar una fila en una tabla." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "El número de solicitudes hechas para insertar una fila en una tabla." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "El número de páginas conteniendo datos (sucias o limpias)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "El número de páginas actualmente sucias." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El número de páginas de la reserva de búfers que se ha solicitado sean " "vaciadas." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "El número de páginas libres." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8802,7 +8801,7 @@ msgstr "" "páginas en fase de lectura o escritura o que no pueden ser vaciadas o " "removidas por alguna otra razón." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8814,11 +8813,11 @@ msgstr "" "también puede ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total de la reserva de búfers, en páginas." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8827,7 +8826,7 @@ msgstr "" "una consulta va a escanear una gran porción de una tabla pero en orden " "aleatorio." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8835,11 +8834,11 @@ msgstr "" "El número de read-aheads InnoDB secuenciales iniciadas. Esto sucede cuando " "InnoDB hace un escaneo secuencial de la tabla completa." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "El número de solicitudes de lectura lógica hechas por InnoDB." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8847,7 +8846,7 @@ msgstr "" "El número de lecturas lógicas que InnoDB no pudo satisfacer la reserva de " "búfers y donde fue necesario hacer lectura de página sencilla." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8862,55 +8861,55 @@ msgstr "" "Si los parámetros del tamaño de la reserva de búfers se fijaron " "apropiadamente, este valor será pequeño." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "El número de escrituras hechas a la reserva de búfers InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "El número de operaciones fsync() hechas hasta el momento." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "El número actual de operaciones fsync() pendientes." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "El número actual de lecturas pendientes." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "El número actual de escrituras pendientess." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "El número de datos leídos hasta el momento, en bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "El número total de lectura de datos." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "El número total de escritura de datos." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "La cantidad de datos escritas hasta el momento, en bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8918,35 +8917,35 @@ msgstr "" "El número de esperas generadas porque el búfer de registro fue demasiado " "pequeño y hubo que esperar a que fuera vaciado antes de continuar." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "El número de solicitudes de escritura al registro." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "El número de escrituras físicas al archivo de registro." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "El número de escrituras fsync() hechas al archivo de registro." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "El número de fsyncs pendientes al archivo de registro." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Escrituras pendientes al archivo de registro." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "El número de bytes escritos al archivo de registro." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "El número de páginas creadas." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8955,52 +8954,52 @@ msgstr "" "son contados por páginas; el tamaño de la página permite que pueda " "convertirse fácilmente a bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "El número de páginas leídas." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "El número de páginas escritas." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "El número de row locks que actualmente están en espera." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El tiempo promedio para adquirir un row lock, en milisegundos." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "El total de tiempo invertido para adquirir los row locks, en milisegundos." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El tiempo máximo para adquirir un row lock, en milisegundos." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "El número de veces que un row lock tuvo que esperarse." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "El número de filas eliminadas de tablas InnoDB." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "El número de filas insertadas en tablas InnoDB." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "El número de filas leídas de las tablas InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "El número de filas actualizadas en tablas InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9009,7 +9008,7 @@ msgstr "" "aún no han sido volcados al disco. Antes se conocía como " "Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9017,7 +9016,7 @@ msgstr "" "El número de bloques sin usar en el caché de claves. Puede usar este valor " "para determinar cuánto del caché de claves está en uso." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9027,11 +9026,11 @@ msgstr "" "de desbordamiento que indica el número máximo de bloques que algún momento " "se llegaron a usar." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "El número de solicitudes para leer un bloque de clave desde el caché." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9042,15 +9041,15 @@ msgstr "" "demasiado pequeño. La tasa de fallos en el caché puede calcularse como " "Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "El número de solicitudes para escribir un bloque de claves a la caché." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "El número de escrituras físicas de un bloque de claves al disco." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9061,7 +9060,7 @@ msgstr "" "planes de consulta para una misma consulta. El valor por omisión de 0 " "significa que ninguna consulta ha sido compilada todavía." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -9069,11 +9068,11 @@ msgstr "" "El máximo número de conexiones que han sido utilizadas simultáneamente desde " "que inició el servidor." -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El número de filas esperando ser escritas en las colas INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9081,21 +9080,21 @@ msgstr "" "El número de tablas que han sido abiertas. Si el número de tablas abiertas " "es grande, su valor del cache de tabla probablemente es muy pequeño." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "El número de archivos que están abiertos." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El número de flujos de datos que están abiertos (usado principalmente para " "registros)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "El número de tablas que están abiertas." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -9105,19 +9104,19 @@ msgstr "" "altas pueden indicar problemas de fragmentación que pueden ser solucionados " "ejecutando la consulta FLUSH QUERY CACHE." -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "La cantidad de memoria libre para el cache de consultas." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "El número de hits al cache." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "El número de consultas añadidos al cache." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9130,7 +9129,7 @@ msgstr "" "la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben " "ser removidas del cache." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9138,20 +9137,20 @@ msgstr "" "El número de consultas que no ingresaron al cache (porque no es posible o " "porque el parámetro no está activado en query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "El número de consultas registradas en el cache." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "El número total de bloques en el cache de consultas." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "El estado de la replicación a prueba de fallos (aún no ha sido implementada)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9159,13 +9158,13 @@ msgstr "" "El número de vínculos (joins) que no usan índices. Si este valor no es 0, " "deberá revisar los índices de sus tablas cuidadosamente." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "El número de vínculos (joins) que usaron búsqueda por rangos en una tabla de " "referencias." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9174,7 +9173,7 @@ msgstr "" "de cada fila. (Si no es 0, deberá revisar los índices de sus tablas " "cuidadosamente.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9182,19 +9181,19 @@ msgstr "" "El número de vínculos (joins) que usaron rangos en la primera tabla " "(normalmente no es crítico aun cuando sea grande)." -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" "El número de vínculos (joins) que hicieron un escaneo completo de la primera " "tabla." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El número de tablas temporales actualmente abiertas por el proceso SQL " "esclavo." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9202,12 +9201,12 @@ msgstr "" "Número total de veces (desde el arranque) que el proceso SQL esclavo de " "replicación ha reintentado hacer transacciones." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Está ENCENDIDO si este servidor es un esclavo que está conectado a un master." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9215,14 +9214,14 @@ msgstr "" "El número de procesos que han tomado más de los segundos registrados en " "slow_launch_time para crear." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "El número de consultas que han tomado más segundos que los registrados en " "long_query_time." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9232,23 +9231,23 @@ msgstr "" "hacer. Si este valor es grande, debe considerar incrementar el valor de la " "varible de sistema sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "El número de consultas organizar que se ejecutaron con rangos." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "El número de filas sorted." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "El número de consultas organizar que se hicieron escaneando la tabla." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "El número de veces que un table lock fue adquirido inmediatamente." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9260,7 +9259,7 @@ msgstr "" "primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o " "usar replicación." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9270,11 +9269,11 @@ msgstr "" "puede calcularse como Threads_created/Connections. Si este valor es rojo, " "debe incrementar su thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "El número de conexiones abiertas actualmente." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9286,7 +9285,7 @@ msgstr "" "(Normalmente esto no aporta una mejoría notable en el rendimiento si usted " "tiene una buena implementación de procesos.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "El número de procesos que no están en reposo." @@ -10437,6 +10436,9 @@ msgstr "VER nombre" msgid "Rename view to" msgstr "Cambiar el nombre de la vista a" +#~ msgid "seconds" +#~ msgstr "segundos" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Comparación del tiempo de ejecución de Consulta (en microsegundos)" diff --git a/po/et.po b/po/et.po index 7d8446a77f..159dfb4ae0 100644 --- a/po/et.po +++ b/po/et.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" @@ -83,7 +83,7 @@ msgstr "Võtme nimi" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Kirjeldus" @@ -270,7 +270,7 @@ msgstr "Andmebaas %s on kopeeritud %s" msgid "Rename database to" msgstr "Nimeta andmebaas ümber" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Käsk" @@ -642,7 +642,7 @@ msgstr "Vaade" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Tiražeerimine" @@ -755,7 +755,7 @@ msgstr "Kontrolli tabelit" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -775,7 +775,7 @@ msgstr "Loo" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Staatus" @@ -1099,17 +1099,17 @@ msgstr "" msgid "Edit" msgstr "Muuda" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Serveri valik" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL-päring" @@ -1121,13 +1121,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Kokku" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Serveri valik" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Protsessid" @@ -1178,7 +1178,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL-päring" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Rea statistika" @@ -2068,7 +2068,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabelid" @@ -2205,7 +2205,7 @@ msgid "Documentation" msgstr "Dokumentatsioon" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-päring" @@ -2234,7 +2234,7 @@ msgid "Create PHP Code" msgstr "Loo PHP kood" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Uuenda" @@ -4956,7 +4956,7 @@ msgstr "Pakkimine" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Pole" @@ -5218,7 +5218,7 @@ msgid "The row has been deleted" msgstr "Rida kustutatud" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Tapa" @@ -5311,7 +5311,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Puhverdusala" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB staatus" @@ -5798,7 +5798,7 @@ msgstr "Olemasolevad MIME-tüübid" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Masin" @@ -6501,13 +6501,13 @@ msgid "Slave status" msgstr "Näita alluvate(slave) staatust" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Muutuja" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Väärtus" @@ -6748,12 +6748,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binaarne logi" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Muutujad" @@ -7054,7 +7054,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Lisa uus kasutaja" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Aeg" @@ -7296,7 +7296,7 @@ msgid "Protocol version" msgstr "Protokolli versioon" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Kasutaja" @@ -7763,18 +7763,18 @@ msgstr "\"%s\" tabel ei eksisteeri!" msgid "Select binary log to view" msgstr "Valige binaarne logi vaatamiseks" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "Väljade arv" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Lühenda näidatavad päringud" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Näita täispikkasid päringuid" @@ -8305,7 +8305,7 @@ msgstr "Privileegid taaslaeti edukalt." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 #, fuzzy msgid "Show master status" msgstr "Näita alluvate(slave) staatust" @@ -8446,12 +8446,34 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Uuenda" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "kasutusel" +msgstr[1] "kasutusel" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "sekundis" +msgstr[1] "sekundis" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Protsess %s katkestati edukalt." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8459,189 +8481,160 @@ msgstr "" "phpMyAdmin ei suutnud katkestada protsessi %s. Tõenäoliselt on see juba " "suletud." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Töötleja" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Päringute vahemälu" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Lõimud" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Ajutised andmed " -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Ajastatud lisamised" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Võtme vahemälu" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Liited" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Järjestamine" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Ülekande kordinaator" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Tühjenda (sulge) kõik tabelid" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Näita avatud tabeleid" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Näita alluvaid(slave)" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Näita alluvate(slave) staatust" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Tühjenda päringute vahemälu" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Jooksev informatsioon" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Serveri valik" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Uuenda" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "sekundis" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "sekundis" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "kasutusel" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Ärge muutke parooli" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Näita avatud tabeleid" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Suhted" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "tunni kohta" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "minutis" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "sekundis" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Päringu tüüp" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "See MySQL server on käinud %s. Käivitusaeg %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 #, fuzzy msgid "Replication status" msgstr "Tiražeerimine" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Liiklus" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8649,41 +8642,41 @@ msgstr "" "Koormusega serveris, baitide lugeja võib lugeda vigadega (overrun), st. see " "statistika mida näitab MySQL server ei pruugi olla täpne." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Saadud" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Saadetud" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Ühendused" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "maks. parallel ühendusi" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Ebaõnnestunud üritused" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Katkestatud" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Mitu fsyncs kirjutamist tehtud logi faili." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8693,16 +8686,16 @@ msgstr "" "binlog_cache_size suurust ja kasutatakse ajutist faili et salvestada " "ülekande Käske (päringuid)." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Ülekannete number mis kasutasid ajutist binaar logi vahemälu." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8713,11 +8706,11 @@ msgstr "" "käivitades. Kui Created_tmp_disk_tables on suur, sa võid tahta suurendada " "tmp_table_size väärtust et olla mälul baseeruv mitte kettal." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Mitu ajutist faili mysqld on loonud." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8725,7 +8718,7 @@ msgstr "" "Ajutiste mälul baseeruvate tabelite arv, loodud automaatselt serveri poolt, " "päringuid käivitades." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8733,7 +8726,7 @@ msgstr "" "Mitu rida on loodud käsuga INSERT DELAYED milles toimus viga (arvatavasti " "korduv võti)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8741,23 +8734,23 @@ msgstr "" "Mitu INSERT DELAYED töötleja (handler) lõimu on kasutuses. Iga erinev tabel " "mis kasutab INSERT DELAYED saab oma lõimu." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED ridasid loodud." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "FLUSH käskude arv." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Sisemiste COMMIT käskude arv." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Mitu korda rida kustutati tabelist." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8767,7 +8760,7 @@ msgstr "" "mootor) kas ta teab tabelit etteantud nimega. Seda kutsutakse avastus" "(discovery). Handler_discover annab mitu korda on tabel leitud." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8777,7 +8770,7 @@ msgstr "" "server teeb palju täis indeksi skaneerimist; näitkes, SELECT col1 FROM foo, " "arvates et col1 indekseeritud." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8785,7 +8778,7 @@ msgstr "" "Mitu korda loeti rida võtme järgi. Kui see on suur, see on hea näitaja et " "sinu päringud ja tabelid on korralikult indekseeritud." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8794,7 +8787,7 @@ msgstr "" "Mitu korda saadi käsk lugeda võtme järgi järgmine rida. See on suurenev kui " "sa pärid indekseeritud piiratud välja või sa teed indeksi skaneerimist." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8802,7 +8795,7 @@ msgstr "" "Mitu korda saadi käsk lugeda võtme järgi eelnev rida. See lugemise meetod on " "peamiselt kasutatud optimiseerimiseks ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8814,7 +8807,7 @@ msgstr "" "mis vajavad MySQLi et skaneerida kogu tabelit või liited(joins) mis ei " "kasuta võtmeid korralikult." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8826,35 +8819,35 @@ msgstr "" "korralikult indekseeritud või sinu päringud pole kirjutatud nii et võtta " "eeliseid sinu loodud indeksitest." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Mitu korda käivitati sisemine ROLLBACK lausung." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Mitu korda uuendati tabeli rida." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Mitu korda lisati uus rida tabelisse." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Mitu lehekülge sisaldab andmeid (puhast või musta)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Mitu lehekülge on mustad." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Mitu puhvri lehekülge on määratud puhastamisele." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Mitu puu lehekülge." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8863,7 +8856,7 @@ msgstr "" "Mitu lukus lehte on InnoDB puhvris. Need lehed on hetkel lugemisel või " "kirjutamisel ja pole võimalik puhastada või kustutada mingil põhjusel." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8875,11 +8868,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Kogu puhvris suurus, lehtedes." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8887,7 +8880,7 @@ msgstr "" "Mitu InnoDB juhuslikku(random) ette-lugemisi on töös. See juhtub kui päring " "on skaneerida suur osa tabelist kuid juhuslikus järjekorras." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8895,11 +8888,11 @@ msgstr "" "Mitu InnoDB järjestikku ette-lugemisi on töös. See juhtub kui InnoDB teeb " "järjestikulist kogu tabeli skaneerimist." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Mitu loogilist lugemist InnoDB on teinud." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8907,7 +8900,7 @@ msgstr "" "Mitu loogilist lugemist InnoDB polnud võimalik puhvris poolt rahuldada ja " "tegi üksiku lehe lugemise." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8920,55 +8913,55 @@ msgstr "" "enne ühtlustatud. See This loendur loeb kõiki neid ootamisi. Kui puhvri " "suurus on seatud korralikult, se number peaks olema väike." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Mitu korda kirjutas InnoDB puhvrisse." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Mitu fsync() operatsiooni siiani." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Mitu hetkel ootel fsync() operatsiooni." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Mitu ootel lugemist." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Mitu ootel kirjutamist." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Suurus kui palju andmeid on loetud siiani, baitides." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Mitu korda loetud." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Mitu korda andmeid kirjutati." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Suurus palju andmeid on kirjutatud, baitides." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Mitu korda tehti topeltkirjutamist ja mitu lehte on kirjutatud just sellel " "põhjusel." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Mitu korda tehti topeltkirjutamise kirjutamist ja mitu lehte on kirjutatud " "just sellel põhjusel." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8976,35 +8969,35 @@ msgstr "" "Mitu ootamist on olnud sellepärast et logi puhver oli liiga väike ja pidi " "ootama enne ühtlustamist et jätkata." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Mitu logi kirjutamise soovi." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Mitu füüsilist kirjutamist logi faili." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Mitu fsyncs kirjutamist tehtud logi faili." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Mitu ootel logi faili fsyncs." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "ootel logifaili kirjutamisi." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Mitu baiti on kirjutatud logi faili." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Lehti loodud." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9012,51 +9005,51 @@ msgstr "" "Sisse-kompileeritud InnoDB lehe suurus (vaikimisi 16KB). Paljud väärtused on " "loetud lehtedes; lehe suurus lubab neid lihtsalt arvutada baitidesse." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Lehti loetud." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Lehti kirjutatud." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Mitu rea lukustamist on hetkel ootel." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Keskimne aeg pärides rea lukustust, millisekundites." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Aeg mis on raisatud pärides rea lukustust, millisekundites." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimaalne aeg pärides rea lukustust, millisekundites." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Mitu korda pidi rea lukustus ootama." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Mitu rida kustutatud InnoDB tabelitest." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Mitu rida lisati InnoDB tabelitesse." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Mitu rida loetud InnoDB tabelitest." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Mitu rida uuendati InnoDB tabelites." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9064,7 +9057,7 @@ msgstr "" "Mitu võtme plokki on võtme vahemälus muutunud kui pole veel kettale " "kirjutatud. Tuntud nagu Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9072,7 +9065,7 @@ msgstr "" "Mitu kasutamatta võtme plokki on võtme vahemälus. Sa saad kasutatda seda " "väärtust et teada saada kui palju võtme vahemälust on kasutuses." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9081,11 +9074,11 @@ msgstr "" "Mitu kasutatud plokki on võtme vahemälus. See väärtus näitab maksimaalse " "plokkide arvu mis on kunagi olnud kasutuses." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Mitu päringut et lugeda võtme plokk vahemälust." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9095,15 +9088,15 @@ msgstr "" "siis sinu key_buffer_size näitaja on kindlasti väike. Vahemälus möödaminek " "on võimalik arvutada nii Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Mitu päringut et kirjutada võtme plokk vahemällu." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Mitu füüsilist kirjutamist kirjutada võtme plokk kettale." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9113,17 +9106,17 @@ msgstr "" "Kasulik võrdlemaks erinevaid päringu plaane ühelt ja samalt päringult. " "Vaikimisi väärtus 0 tähendab et päring pole veel töödeldud." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Mitu rida on ootel INSERT DELAYED päringutes." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9131,38 +9124,38 @@ msgstr "" "Mitu tabelit on avatud. Avatud tabeleid on palju siis sinu tabeli vahemälus " "kindlasti liiga väike." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Mitu faili on avatud." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "Mitu voogu on hetkel avatud (enamasti logimiseks)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Mitu tabelit on hetkel avatud." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Vaba mälu päringute vahemälus." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Leitud Puhvrist." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Mitu päringut on lisatud vahemällu." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9174,7 +9167,7 @@ msgstr "" "vahemälu kasutab viimati kasutatud strateegiat(LRU) et otsustada millised " "päringud eemaldada puhvrist." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9182,21 +9175,21 @@ msgstr "" "Mitu mitte-puhverdatud päringut (pole salvestatud vahemällu, või sõltuvalt " "query_cache_type sätetest mitte puhverdatud)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Mitu päringut on registreeritud vahemälus." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Plokkide koguarv päringute vahemälus." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "See staatus on tõrkekindel tiraþeerimine (failsafe replication) (pole veel " "kasutuses)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9204,11 +9197,11 @@ msgstr "" "Liited(joins) mis ei kasuta indekseid. Kui see näitaja on 0, peaksid " "ettevaatlikult kontrollima oma tabelites indekseid." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "Liidete arv mida kasutati piirkonna otsimisel eelistatud tabelist." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9217,7 +9210,7 @@ msgstr "" "kasutamist. (Kui see pole 0 siis peaksid ettevaatlikult kontrollima oma " "tabelite indekseid.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9225,17 +9218,17 @@ msgstr "" "Liidete arv mida kasutati esimese tabeli piirides. (Pole eriti kriitiline " "kui see on väga suur.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Liidete arv mis tegid täielikku skaneerimist esimesest tabelist." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ajutiste tabelite arv mis on hetkel avatud alam-lõimu(replication slave) " "poolt." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9243,23 +9236,23 @@ msgstr "" "Kogusumma (alates käivitamisest) mitu korda tiraþeerimise(replication) SQL " "alam-lõim(replication slave) proovis ülekandeid." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Kui see on ON kui serveril on alam server(masin) mis on ühenduses masteriga." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "Lõimude arv mis võtsid rohkem aega käivitamiseks kui slow_launch_time." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Päringute arv mis võtsid rohkem aega kui long_query_time sekundites." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9268,23 +9261,23 @@ msgstr "" "Edukate ühinemiste(merge) arv millega lühike algoritm on tegelenud. Kui see " "väärtuse on suur, sa peaksid mõtlema sort_buffer_size väärtuse suurendamist." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Sorteerimiste arv mis on tehtud piirkonna ulatuses." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Sorteritud ridade arv." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Sorteerimiste arv mis on tehtud tabeli skaneerimist kasutades." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Mitu korda tabeli lukustus jõustus koheselt." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9295,7 +9288,7 @@ msgstr "" "suur ja jõudlusega on probleeme, sa peaksid optimiseerima oma päringuid või " "poolitama oma tabelid või kasutama tiraþeerimist(replication)." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9305,11 +9298,11 @@ msgstr "" "nii Threads_created/Connections. Kui see on punane paksid suurendama " "thread_cache_size suurust." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Hetkel avatud ühendusi." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9320,7 +9313,7 @@ msgstr "" "siis suurenda thread_cache_size väärtust. (Tavaliselt see ei anna märgatavat " "kiiruse tõusu kui Lõimude teostus on korralik.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Lõimude arv mis mis hetkel ei maga." @@ -10465,6 +10458,11 @@ msgstr "" msgid "Rename view to" msgstr "Nimeta tabel ümber" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "sekundis" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/eu.po b/po/eu.po index e735bea8ce..e857d94818 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" @@ -84,7 +84,7 @@ msgstr "Klabearen hitza" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Deskribapena" @@ -273,7 +273,7 @@ msgstr "%s taula hona kopiatua izan da: %s." msgid "Rename database to" msgstr "Taula berrizendatu izen honetara: " -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Komandoa" @@ -646,7 +646,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 #, fuzzy msgid "Replication" msgstr "Erlazioak" @@ -758,7 +758,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -777,7 +777,7 @@ msgstr "Sortu" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Egoera" @@ -1085,17 +1085,17 @@ msgstr "" msgid "Edit" msgstr "Editatu" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Zerbitzariaren hautaketa" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL kontsulta" @@ -1107,13 +1107,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Gutira" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1145,7 +1145,7 @@ msgstr "Zerbitzariaren hautaketa" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Prozesuak" @@ -1164,7 +1164,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL kontsulta" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Errenkadaren estatistikak" @@ -2039,7 +2039,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Taulak" @@ -2174,7 +2174,7 @@ msgid "Documentation" msgstr "Dokumentazioa" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL kontsulta" @@ -2203,7 +2203,7 @@ msgid "Create PHP Code" msgstr "PHP kodea sortu" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4883,7 +4883,7 @@ msgstr "Trinkotzea" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Batez" @@ -5132,7 +5132,7 @@ msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Hil" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB Egoera" @@ -5689,7 +5689,7 @@ msgstr "MIME-mota erabilgarriak" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Zerbitzaria" @@ -6388,13 +6388,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Aldagaia" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "balioa" @@ -6636,13 +6636,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr " Binarioa " #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Aldagaiak" @@ -6943,7 +6943,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Erabiltzaile berria gehitu" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Denbora" @@ -7156,7 +7156,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Erabiltzailea" @@ -7618,18 +7618,18 @@ msgstr "\"%s\" taula ez da existitzen!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "Eremuak" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Erakutsitako kontultak moztu" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Kontsulta osoak erakutsi" @@ -8173,7 +8173,7 @@ msgstr "Pribilegioak arrakastaz berkargatu dira." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8312,12 +8312,33 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +msgid "Refresh rate" +msgstr "Egilea:" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "lanean" +msgstr[1] "lanean" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "segunduko" +msgstr[1] "segunduko" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "%s haria arrakastaz ezabatu da." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8325,246 +8346,218 @@ msgstr "" "phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia " "izatea." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 #, fuzzy msgid "Query cache" msgstr "Kontsulta mota" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "Use delayed inserts" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 #, fuzzy msgid "Show open tables" msgstr "Taulak erakutsi" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 #, fuzzy msgid "Runtime Information" msgstr "Saioa hasteko informazioa" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Zerbitzariaren hautaketa" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -msgid "Refresh rate" -msgstr "Egilea:" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "segunduko" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "segunduko" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "lanean" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Pasahitza ez aldatu" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "Taulak erakutsi" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Erlazioak" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "orduko" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "minutuko" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "segunduko" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Kontsulta mota" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL zerbitzari hau martxan egon da %s. %s abiaratu zelarik." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Trafikoa" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Jasota" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Bidalita" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Konexioak" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Erratutako saiakerak" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Deuseztatua" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8572,78 +8565,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8651,7 +8644,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8659,42 +8652,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8702,33 +8695,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8737,227 +8730,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8965,99 +8958,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9065,18 +9058,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9084,7 +9077,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10218,6 +10211,11 @@ msgstr "" msgid "Rename view to" msgstr "Taula berrizendatu izen honetara: " +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "segunduko" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/fa.po b/po/fa.po index 0bd40497ba..e22634f55e 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" @@ -81,7 +81,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "توضیحات" @@ -268,7 +268,7 @@ msgstr "پایگاه داده %s در %s کپی شد" msgid "Rename database to" msgstr "تغییر نام پایگاه داده به" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "دستور" @@ -624,7 +624,7 @@ msgstr "نمایش" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "" @@ -735,7 +735,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -753,7 +753,7 @@ msgstr "ایجاد شده" msgid "Updated" msgstr "به روز شده" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -1053,17 +1053,17 @@ msgstr "" msgid "Edit" msgstr "ويرايش" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server version" msgid "Live traffic chart" msgstr "نسخه سرور" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "پرس و جوي SQL" @@ -1075,13 +1075,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "جمع كل" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1113,7 +1113,7 @@ msgstr "نسخه سرور" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "" @@ -1130,7 +1130,7 @@ msgstr "" msgid "Issued queries" msgstr "پرس و جوي SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "آمار سطرها" @@ -1998,7 +1998,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "جدولها" @@ -2130,7 +2130,7 @@ msgid "Documentation" msgstr "مستندات" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "پرس و جوي SQL" @@ -2160,7 +2160,7 @@ msgid "Create PHP Code" msgstr "ساخت كد PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4814,7 +4814,7 @@ msgstr "فشرده‌سازي" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "خير" @@ -5055,7 +5055,7 @@ msgid "The row has been deleted" msgstr "سطر حذف گرديد ." #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Kill" @@ -5146,7 +5146,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "" @@ -5605,7 +5605,7 @@ msgstr "نمايش خصوصيات" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "ميزبان" @@ -6299,13 +6299,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "متغییر" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "مقدار" @@ -6543,13 +6543,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "دودويي" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 #, fuzzy msgid "Variables" msgstr "متغییر" @@ -6832,7 +6832,7 @@ msgstr "" msgid "+ Add a new value" msgstr "افزودن يك كاربر جديد" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "" @@ -6987,7 +6987,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "كاربر" @@ -7437,18 +7437,18 @@ msgstr "جدول \"%s\" وجود ندارد!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "ستونها" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "" @@ -7963,7 +7963,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8102,253 +8102,244 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +msgid "Refresh rate" +msgstr "توليد‌شده توسط" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "دقیقه" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] " ثانیه" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "وروديهاي تمديدشده" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 #, fuzzy msgid "Show open tables" msgstr "نمايش جدولها" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 #, fuzzy msgid "Runtime Information" msgstr "اطلاعات ورود" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server version" msgid "Server traffic" msgstr "نسخه سرور" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -msgid "Refresh rate" -msgstr "توليد‌شده توسط" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr " ثانیه" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr " ثانیه" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "دقیقه" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "عدم تغيير اسم رمز" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "نمايش جدولها" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy msgid "Related links:" msgstr "عمليات" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "در ساعت" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "در دقیقه" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "در ثانیه" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "شناسه" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8356,78 +8347,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8435,7 +8426,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8443,42 +8434,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8486,33 +8477,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8521,227 +8512,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8749,99 +8740,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8849,18 +8840,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8868,7 +8859,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -9992,6 +9983,11 @@ msgstr "" msgid "Rename view to" msgstr "بازناميدن جدول به" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr " ثانیه" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/fi.po b/po/fi.po index 85ae351e3a..9bb49d6d9f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" @@ -84,7 +84,7 @@ msgstr "Avaimen nimi" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Kuvaus" @@ -271,7 +271,7 @@ msgstr "Tietokanta %s on kopioitu tietokantaan %s" msgid "Rename database to" msgstr "Muuta tietokannan nimi" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Komento" @@ -625,7 +625,7 @@ msgstr "Näkymä" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Kahdennus" @@ -738,7 +738,7 @@ msgstr "Seurattavat taulut" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -756,7 +756,7 @@ msgstr "Luotu" msgid "Updated" msgstr "Päivitetty" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Tila" @@ -1068,17 +1068,17 @@ msgstr "Sulje" msgid "Edit" msgstr "Muokkaa" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Valitse palvelin" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query box" msgid "Live query chart" @@ -1091,13 +1091,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Yhteensä" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1129,7 +1129,7 @@ msgstr "Valitse palvelin" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Prosessit" @@ -1149,7 +1149,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL-kyselyt" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Kyselyn ominaisuuksia" @@ -1980,7 +1980,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Taulut" @@ -2109,7 +2109,7 @@ msgid "Documentation" msgstr "Ohjeet" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-kysely" @@ -2138,7 +2138,7 @@ msgid "Create PHP Code" msgstr "Näytä PHP-koodi" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Päivitä" @@ -5033,7 +5033,7 @@ msgstr "Pakkaus" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Ei mitään" @@ -5305,7 +5305,7 @@ msgid "The row has been deleted" msgstr "Rivi on poistettu" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Lopeta" @@ -5398,7 +5398,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Puskurivaranto" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB:n tila" @@ -5921,7 +5921,7 @@ msgstr "Mahdolliset MIME-tyypit" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Palvelin" @@ -6633,13 +6633,13 @@ msgid "Slave status" msgstr "Alipalvelimen tila" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Muuttuja" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Arvo" @@ -6886,12 +6886,12 @@ msgid "Synchronize" msgstr "Yhtenäistä" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binääriloki" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Muuttujat" @@ -7186,7 +7186,7 @@ msgstr "PARTITION-määritelmä" msgid "+ Add a new value" msgstr "Lisää uusi palvelin" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Aika" @@ -7434,7 +7434,7 @@ msgid "Protocol version" msgstr "Protokollan versio" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Käyttäjä" @@ -7935,17 +7935,17 @@ msgstr "Taulua \"%s\" ei ole!" msgid "Select binary log to view" msgstr "Valitse näytettävä binääriloki" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Tiedostot" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Näytä katkaistut kyselyt" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Näytä kyselyt kokonaisuudessaan" @@ -8483,7 +8483,7 @@ msgstr "Isäntäpalvelimeksi on onnistuen vaihdettu %s" msgid "This server is configured as master in a replication process." msgstr "Tämä palvelin on määritelty kahdennustoiminnon isäntäpalvelimeksi." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Näytä isäntäpalvelimen tila" @@ -8643,173 +8643,166 @@ msgstr "" "Tätä palvelinta ei ole määritetty kahdennustoiminnon alipalvelimeksi. " "Haluatko määrittää sen?" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Säikeen %s lopetus onnistui." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "PhpMyAdmin ei voinut lopettaa säiettä %s. Se on ehkä jo suljettu." - -#: server_status.php:248 -msgid "Handler" -msgstr "Käsittelijä" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Kyselyvälimuisti" - -#: server_status.php:250 -msgid "Threads" -msgstr "Säikeet" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "Väliaikaista tietoa" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Viivästetyt lisäyslauseet" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Avainvälimuisti" - -#: server_status.php:255 -msgid "Joins" -msgstr "Liitokset" - -#: server_status.php:257 -msgid "Sorting" -msgstr "Lajittelu" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Transaktion koordinaattori" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "Tyhjennä (sulje) kaikki taulut" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Näytä avoimet taulut" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "Näytä alipalvelimet" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "Näytä alipalvelimen tila" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "Tyhjennä kyselymuisti" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "Ajonaikaiset tiedot" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Valitse palvelin" - -#: server_status.php:387 -#, fuzzy -#| msgid "See slave status table" -msgid "All status variables" -msgstr "Näytä alipalvelimen tilan taulu" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Päivitä" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Sekunti" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Sekunti" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "Minute" -msgid "minutes" -msgstr "Minuutti" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minuutti" +msgstr[1] "Minuutti" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekunti" +msgstr[1] "Sekunti" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Säikeen %s lopetus onnistui." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "PhpMyAdmin ei voinut lopettaa säiettä %s. Se on ehkä jo suljettu." + +#: server_status.php:263 +msgid "Handler" +msgstr "Käsittelijä" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Kyselyvälimuisti" + +#: server_status.php:265 +msgid "Threads" +msgstr "Säikeet" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "Väliaikaista tietoa" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Viivästetyt lisäyslauseet" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Avainvälimuisti" + +#: server_status.php:270 +msgid "Joins" +msgstr "Liitokset" + +#: server_status.php:272 +msgid "Sorting" +msgstr "Lajittelu" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Transaktion koordinaattori" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "Tyhjennä (sulje) kaikki taulut" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Näytä avoimet taulut" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "Näytä alipalvelimet" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "Näytä alipalvelimen tila" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "Tyhjennä kyselymuisti" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "Ajonaikaiset tiedot" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Valitse palvelin" + +#: server_status.php:402 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Näytä alipalvelimen tilan taulu" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Älä vaihda salasanaa" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Näytä avoimet taulut" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relaatiot" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "tunnissa" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "minuutissa" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "sekunnissa" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Kyselyn tyyppi" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8817,18 +8810,18 @@ msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pää- ja " "alipalvelimena." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pääpalvelimena." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa ja alipalvelimena." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8836,15 +8829,15 @@ msgstr "" "Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Kahdennuksen tila" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Liikenne" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8852,41 +8845,41 @@ msgstr "" "Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-" "palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Vastaanotettu" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Lähetetty" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Yhteydet" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "Enim. yhtäaikaisia yhteyksiä" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Epäonnistuneet yritykset" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Keskeytetty" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "Tunnus" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-palvelimeen ei voitu yhdistää" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8897,16 +8890,16 @@ msgstr "" "\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa " "transaktiokyselyjen tallentamiseen." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binäärilokin tilapäistä välimuistia käyttäneiden transaktioiden määrä." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8918,11 +8911,11 @@ msgstr "" "nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin " "muistissa eikä levyllä." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8930,7 +8923,7 @@ msgstr "" "Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut " "kyselyjä suorittaessaan." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8938,7 +8931,7 @@ msgstr "" "Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien " "määrä (virheenä todennäköisesti päällekkäinen avain)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8946,23 +8939,23 @@ msgstr "" "Käytössä olevien INSERT DELAYED -käsittelijäsäikeiden määrä. Jokainen INSERT " "DELAYED -kyselyä käyttävä taulu saa käyttöönsä oman säikeensä." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED -rivien kirjoituksia." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "FLUSH-kyselyjä suoritettu." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Sisäisten COMMIT-kyselyjen määrä." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8972,7 +8965,7 @@ msgstr "" "tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. " "discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8983,7 +8976,7 @@ msgstr "" "läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen " "col1:sen olevan indeksoitu sarake." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8991,7 +8984,7 @@ msgstr "" "Kertoo, kuinka monta kertaa rivejä on luettu avaimen perusteella. Jos tämä " "on suuri, kyselyjen ja taulujen indeksointi suoritetaan oikein." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -9001,7 +8994,7 @@ msgstr "" "avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita " "käyttämällä rajauksia tai jos suoritetaan indeksihaku." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9010,7 +9003,7 @@ msgstr "" "avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC " "-kyselyllä optimoimiseen." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9023,7 +9016,7 @@ msgstr "" "pakottavat MySQL-palvelimen käymään läpi kaikki taulut, tai käytät " "liitoksia, jotka käyttävät avaimia virheellisesti." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9035,35 +9028,35 @@ msgstr "" "yleensä siitä, että tauluja ei ole indeksoitu hyvin, tai että kyselyjä ei " "ole kirjoitettu siten, että ne hyödyntäisivät luomiasi indeksejä." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Sisäisten ROLLBACK-kyselyjen määrä." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Taulun rivien päivityspyyntöjen määrä." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Kertoo tauluihin lisättyjen rivien määrän." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Tietoa (epäsiistiä tai siistiä) sisältävien sivujen määrä" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Siistittäviksi pyydettyjen, puskurivarannossa olevien sivujen määrä." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Vapaiden sivujen määrä." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -9073,7 +9066,7 @@ msgstr "" "parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden " "välimuistia ei voida tyhjentää syystä tai toisesta." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9085,11 +9078,11 @@ msgstr "" "takia. Tämä arvo voidaan laskea näinkin: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Puskurivarannon kokonaiskoko sivuina." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -9097,7 +9090,7 @@ msgstr "" "InnoDB:n käynnistämien umpimähkäisten ennakkolukujen määrä. Näin käy kyselyn " "lukiessa satunnaisessa järjestyksessä läpi laajoja alueita taulusta." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9105,11 +9098,11 @@ msgstr "" "InnoDB:n käynnistämien perättäisten ennakkolukujen määrä. Näin käy kun " "InnoDB lukee läpi kokonaisen taulun tavallisessa järjestyksessä." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9117,7 +9110,7 @@ msgstr "" "Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa " "puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9131,55 +9124,55 @@ msgstr "" "kertoo tällaisten odotusten määrän. Jos puskurivarannon koko on asetettu " "sopivaksi, tämän arvon pitäisi olla alhainen." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Fsync()-toimenpiteitä tähän mennessä." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Tähän mennessä luetun tiedon määrä tavuina." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Kertoo, kuinka paljon on tähän mennessä tietoja kirjoitettu (tavuina)." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9187,35 +9180,35 @@ msgstr "" "Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin " "tyhjentymistä jouduttiin odottamaan ennen jatkamista." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Lokitiedostojen fsync()-kirjoitusten määrä." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Lokitiedoston avointen fsync-synkronointien määrä." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Avoimet lokitiedostokirjoitukset." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Lokitiedostoon kirjoitettujen tavujen määrä." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Luotujen sivujen määrä." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9224,52 +9217,52 @@ msgstr "" "arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen " "koko tavuina." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Luettujen rivien määrä." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Kirjoitettujen sivujen määrä." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Tällä hetkellä odotettavien rivilukitusten määrä." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Kertoo, kuinka monta kertaa rivilukitusta on jouduttu odottamaan." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB-tauluista poistettujen rivien määrä." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB-tauluihin lisättyjen rivien määrä." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB-taulusta luettujen rivien määrä." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB-taulun päivitettyjen rivien määrä." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9278,7 +9271,7 @@ msgstr "" "muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto " "tunnetaan yleisesti nimellä Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9287,20 +9280,20 @@ msgstr "" "avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan " "käytössä." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "Samaan aikaan avainvälimuistissa olleiden lohkojen määrä enimmillään." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" "Kertoo, kuinka monta pyyntöä on suoritettu avainlohkon hakemiseksi " "välimuistista." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9311,16 +9304,16 @@ msgstr "" "asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea " "lausekkeella Key_reads / Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Kertoo, kuinka monta kertaa välimuistiin on kirjoitettu avainlohko." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" "Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9331,18 +9324,18 @@ msgstr "" "kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole " "vielä koottu." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kertoo, kuinka monta riviä INSERT DELAYED -jonoissa odottaa kirjoittamista." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9350,39 +9343,39 @@ msgstr "" "Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa " "olla liian alhainen." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Avoinna olevien tiedostojen määrä." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Avoinna olevien tietovirtojen määrä (käytetään pääasiassa kirjauksessa)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Avoinna olevien taulujen määrä." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Kyselyvälimuistin vapaan muistin määrä." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Välimuistiosumien määrä." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Välimuistiin lisättyjen kyselyjen määrä." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9395,7 +9388,7 @@ msgstr "" "Kyselyvälimuisti päättää välimuistista poistettavat kyselyt LRU-käytännön " "avulla (\"least recently used\" eli \"äskettäin vähiten käytetyt kyselyt\")." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9404,19 +9397,19 @@ msgstr "" "tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne " "query_cache_type-asetuksen takia)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Rekisteröityjen kyselyjen määrä välimuistissa." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9424,11 +9417,11 @@ msgstr "" "Kertoo, kuinka moni liitos ei käytä indeksejä. Jos tämä arvo ei ole 0, " "taulujen indeksit olisi hyvä tarkistaa tarkkaan." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "Niiden liitosten määrä, jotka käyttivät viitetaulussa aluehakua." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9437,7 +9430,7 @@ msgstr "" "rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa " "huolella.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9445,17 +9438,17 @@ msgstr "" "Kertoo niiden liitosten määrän, jotka käyttävät rajausta ensimmäisessä " "taulussa. (Yleensä ei ole vakavaa, vaikka tämä arvo olisi suuri.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" "Kertoo niiden liitosten määrän, jotka suorittivat ensimmäisestä taulusta " "täydellisen tarkistuksen." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "SQL-alisäikeen avointen tilapäistaulujen määrä tällä hetkellä." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9463,13 +9456,13 @@ msgstr "" "Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on " "käynnistyksestään lähtien yrittänut suorittaa transaktioita." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Tämän on päällä (ON), mikäli kyseinen palvelin on pääpalvelimeen kytketty " "alipalvelin." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9477,14 +9470,14 @@ msgstr "" "Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin " "slow_launch_time sekuntia." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Niiden kyselyjen määrä, joiden suorittamiseen on kulunut aikaa enemmän kuin " "long_query_time sekuntia." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9493,25 +9486,25 @@ msgstr "" "Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, " "sort_buffer-muuttujan arvoa voi suurentaa." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Lajiteltujen rivien määrä." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" "Niiden lajittelutoimenpiteiden määrä, jotka on suoritettu lukemalla taulu " "läpi." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9523,7 +9516,7 @@ msgstr "" "hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai " "käyttää hyödyksi kahdennusta." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9533,11 +9526,11 @@ msgstr "" "voidaan laskea täten kaavalla Threads_created / yhteyksien lkm. Jos tämä " "arvo on punainen, thread_cache_size-muuttujan arvoa tulisi nostaa." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9549,7 +9542,7 @@ msgstr "" "säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta " "suorituskykyyn.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Hereillä olevien säikeiden määrä." @@ -10811,6 +10804,11 @@ msgstr "VIEW-arvon nimi" msgid "Rename view to" msgstr "Nimeä taulu uudelleen" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Sekunti" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Kyselyn suoritusajan vertailu (mikrosekunteina)" diff --git a/po/fr.po b/po/fr.po index 41595738d6..feaa455197 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-15 17:03+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" @@ -85,7 +85,7 @@ msgstr "Nom de l'index" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Description" @@ -272,7 +272,7 @@ msgstr "La base de données %s a été copiée sur %s" msgid "Rename database to" msgstr "Changer le nom de la base de données pour" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Commande" @@ -626,7 +626,7 @@ msgstr "Vue" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Réplication" @@ -733,7 +733,7 @@ msgstr "Tables faisant l'objet d'un suivi" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -751,7 +751,7 @@ msgstr "Créé" msgid "Updated" msgstr "Mis à jour" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "État" @@ -1064,15 +1064,15 @@ msgstr "Fermer" msgid "Edit" msgstr "Modifier" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "Graphique du trafic en temps réel" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "Graphique des connexions et processus en temps réel" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "Graphique des requêtes en temps réel" @@ -1083,13 +1083,13 @@ msgstr "Données statiques" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "Autres" @@ -1121,7 +1121,7 @@ msgstr "Trafic du serveur" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Processus" @@ -1141,7 +1141,7 @@ msgstr "" msgid "Issued queries" msgstr "Requêtes SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Statistiques sur les requêtes" @@ -1950,7 +1950,7 @@ msgstr "partagé" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tables" @@ -2086,7 +2086,7 @@ msgid "Documentation" msgstr "Documentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "Requête SQL" @@ -2115,7 +2115,7 @@ msgid "Create PHP Code" msgstr "Créer source PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Actualiser" @@ -4864,7 +4864,7 @@ msgstr "Compression:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Aucune" @@ -5100,7 +5100,7 @@ msgid "The row has been deleted" msgstr "La ligne a été effacée" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Supprimer" @@ -5190,7 +5190,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Mémoire-tampon" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "État InnoDB" @@ -5702,7 +5702,7 @@ msgstr "Afficher les types MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Client" @@ -6428,13 +6428,13 @@ msgid "Slave status" msgstr "État de l'esclave" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valeur" @@ -6663,12 +6663,12 @@ msgid "Synchronize" msgstr "Synchroniser" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Log binaire" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variables" @@ -6951,7 +6951,7 @@ msgstr "Définition de PARTITION" msgid "+ Add a new value" msgstr "+ Ajouter une valeur" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Durée" @@ -7153,7 +7153,7 @@ msgid "Protocol version" msgstr "Version du protocole" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Utilisateur" @@ -7608,17 +7608,17 @@ msgstr "Le fichier n'existe pas" msgid "Select binary log to view" msgstr "Sélectionnez le log binaire à consulter" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Fichiers" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Afficher les requêtes tronquées" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Afficher les requêtes complètes" @@ -8158,7 +8158,7 @@ msgstr "Le serveur maître est maintenant %s" msgid "This server is configured as master in a replication process." msgstr "Ce serveur est un serveur maître dans le processus de réplication." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Montrer l'état du maître" @@ -8309,156 +8309,155 @@ msgstr "" "Ce serveur n'est pas configuré comme esclave dans un processus de " "réplication. Désirez-vous le configurer ?" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "Taux de rafraîchissement" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "minutes" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "minutes" +msgstr[1] "minutes" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "seconde" +msgstr[1] "seconde" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Le processus %s a été éliminé." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin n'a pu éliminer le processus %s. Il était probablement déjà fermé." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Gestionnaire" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Cache des requêtes" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Fils d'exécution" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Données temporaires" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Insertions avec délais" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Cache des clés" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Jointures" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Mécanisme de tri" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Coordonnateur des transactions" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Fermer toutes les tables" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Montrer les tables ouvertes" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Montrer les serveurs esclaves" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Montrer l'état des serveurs esclaves" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Vider la cache des requêtes" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Informations sur le serveur" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "Trafic du serveur" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "Toutes les variables d'état" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "Taux de rafraîchissement" - -#: server_status.php:398 server_status.php:431 -msgid "second" -msgstr "seconde" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -msgid "seconds" -msgstr "secondes" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -msgid "minutes" -msgstr "minutes" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "Contenant le mot :" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "Afficher uniquement les valeurs d'alerte" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "Filtrer par catégorie..." -#: server_status.php:482 +#: server_status.php:477 msgid "Related links:" msgstr "Liens connexes:" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "par heure" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "par minute" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "par seconde" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Type de requête" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "#" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "Trafic réseau depuis le démarrage : %s" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ce serveur MySQL fonctionne depuis %s. Il a démarré le %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8466,19 +8465,19 @@ msgstr "" "Ce serveur est un serveur maître et esclave dans le processus " "de réplication." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Ce serveur est un serveur maître dans le processus de réplication." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Ce serveur est un serveur esclave dans le processus de " "réplication." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8486,15 +8485,15 @@ msgstr "" "Pour plus d'information sur l'état de la réplication sur ce serveur, " "consultez la section de réplication." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "État de la réplication" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Trafic" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8503,39 +8502,39 @@ msgstr "" "dépassée, auquel cas les statistiques rapportées par MySQL peuvent être " "inexactes." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Reçu" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Envoyé" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Connexions" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "max. de connexions simultanées" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Tentatives échouées" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Arrêts prématurés" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Le nombre de tentatives de connexion au serveur MySQL infructueuses." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8545,18 +8544,18 @@ msgstr "" "mais qui ont excédé la valeur de binlog_cache_size et ont utilisé un fichier " "temporaire pour stocker les énoncés de la transaction." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Le nombre de transactions qui ont utilisé la cache temporaire du log binaire." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Le nombre de tentatives de connexion (réussies ou non) au serveur MySQL." -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8569,11 +8568,11 @@ msgstr "" "tmp_table_size afin que les tables temporaires soient maintenues en mémoire " "au lieu d'être sur disque." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Le nombre de fichiers temporaires créés par mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8581,7 +8580,7 @@ msgstr "" "Le nombre de tables temporaires en mémoire créées automatiquement par le " "serveur lors de l'exécution d'énoncés." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8589,7 +8588,7 @@ msgstr "" "Le nombre de lignes écrites avec INSERT DELAYED pour lesquels une erreur est " "survenue (probablement un doublon sur la clé)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8597,23 +8596,23 @@ msgstr "" "Le nombre de fils d'exécution utilisés pour INSERT DELAYED. Un fil est " "utilisé pour chacune des tables sur lesquelles un INSERT DELAYED a lieu." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Le nombre de lignes écrites via INSERT DELAYED." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Le nombre de commandes FLUSH exécutées." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Le nombre de commandes COMMIT internes." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Le nombre de fois qu'une ligne a été supprimée d'une table." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8623,7 +8622,7 @@ msgstr "" "une table portant un certain nom. Ceci est appelé "découverte". Ce " "paramètre indique le nombre de fois que des tables ont été découvertes." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8634,7 +8633,7 @@ msgstr "" "d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une " "colonne indexée." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8642,7 +8641,7 @@ msgstr "" "Le nombre de requêtes pour lire une ligne via une clé. Si élevé, c'est une " "bonne indication que vos tables sont correctement indexées." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8652,7 +8651,7 @@ msgstr "" "Ceci est augmenté si vous interrogez une colonne indexée avec un critère de " "fourchette ou si vous parcourez l'index." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8660,7 +8659,7 @@ msgstr "" "Le nombre de requêtes de lecture de la ligne précédente, en ordre de clé. " "Utilisé surtout pour optimiser ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8673,7 +8672,7 @@ msgstr "" "demandent à MySQL de parcourir des tables en entier, ou vous avez des " "jointures qui n'utilisent pas correctement les clés." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8685,35 +8684,35 @@ msgstr "" "tables ne sont pas correctement indexées ou que vos requêtes ne sont pas " "écrites de façon à tirer parti des index que vous avez définis." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Le nombre d'énoncés ROLLBACK internes." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Le nombre de requêtes de mise à jour de lignes dans une table." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Le nombre de requêtes d'insertion de lignes dans une table." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Le nombre de pages contenant des données." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Le nombre de pages contenant des données «dirty»." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Le nombre de pages de mémoire-tampon qui ont été effacées." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Le nombre de pages libres." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8723,7 +8722,7 @@ msgstr "" "train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une " "autre raison." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8735,11 +8734,11 @@ msgstr "" "comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Taille totale de la réserve, en pages." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8748,7 +8747,7 @@ msgstr "" "lorsqu'une requête doit balayer une large portion de table en ordre " "discontinu." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8756,11 +8755,11 @@ msgstr "" "Le nombre de lectures séquentielles effectuées par InnoDB. Ceci survient " "quand InnoDB fait un parcours séquentiel intégral de la table." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Le nombre de requêtes de lectures logiques effectuées par InnoDB." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8768,7 +8767,7 @@ msgstr "" "Le nombre de lectures que InnoDB n'a pu faire à partir de la réserve, menant " "à une lecture directe d'une page." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8782,51 +8781,51 @@ msgstr "" "Ceci compte le nombre de fois qu'une telle attente a été nécessaire. Si la " "taille de la réserve est adéquate, cette valeur devrait être petite." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Le nombre d'écritures faites dans la réserve InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Le nombre d'opérations fsync() faites jusqu'à présent." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Le nombre d'opérations fsync() actuellement en attente." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Le nombre actuel de lectures en attente." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Le nombre actuel d'écritures en attente." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "La quantité d'octets lus jusqu'à présent." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Le nombre total de lectures de données." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Le nombre total d'écritures de données." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "La quantité d'octets écrits jusqu'à présent." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "Le nombre de pages utilisées pour des opérations «doublewrite»." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "Le nombre d'opérations «doublewrite» effectuées." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8834,35 +8833,35 @@ msgstr "" "Le nombre d'attentes en raison d'un tampon du fichier témoin trop petit; il " "fallait attendre qu'il se libère avant de continuer." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Le nombre de requêtes d'écritures sur le fichier témoin." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Le nombre d'écritures physiques au fichier témoin." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Le nombre d'écritures fsync() sur le fichier témoin." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Le nombre d'écritures du fichier témoin en attente." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Le nombre d'octets écrits sur le fichier témoin." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Le nombre de pages créées." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8871,51 +8870,51 @@ msgstr "" "valeurs sont comptées par page; la taille de page leur permet d'être " "facilement converties en octets." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Le nombre de pages lues." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Le nombre de pages écrites." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Le nombre de verrous d'enregistrements actuellement en attente." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente moyen pour acquérir un verrou, en millisecondes." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Le temps total utilisé pour acquérir un verrou, en millisecondes." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente maximum pour acquérir un verrou, en millisecondes." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Le nombre de fois qu'on a dû attendre pour un verrou." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Le nombre de lignes supprimées des tables InnoDB." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Le nombre de lignes insérées dans des tables InnoDB." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Le nombre de lignes lues dans des tables InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Le nombre de lignes mises à jour dans des tables InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8924,7 +8923,7 @@ msgstr "" "pas encore transférés sur disque. Anciennement connu sous le nom " "Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8933,7 +8932,7 @@ msgstr "" "cette valeur pour déterminer la proportion de la cache de clés qui est " "utilisée." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8943,11 +8942,11 @@ msgstr "" "maximum du nombre de blocs qui ont été utilisés en même temps dans le cache " "de clés." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Le nombre de requêtes de lecture d'un bloc de clés depuis la cache." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8958,15 +8957,15 @@ msgstr "" "petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read " "requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Le nombre de requêtes en vue d'écrire un bloc de clé dans la cache." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Le nombre d'écritures physiques d'un bloc de clés vers le disque." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8977,18 +8976,18 @@ msgstr "" "pour une même requête. La valeur de 0 indique qu'aucune requête n'a encore " "été compilée." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" "Le nombre maximum de connexions simultanées depuis le démarrage du serveur." -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Le nombre de lignes en attente d'écriture (INSERT DELAYED)." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8996,19 +8995,19 @@ msgstr "" "Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table " "est probablement trop petite." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Le nombre de fichiers qui sont ouverts." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "Le nombre de flux de données qui sont ouverts." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Le nombre de tables qui sont ouvertes." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -9018,19 +9017,19 @@ msgstr "" "peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la " "commande FLUSH QUERY CACHE." -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "La quantité de mémoire libre dans la cache de requêtes." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Le nombre de succès dans la cache." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Le nombre de requêtes ajoutées à la cache." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9042,7 +9041,7 @@ msgstr "" "afin de peaufiner la taille de la cache. La stratégie utilisée pour " "déterminer quelles requêtes seront retirées est LRU (least recently used)." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9050,19 +9049,19 @@ msgstr "" "Le nombre de requêtes non en cache (impossible à placer en cache, ou non " "cachée en raison du paramètre query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Le nombre de requêtes enregistrées dans la cache." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Le nombre total de blocs dans la cache de requêtes." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'état de la réplication sans échec (pas encore implantée)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9070,13 +9069,13 @@ msgstr "" "Le nombre de jointures qui n'ont pas utilisé d'index. Si cette valeur est " "supérieure à 0, vérifiez soigneusement les indexes de vos tables." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Le nombre de jointures qui ont utilisé une recherche par plage sur une table " "de référence." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9085,7 +9084,7 @@ msgstr "" "ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos " "tables.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9093,19 +9092,19 @@ msgstr "" "Le nombre de jointures qui ont utilisé des plages sur la première table. " "(Normalement non critique même si cette valeur est élevée.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" "Le nombre de jointures qui ont nécessité le parcours complet de la première " "table." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Le nombre de tables temporaires actuellement ouvertes par le fil d'exécution " "SQL de l'esclave." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9113,11 +9112,11 @@ msgstr "" "Nombre de fois (depuis le démarrage) que le fil d'exécution SQL de l'esclave " "a envoyé à nouveau des transactions." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ceci est à ON si ce serveur est un esclave connecté à un maître." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9125,14 +9124,14 @@ msgstr "" "Le nombre de fils d'exécution dont le temps de création a excédé " "slow_launch_time secondes." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Le nombre de requêtes dont le temps d'exécution a excédé long_query_time " "secondes." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9141,23 +9140,23 @@ msgstr "" "Le nombre d'opérations de fusion effectuées par l'algorithme de tri. Si ce " "nombre est élevé, augmentez la valeur du paramètre sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Le nombre de tri effectués avec des plages." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Le nombre de lignes triées." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Le nombre de tri effectués via un parcours de la table." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Le nombre de fois qu'un verrou de table a été acquis immédiatement." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9169,7 +9168,7 @@ msgstr "" "des problèmes de performance, commencez par optimiser vos requêtes, puis " "subdivisez vos tables ou encore utiliser la réplication." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9179,11 +9178,11 @@ msgstr "" "calculé via Nombre de fils / connexion. Si cette valeur est en rouge, vous " "devriez augmenter la taille de cette cache." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Le nombre de connexions ouvertes actuellement." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9196,7 +9195,7 @@ msgstr "" "perceptible de la performance si votre serveur gère correctement les fils " "d'exécution.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Le nombre de fils d'exécution non suspendus." @@ -10341,6 +10340,9 @@ msgstr "Nom de la vue" msgid "Rename view to" msgstr "Changer le nom de la vue pour" +#~ msgid "seconds" +#~ msgstr "secondes" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Comparaison du temps d'exécution des requêtes (en microsecondes)" diff --git a/po/gl.po b/po/gl.po index fbe92b6fba..e7fb96c63c 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" @@ -85,7 +85,7 @@ msgstr "Nome chave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Descrición" @@ -274,7 +274,7 @@ msgstr "Copiuse a base de datos %s para %s" msgid "Rename database to" msgstr "Mudar o nome da base de datos para" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Orde" @@ -649,7 +649,7 @@ msgstr "Vista" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replicación" @@ -762,7 +762,7 @@ msgstr "Táboas seguidas" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -780,7 +780,7 @@ msgstr "Creada" msgid "Updated" msgstr "Actualizada" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Estado" @@ -1101,17 +1101,17 @@ msgstr "Fechar" msgid "Edit" msgstr "Modificar" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Escolla de servidor" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -1124,13 +1124,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1162,7 +1162,7 @@ msgstr "Escolla de servidor" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Procesos" @@ -1182,7 +1182,7 @@ msgstr "" msgid "Issued queries" msgstr "Solicitudes SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -2105,7 +2105,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Táboas" @@ -2246,7 +2246,7 @@ msgid "Documentation" msgstr "Documentación" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "orde SQL" @@ -2277,7 +2277,7 @@ msgid "Create PHP Code" msgstr "Crear código PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Refrescar" @@ -5218,7 +5218,7 @@ msgstr "Compresión" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Ningunha" @@ -5488,7 +5488,7 @@ msgid "The row has been deleted" msgstr "Eliminouse o rexistro" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Matar (kill)" @@ -5584,7 +5584,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Estado de InnoDB" @@ -6108,7 +6108,7 @@ msgstr "Tipos MIME dispoñíbeis" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Servidor" @@ -6822,13 +6822,13 @@ msgid "Slave status" msgstr "Estado do escravo" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variábel" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -7075,12 +7075,12 @@ msgid "Synchronize" msgstr "Sincronizar" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Ficheiro de rexistro binario" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variábeis" @@ -7379,7 +7379,7 @@ msgstr "Definición da PARTICIÓN" msgid "+ Add a new value" msgstr "Engadir un servidor novo" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Tempo" @@ -7624,7 +7624,7 @@ msgid "Protocol version" msgstr "Versión do protocolo" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Usuario" @@ -8128,17 +8128,17 @@ msgstr "Non existe a táboa \"%s\"." msgid "Select binary log to view" msgstr "Seleccione o ficheiro de rexistro binario que queira ver" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Ficheiros" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Interrumpir as procuras mostradas" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Mostrar as procuras completas" @@ -8672,7 +8672,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Mostrar o estado do principal" @@ -8832,174 +8832,167 @@ msgstr "" "Este servidor non está configurado como escravo nun proceso de replicación. " "Desexa configuralo?" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Refrescar" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "en uso" +msgstr[1] "en uso" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "por segundo" +msgstr[1] "por segundo" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Finalizouse o fío %s." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin foi incapaz de finalizar o fío %s. Probablemente xa estea fechado." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Manipulador" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "caché de procuras" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Fíos" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Datos temporais" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Insercións demoradas" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "caché da chave" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Unións" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Ordenación" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Coordinador da transacción" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Limpar (fechar) todas as táboas" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Mostrar as táboas abertas" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Mostrar os servidores escravos" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Mostrar o estado dos escravos" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Limpar a caché da pesquisa" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Información sobre o tempo de execución" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Escolla de servidor" -#: server_status.php:387 +#: server_status.php:402 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Ver a táboa de estado do escravo" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Refrescar" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "por segundo" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "por segundo" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "en uso" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Non mude o contrasinal" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Mostrar as táboas abertas" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacións" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "por hora" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "por minuto" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "por segundo" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Tipo de procura" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Este servidor de MySQL leva funcionando %s. Iniciouse às %s." -#: server_status.php:641 +#: server_status.php:636 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -9008,21 +9001,21 @@ msgid "" msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_status.php:643 +#: server_status.php:638 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_status.php:645 +#: server_status.php:640 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_status.php:647 +#: server_status.php:642 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -9036,15 +9029,15 @@ msgstr "" "b>. Para máis información acerca do estado de replicación do servidor visite " "a sección sobre replicación." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Estado da replicación" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Tráfico" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9053,41 +9046,41 @@ msgstr "" "que esas estatísticas, tal e como as transmite o servidor de MySQL, poden " "resultar incorrectas." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Recibido" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Enviado" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Conexións" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "conexións simultáneas máximas" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Tentativas falidas" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Cancelado" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "Identificador" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Non se puido conectar co servidor de MySQL" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -9097,16 +9090,16 @@ msgstr "" "excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal " "para almacenar instrucións para a transacción." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Número de transaccións que utilizaron o caché do rexistro binario." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9118,11 +9111,11 @@ msgstr "" "incremente o valor de tmp_table_size para que as táboas temporais se baseen " "na memoria en vez de no disco." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Número de ficheiros temporais creados por mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9130,7 +9123,7 @@ msgstr "" "Número de táboas temporais na memoria creadas automaticamente polo servidor " "ao executar instrucións." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9138,7 +9131,7 @@ msgstr "" "Número de fileiras escritas con INSERT DELAYED que sofriron algún erro " "(probabelmente unha chave duplicada)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9146,23 +9139,23 @@ msgstr "" "Número de fíos de manipulación INSERT DELAYED en uso. Cada táboa diferente " "na que se utiliza INSERT DELAYED recibe o seu propio fío." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Número de fileiras INSERT DELAYED escritas." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Número de instrucións FLUSH executadas." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Número de instrucións COMMIT internas." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Número de veces que se eliminou unha fileira dunha táboa." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -9172,7 +9165,7 @@ msgstr "" "se sabe dunha táboa cun nome dado. Isto chámase descuberta. " "Handler_discovery indica o número de veces que se descobriron táboas." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -9183,7 +9176,7 @@ msgstr "" "completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " "indexada." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -9191,7 +9184,7 @@ msgstr "" "Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, " "é unha boa indicación de que as procuras e táboas están ben indexadas." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -9201,7 +9194,7 @@ msgstr "" "increméntase se está a procurar unha columna de índice cunha limitación de " "intervalo ou se está a examinar un índice." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9209,7 +9202,7 @@ msgstr "" "Número de peticións para ler a fileira anterior na orde da chave. Este " "método de lectura utilízase sobre todo para optimizar ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9221,7 +9214,7 @@ msgstr "" "Posibelmente terá un monte de procuras que esixan que MySQL examine táboas " "completas ou ten unións que non usan as chaves axeitadamente." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9233,35 +9226,35 @@ msgstr "" "táboas non están indexadas axeitadamente ou que as súas procuras non están " "escritas para aproveitar os índices de que dispón." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Número de peticións para actualizar unha fileira nunha táboa." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Número de peticións para inserir un ficheiro nunha táboa." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Número de páxinas que conteñen datos (suxos ou limpos)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Número de páxinas actualmente suxas." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Número de páxinas do búfer que se pediu que se limpasen." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Número de páxinas libres." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -9271,7 +9264,7 @@ msgstr "" "actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " "algunha outra razón." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9283,11 +9276,11 @@ msgstr "" "se pode calcular así: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total do búfer, en páxinas." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -9296,7 +9289,7 @@ msgstr "" "cando unha procura vai examinar unha porción grande dunha táboa mais en orde " "aleatoria." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9304,11 +9297,11 @@ msgstr "" "Número de pre-lecturas secuenciais iniciadas por innoDB. Isto acontece cando " "InnoDB realiza un exame secuencial completo dunha táboa." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Número de peticións de lectura lóxicas feitas por InnoDB." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9316,7 +9309,7 @@ msgstr "" "Número de lecturas lóxicas que InnoDB non puido satisfacer do búfer e tivo " "que efectuar por medio de lecturas dunha única páxina." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9330,55 +9323,55 @@ msgstr "" "que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser " "pequeno." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Número de veces que se escribiu no búfer InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Número de operacións fsync() até o momento." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Número actual de operacións fsync() pendentes." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Número actual de lecturas pendentes." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Número actual de escritas pendentes." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Cantidade de datos lida até o momento, en bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Número total de lecturas de datos." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Número total de escritas de datos." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Cantidade de datos escrita até o momento, en bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9386,35 +9379,35 @@ msgstr "" "Número de esperas debidas a que o búfer do rexistro é demasiado pequeno e " "houbo que agardar até que se limpase para continuar." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Número de peticións de escrita no rexistro." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Número de escritas físicas no ficheiro de rexistro." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Número de escritas fsyncss feitas no ficheiro de rexistro." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Número de fsyncs do ficheiro de rexistro pendentes." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Escritas no ficheiro de rexistro pendentes." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Número de bytes escritos no ficheiro de rexistro." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Número de páxinas creadas." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9423,55 +9416,55 @@ msgstr "" "cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente " "en bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Número de páxinas lidas." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Número de páxinas escritas." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Número de bloqueo de fileiras polos que se está a agardar agora mesmo." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Tempo que, de media, leva adquirir un bloqueo sobre unha fileira, en " "milisegundos." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Tempo total empregado na adquisición de bloqueos sobre as fileiras, en " "milisegundos." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Tempo máximo en adquirir un bloqueo de fileira, en milisegundos." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Número de veces que houbo que agardar polo bloqueo dunha fileira." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Número de fileiras eliminadas das táboas InnoDB." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Número de fileiras inseridas nas táboas InnoDB." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Número de fileiras lidas das táboas InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Número de fileiras actualizadas en táboas InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9479,7 +9472,7 @@ msgstr "" "Número de bloques chave na caché de chaves que se mudaron mais que aínda non " "se limparon para o disco. Antes era Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9487,7 +9480,7 @@ msgstr "" "Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor " "para determinar canta caché de chave está en uso." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9497,11 +9490,11 @@ msgstr "" "referencia superior que indica o número máximo de bloques que se teñen " "empregado." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Número de peticións para ler un bloque chave da caché." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9511,15 +9504,15 @@ msgstr "" "grande, é que, posiblemente, o valor de key_fuffer_size é demasiado baixo. A " "relación de perdas da caché pódese calcular así: Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Número de peticións para escribir un bloque chave na caché." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Número de escritas físicas dun bloque chave no disco." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9530,19 +9523,19 @@ msgstr "" "procura diferentes para a mesma pesquisa. O valor por omisión é 0, que " "significa que aínda non se compilou ningunha procura." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Número de procuras que están a agardar para seren escritas nas fileiras " "INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9550,38 +9543,38 @@ msgstr "" "Número de táboas abertas en total. Se a cantidade é grande, o valor da caché " "de táboas posibelmente é demasiado pequeno." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Número de ficheiros abertos." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "Número de fluxos abertos (utilizado principalmente para o rexistro)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Número de táboas abertas." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Cantidade de memoria libre para a caché de procuras." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Número de impactos na caché." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Número de procuras adicionadas na caché." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9593,7 +9586,7 @@ msgstr "" "caché de procuras. A caché de procuras utiliza unha estratexia de utilizado " "menos recentemente (LRU) para decidir que procuras debe eliminar da caché." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9601,19 +9594,19 @@ msgstr "" "Número de procuras non enviadas á caché (que non se poden enviar debido á " "configuración de query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Número de procuras rexistradas na caché." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Número total de bloques na caché de procuras." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Estado da replicación en modo seguro (aínda non realizado)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9621,13 +9614,13 @@ msgstr "" "Número de unións que non utilizan índices. Se este valor non for 0, debería " "comprobar con atención os índices das táboas." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Número de unións que utilizaron un intervalo de procura nunha táboa de " "referencia." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9636,7 +9629,7 @@ msgstr "" "cada fileira (se non for 0, debería comprobar con atención os índices das " "táboas)." -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9644,15 +9637,15 @@ msgstr "" "Número de unións que utilizaron intervalos na primeira táboa (Normalmente " "non é grave, mesmo de ser grande)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Número de unións que realizaron un exame completo da primeira táboa." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Número de táboas temporais abertas actualmente polo fío SQL escravo." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9660,11 +9653,11 @@ msgstr "" "Número total de veces (desde o inicio) que o fío de replicación SQL escravo " "reintentou as transaccións." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Isto está ON se este servidor é un escravo conectado a un máster." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9672,14 +9665,14 @@ msgstr "" "Número de fíos aos que lles levou crearse máis segundos dos indicados en " "slow_launch_time." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Número de procuras ás que lles levou máis segundos dos indicados en " "long_query_time." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9689,23 +9682,23 @@ msgstr "" "este valor for grande, sería ben que considerase incrementar o valor da " "variábel de sistema sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Número de ordenacións feitas con intervalos." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Número de fileiras ordenadas." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Número de ordenacións realizadas examinando a táboa." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Número de veces que se adquiriu inmediatamente un bloqueo de táboa." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9717,7 +9710,7 @@ msgstr "" "debería en primeiro lugar mellorar as procuras e despois, ora partir a táboa " "ou táboas, ora utilizar replicación." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9727,11 +9720,11 @@ msgstr "" "calcular como Threads_created/Connections. Se este valor for vermello, " "debería aumentar a thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Número de conexións abertas neste momento." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9743,7 +9736,7 @@ msgstr "" "non fornece unha mellora notábel no desempeño se ten unha boa implementación " "de fíos.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Número de fíos que non están a durmir." @@ -11006,6 +10999,11 @@ msgstr "Nome da VISTA" msgid "Rename view to" msgstr "Mudar o nome da táboa para" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "por segundo" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/he.po b/po/he.po index f927799524..361a20684b 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" @@ -81,7 +81,7 @@ msgstr "שמות מפתח" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "תיאור" @@ -268,7 +268,7 @@ msgstr "מאגר נתונים %s הועתק אל %s" msgid "Rename database to" msgstr "שינוי שם מאגר נתונים אל" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "פקודה" @@ -638,7 +638,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 #, fuzzy msgid "Replication" msgstr "יחסים" @@ -750,7 +750,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -769,7 +769,7 @@ msgstr "יצירה" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "מצב" @@ -1074,17 +1074,17 @@ msgstr "" msgid "Edit" msgstr "עריכה" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "בחירת שרת" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "שאילתת SQL" @@ -1096,13 +1096,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "סה\"כ" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1134,7 +1134,7 @@ msgstr "בחירת שרת" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "תהליכים" @@ -1153,7 +1153,7 @@ msgstr "" msgid "Issued queries" msgstr "שאילתת SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "סטטיסטיקת שורה" @@ -2036,7 +2036,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "טבלאות" @@ -2166,7 +2166,7 @@ msgid "Documentation" msgstr "תיעוד" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "שאילתת SQL" @@ -2195,7 +2195,7 @@ msgid "Create PHP Code" msgstr "ייצור קוד PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "רענון" @@ -4881,7 +4881,7 @@ msgstr "דחיסה" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "ללא" @@ -5129,7 +5129,7 @@ msgid "The row has been deleted" msgstr "השורה נמחקה" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "" @@ -5218,7 +5218,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "מצב InnoDB" @@ -5687,7 +5687,7 @@ msgstr "סוגי MIME זמינים" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "מארח" @@ -6386,13 +6386,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "משתנה" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "ערך" @@ -6632,12 +6632,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "דו\"ח בינארי" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "משתנים" @@ -6922,7 +6922,7 @@ msgstr "" msgid "+ Add a new value" msgstr "הוספת משתמש חדש" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "זמן" @@ -7084,7 +7084,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "משתמש" @@ -7548,18 +7548,18 @@ msgstr "הטבלה \"%s\" לא קיימת!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "שדות" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "הראה שאילתות שלמות" @@ -8082,7 +8082,7 @@ msgstr "ההרשאות נטענו מחדש בהצלחה." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8221,255 +8221,248 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר." - -#: server_status.php:248 -msgid "Handler" -msgstr "" - -#: server_status.php:249 -#, fuzzy -msgid "Query cache" -msgstr "סוג שאילתה" - -#: server_status.php:250 -msgid "Threads" -msgstr "" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "" - -#: server_status.php:253 -#, fuzzy -msgid "Delayed inserts" -msgstr "השתמש בהכנסות מעוכבות" - -#: server_status.php:254 -msgid "Key cache" -msgstr "" - -#: server_status.php:255 -msgid "Joins" -msgstr "" - -#: server_status.php:257 -msgid "Sorting" -msgstr "" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:272 -#, fuzzy -msgid "Show open tables" -msgstr "ראיית טבלאות" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "מידע זמן ריצה" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "בחירת שרת" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "רענון" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "לשנייה" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "לשנייה" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "in use" -msgid "minutes" -msgstr "בשימוש" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "בשימוש" +msgstr[1] "בשימוש" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "לשנייה" +msgstr[1] "לשנייה" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר." + +#: server_status.php:263 +msgid "Handler" +msgstr "" + +#: server_status.php:264 +#, fuzzy +msgid "Query cache" +msgstr "סוג שאילתה" + +#: server_status.php:265 +msgid "Threads" +msgstr "" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "" + +#: server_status.php:268 +#, fuzzy +msgid "Delayed inserts" +msgstr "השתמש בהכנסות מעוכבות" + +#: server_status.php:269 +msgid "Key cache" +msgstr "" + +#: server_status.php:270 +msgid "Joins" +msgstr "" + +#: server_status.php:272 +msgid "Sorting" +msgstr "" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:287 +#, fuzzy +msgid "Show open tables" +msgstr "ראיית טבלאות" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "מידע זמן ריצה" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "בחירת שרת" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "אל תשנה את הסיסמא" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "ראיית טבלאות" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "יחסים" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "לשעה" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "לדקה" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "לשנייה" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "סוג שאילתה" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "שרת MySQL פעיל במשך %s. הוא התחיל לפעול ב- %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Traffic" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "התקבל" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "נשלח" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "חיבורים" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "ניסיונות כושלים" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "בוטל" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "קוד זיהוי" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8477,78 +8470,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8556,7 +8549,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8564,42 +8557,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8607,33 +8600,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8642,227 +8635,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8870,99 +8863,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8970,18 +8963,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8989,7 +8982,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10124,6 +10117,11 @@ msgstr "" msgid "Rename view to" msgstr "שינוי שם טבלה אל" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "לשנייה" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/hi.po b/po/hi.po index 89440261a8..98e1a7003d 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-05-06 09:13+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" @@ -83,7 +83,7 @@ msgstr "मुख्यनाम" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "वर्णन" @@ -270,7 +270,7 @@ msgstr " डेटाबेस %s से %s में कॉपी किया msgid "Rename database to" msgstr "डेटाबेस का नाम बदल कर ____ रखें" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "आदेश" @@ -622,7 +622,7 @@ msgstr "दृश्य" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "प्रतिकृति" @@ -735,7 +735,7 @@ msgstr "ट्रैक की गयी टेबलएं" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -753,7 +753,7 @@ msgstr "बनाया" msgid "Updated" msgstr "अद्यतन" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "स्थिति" @@ -1061,17 +1061,17 @@ msgstr "बंद" msgid "Edit" msgstr "सम्पादन" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "सर्वर चुनिये" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -1084,13 +1084,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "कुल" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1122,7 +1122,7 @@ msgstr "सर्वर चुनिये" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "प्रक्रियां" @@ -1142,7 +1142,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL क्वरी" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr " डाटाबेसों के सांख्यिकी" @@ -1955,7 +1955,7 @@ msgstr "साझा" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "टेबल" @@ -2084,7 +2084,7 @@ msgid "Documentation" msgstr "डोक्युमेंटेशन" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL क्वरी" @@ -2113,7 +2113,7 @@ msgid "Create PHP Code" msgstr "PHP Code बनाओ" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "ताज़ा करना" @@ -4734,7 +4734,7 @@ msgstr "संपीड़न" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "कोई नहीं" @@ -4961,7 +4961,7 @@ msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "" @@ -5049,7 +5049,7 @@ msgstr "" msgid "Buffer Pool" msgstr "बफर पूल" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "" @@ -5506,7 +5506,7 @@ msgstr "फीचरस दिखाओ" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "होस्ट" @@ -6200,13 +6200,13 @@ msgid "Slave status" msgstr "स्लाव की स्थिति" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "स्थिति" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "मूल्य" @@ -6444,12 +6444,12 @@ msgid "Synchronize" msgstr "सिंक्रनाइज़" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "बाइनरी लोग" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "प्रक्रियां" @@ -6713,7 +6713,7 @@ msgstr "" msgid "+ Add a new value" msgstr "नयी वलुए जोडें" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "समय" @@ -6874,7 +6874,7 @@ msgid "Protocol version" msgstr "अधिक सेटिंग्स" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "यूसर" @@ -7322,17 +7322,17 @@ msgstr "फ़ाइल मौजूद नहीं है" msgid "Select binary log to view" msgstr "द्विआधारी लॉग देखने के लिए चयनित करें" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "फाइलें" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "पूर्ण क्वरीों को दिखाएँ" @@ -7848,7 +7848,7 @@ msgstr "मास्टर सर्वर सफलतापूर्वक प msgid "This server is configured as master in a replication process." msgstr "यह सर्वर किसी प्रतिकृति प्रक्रिया में मास्टर की तरह कॉन्फ़िगर है" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "मास्टर अवस्था" @@ -7985,255 +7985,248 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Thread %s को सफलता से मारा गया।" - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।" - -#: server_status.php:248 -msgid "Handler" -msgstr "हैंडलर" - -#: server_status.php:249 -msgid "Query cache" -msgstr "क्वेरी कैश" - -#: server_status.php:250 -msgid "Threads" -msgstr "थ्रेअद" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "अस्थायी डेटा" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "देरी आवेषण" - -#: server_status.php:254 -msgid "Key cache" -msgstr "कुंजी कैश" - -#: server_status.php:255 -msgid "Joins" -msgstr "जोड़" - -#: server_status.php:257 -msgid "Sorting" -msgstr "छँटाई" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "लेन - देन समन्वयक" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "सभी टेबलओं फ्लश" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "खुला टेबल शो" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "फ्लश क्वेरी कैश" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "क्रम जानकारी" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "सर्वर चुनिये" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "ताज़ा करना" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "सेकंड" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "सेकंड" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "Minute" -msgid "minutes" -msgstr "मिनट" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "मिनट" +msgstr[1] "मिनट" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "सेकंड" +msgstr[1] "सेकंड" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Thread %s को सफलता से मारा गया।" + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।" + +#: server_status.php:263 +msgid "Handler" +msgstr "हैंडलर" + +#: server_status.php:264 +msgid "Query cache" +msgstr "क्वेरी कैश" + +#: server_status.php:265 +msgid "Threads" +msgstr "थ्रेअद" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "अस्थायी डेटा" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "देरी आवेषण" + +#: server_status.php:269 +msgid "Key cache" +msgstr "कुंजी कैश" + +#: server_status.php:270 +msgid "Joins" +msgstr "जोड़" + +#: server_status.php:272 +msgid "Sorting" +msgstr "छँटाई" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "लेन - देन समन्वयक" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "सभी टेबलओं फ्लश" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "खुला टेबल शो" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "फ्लश क्वेरी कैश" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "क्रम जानकारी" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "सर्वर चुनिये" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "पासवर्ड मत बदलिये" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "खुला टेबल शो" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Replication" msgid "Related links:" msgstr "पसंबंधित लिंक" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "प्रति घंटे" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "प्रति मिनट" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "प्रति सेकंड" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "क्वरी प्रकार" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "प्रतिकृति स्थिति" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "ट्रैफ़िक" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "प्राप्त" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "भेजा" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "कनेक्शन" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "अधिकतम वर्तमान कनेक्शन" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "असफल प्रयास" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "रद्द" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL सर्वर से कनेक्ट नहीं कर सका" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8241,78 +8234,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8320,7 +8313,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8328,42 +8321,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8371,33 +8364,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8406,227 +8399,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8634,99 +8627,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8734,18 +8727,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8753,7 +8746,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -9858,6 +9851,11 @@ msgstr "दृश्य का नाम" msgid "Rename view to" msgstr "दृश्य का नाम बदलो" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "सेकंड" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "क्वेरी निष्पादन समय की तुलना" diff --git a/po/hr.po b/po/hr.po index 737b58ddac..66e5d3ed34 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" @@ -85,7 +85,7 @@ msgstr "Naziv ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Opis" @@ -274,7 +274,7 @@ msgstr "Baza podataka %s kopirana je u %s" msgid "Rename database to" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Naredba" @@ -647,7 +647,7 @@ msgstr "Prikaz" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikacija" @@ -760,7 +760,7 @@ msgstr "Provjeri tablicu" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -780,7 +780,7 @@ msgstr "Izradi" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stanje" @@ -1107,17 +1107,17 @@ msgstr "" msgid "Edit" msgstr "Uređivanje" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Odabir poslužitelja" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL upit" @@ -1129,13 +1129,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1167,7 +1167,7 @@ msgstr "Odabir poslužitelja" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Procesi" @@ -1186,7 +1186,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL upit" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Statistike redova" @@ -2082,7 +2082,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tablice" @@ -2221,7 +2221,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL upit" @@ -2250,7 +2250,7 @@ msgid "Create PHP Code" msgstr "Izradi PHP kod" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Osvježi" @@ -4974,7 +4974,7 @@ msgstr "Kompresija" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "bez kompresije" @@ -5236,7 +5236,7 @@ msgid "The row has been deleted" msgstr "Redak je izbrisan" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Eliminiraj" @@ -5329,7 +5329,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Međuspremnik" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB stanje" @@ -5850,7 +5850,7 @@ msgstr "Raspoložive MIME vrste" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Računalo" @@ -6552,13 +6552,13 @@ msgid "Slave status" msgstr "Prikaži stanje potčinjenog" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Varijabla" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Vrijednost" @@ -6799,12 +6799,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binarni zapisnik" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Varijable" @@ -7104,7 +7104,7 @@ msgstr "Definicija PARTICIJE" msgid "+ Add a new value" msgstr "Dodaj novog korisnika" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Vrijeme" @@ -7349,7 +7349,7 @@ msgid "Protocol version" msgstr "Verzija protokola" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Korisnik" @@ -7828,17 +7828,17 @@ msgstr "Tablica \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "Odaberite binarni zapisnik za prikaz" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Sreži prikazane rezultate" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Prikaži pune upite" @@ -8372,7 +8372,7 @@ msgstr "Privilegije su uspješno učitane." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 #, fuzzy msgid "Show master status" msgstr "Prikaži stanje potčinjenog" @@ -8513,200 +8513,195 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Grana %s uspješno je prekinuta." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin nije mogao ugasiti granu %s. Vjerojatno je već zatvorena." - -#: server_status.php:248 -msgid "Handler" -msgstr "Hvatišta" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Pohrana upita" - -#: server_status.php:250 -msgid "Threads" -msgstr "Grane" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "Privremeni podaci" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Odgođena umetanja" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Pohrana ključeva" - -#: server_status.php:255 -msgid "Joins" -msgstr "Spojevi" - -#: server_status.php:257 -msgid "Sorting" -msgstr "Preslagivanje" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Koordinator transakcije" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "Isprazni (zatvori) sve tablice" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Prikaži otvorene tablice" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "Prikaži potčinjena računala" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "Prikaži stanje potčinjenog" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "Isprazni pohranu upita" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "Podaci o razini izvršavanja" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Odabir poslužitelja" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Osvježi" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "po sekundi" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "po sekundi" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "in use" -msgid "minutes" -msgstr "u upotrebi" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "u upotrebi" +msgstr[1] "u upotrebi" +msgstr[2] "u upotrebi" -#: server_status.php:460 +#: server_status.php:33 +#, 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.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Grana %s uspješno je prekinuta." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin nije mogao ugasiti granu %s. Vjerojatno je već zatvorena." + +#: server_status.php:263 +msgid "Handler" +msgstr "Hvatišta" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Pohrana upita" + +#: server_status.php:265 +msgid "Threads" +msgstr "Grane" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "Privremeni podaci" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Odgođena umetanja" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Pohrana ključeva" + +#: server_status.php:270 +msgid "Joins" +msgstr "Spojevi" + +#: server_status.php:272 +msgid "Sorting" +msgstr "Preslagivanje" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Koordinator transakcije" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "Isprazni (zatvori) sve tablice" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Prikaži otvorene tablice" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "Prikaži potčinjena računala" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "Prikaži stanje potčinjenog" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "Isprazni pohranu upita" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "Podaci o razini izvršavanja" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Odabir poslužitelja" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Ne mijenjaj lozinku" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Prikaži otvorene tablice" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "po satu" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "po minuti" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "po sekundi" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Vrsta upita" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ovaj MySQL poslužitelj radi tijekom %s. Pokrenut je %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Promet" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8715,41 +8710,41 @@ msgstr "" "prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti " "netočne." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Primljeno" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Poslano" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Veze" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "najv. uzastopnih veza" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Neuspjeli pokušaji" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8759,17 +8754,17 @@ msgstr "" "ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu " "datoteku za pohranjivanje izjava transakcija." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Broj transakcija koje su upotrebljavale privremeni binarni zapisnik pohrane." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8781,11 +8776,11 @@ msgstr "" "moglo bi biti potrebno da povećate vrijednost tmp_table_size, kako biste " "privremene tablice smjestili u radnu memoriju, a ne na tvrdi disk." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Koliko je privremenih tablica izradio mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8793,7 +8788,7 @@ msgstr "" "Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio " "tijekom izvršavanja izjava." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8801,7 +8796,7 @@ msgstr "" "Broj redaka upisanih pomoću naredbe INSERT DELAYED, a kod kojih je došlo do " "neke vrste pogreške (vjerojatan razlog je udvojen ključ)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8809,23 +8804,23 @@ msgstr "" "Broj hvatište grana INSERT DELAYED u upotrebi. Svaka druga tablica na koju " "se primjeni INSERT DELAYED dobiva vlastitu granu." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Broj redaka zapisanih pomoću INSERT DELAYED." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih izjava FLUSH." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Broj internih izjava COMMIT." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Brojka koja prokazuje koliko puta je redak bio izbrisan iz tablice." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8835,7 +8830,7 @@ msgstr "" "tablicu s traženim nazivom. Ovaj se postupak naziva otkrivanje. " "Handler_discover naznačuje koliko je puta tablica bila otkrivenom." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8845,7 +8840,7 @@ msgstr "" "broj je pokazatelj da poslužitelj izvodi mnogo potpunih pretraživanja " "indeksa, npr. SELECT col1 FROM foo, pri čemu je col1 indeksiran." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8853,7 +8848,7 @@ msgstr "" "Broj zahtjeva za čitanje retka zasnovan na ključu. Velik broj je pokazatelj " "da su vaši upiti i tablice pravilno indeksirani." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8863,7 +8858,7 @@ msgstr "" "povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako " "izvodite pretraživanje indeksa." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8871,7 +8866,7 @@ msgstr "" "Broj zahtjeva za čitanje prethodnog retka u redoslijedu ključa. Ovaj način " "čitanja uglavnom se upotrebljava za optimiziranje opcije ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8883,7 +8878,7 @@ msgstr "" "Vjerojatno imate mnogo upita koji zahtijevaju da MySQL pretražuje cjelokupne " "tablice ili imate spojeve koji ne upotrebljavaju ključ na pravilan način." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8895,36 +8890,36 @@ msgstr "" "naznačuje da vaša tablice nisu pravilno indeksirane ili da vaši upiti nisu " "napisani na način koji iskorištava prednosti raspoloživih indeksa." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih izjava ROLLBACK." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Broj zahtjeva za ažuriranje retka u tablici." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Broj zahtjeva za umetanje retka u tablici." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj stranice koje sadrže podatke (dirty ili clean)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Broj stranica koje su trenutno 'dirty'." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Broj stranica međuspremnika za koje je podnesen zahtjev za pražnjenjem." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Broj slobodnih stranica." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8934,7 +8929,7 @@ msgstr "" "čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog " "drugog razloga." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8946,11 +8941,11 @@ msgstr "" "je vrijednost moguće izračunati i kao Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Ukupna veličina međuspremnika, u stranicama." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8958,7 +8953,7 @@ msgstr "" "Broj \"nasumičnih\" pripremnih čitanja koje je InnoDB inicijalizirao. Događa " "se kad upit mora pretražiti veliki dio tablice, ali nasumičnim redoslijedom." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8966,11 +8961,11 @@ msgstr "" "Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se " "događa kad InnoDB izvodi potpuno pretraživanje tablice." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8978,7 +8973,7 @@ msgstr "" "Broj logičkih čitanja koje InnoDB nije mogao zadovoljiti iz međuspremnik i " "morao je izvesti čitanje po jedne stranice." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8992,55 +8987,55 @@ msgstr "" "prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno " "postavljena, ova bi vrijednost trebala biti malenom." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Broj dosadašnjih fsync() operacija." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Trenutan broj fsync() operacija u čekanju." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Trenutan broj čitanja u čekanju." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Trenutan broj zapisivanja u čekanju." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Ukupan broj iščitavanja podataka." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Ukupan broj zapisivanja podataka." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9049,35 +9044,35 @@ msgstr "" "međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka " "rada." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Broj zahtjeva za zapisivanje u zapisnik." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih zapisivanja u zapisnik." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Zapisivanja u zapisnik na čekanju." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Broj bajtova zapisanih u zapisnik." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Broj izrađenih stranica." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9086,52 +9081,52 @@ msgstr "" "vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo " "jednostavno pretvaranje u bajtove." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Broj iščitanih stranica." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Broj zapisanih stranica." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Broj zaključavanja redaka na koje se trenutno čeka." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vrijeme utrošeno na postizanja zaključanosti retka, u milisekundama." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Broj okolnosti kad je bilo potrebno čekati na zaključanost retka." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redaka izbrisanih iz InnoDB tablica." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redaka umetnutih u InnoDB tablice." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Broj redaka iščitanih iz InnoDB tablica." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Broj ažuriranih redaka u InnoDB tablicama." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9139,7 +9134,7 @@ msgstr "" "Broj ključnih blokova u pohrani ključeva koji su izmijenjeni ali još nisu " "ispražnjeni na disk. Nekoć se nazivalo: Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9147,7 +9142,7 @@ msgstr "" "Broj neiskorištenih blokova u pohrani ključeva. Ovu vrijednost možete " "upotrijebiti za određivanje veličine pohrane ključeva koja je u upotrebi." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9157,11 +9152,11 @@ msgstr "" "gornje razine koja označuje najveći broj blokova koji su ikad bili u " "istovremenoj upotrebi." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahtjeva za čitanje ključnog bloka iz pohrane." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9172,15 +9167,15 @@ msgstr "" "promašivanja pohrane moguće je izračunati putem naredbi Key_reads/" "Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahtjeva za zapisivanje ključnog bloka u pohranu." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih zapisivanja ključnih blokova na disk. " -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9190,17 +9185,17 @@ msgstr "" "upita. Korisno za uspoređivanje troškova različitih planova upita za isti " "upit. Zadana vrijednost je 0 i podrazumijeva da još nema složenog upita." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redaka koji čekaju svoje upisivanje u red čekanja INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9208,39 +9203,39 @@ msgstr "" "Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaša " "vrijednost za pohranu tablica vjerojatno je premala." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih protoka (uglavnom se upotrebljava za vođenje zapisnika)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Broj otvorenih tablica." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za pohranu upita." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Broj pronalaženja u pohrani." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Broj upita pridodanih u pohranu." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9253,7 +9248,7 @@ msgstr "" "nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će " "upite ukloniti iz pohrane." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9261,19 +9256,19 @@ msgstr "" "Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog " "postavke query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Broj upita registriranih u pohrani." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u pohrani upita." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9281,12 +9276,12 @@ msgstr "" "Broj spojeva koji ne upotrebljavaju indekse. Ako ovaj iznos nije 0, bit će " "potrebno da pažljivo provjerite indekse vaših tablica." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Broj spojeva koji nad referentnom tablicom upotrebljavaju opseg traženja." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9295,7 +9290,7 @@ msgstr "" "retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite " "indekse vaših tablica." -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9303,17 +9298,17 @@ msgstr "" "Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije " "kritično ako je ovaj iznos velik.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su izveli potpuno pretraživanje prve tablice." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Broj privremenih tablica koje su trenutno otvorene od strane potčinjene SQL " "grane." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9321,12 +9316,12 @@ msgstr "" "Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane " "replikacijske potčinjene SQL grane." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Uključeno (ON) ako je ovaj poslužitelj potčinjen i povezan na gospodara." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9334,14 +9329,14 @@ msgstr "" "Broj grana kojima je bilo potrebno više vremena za izradu, nego što je to " "definirano u slow_launch_time (sporo vrijeme pokretanja), u sekundama." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Broj upita kojima je bilo potrebno više vremena nego što je to definirano u " "long_query_time (dugo vrijeme upita), u sekundama." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9351,23 +9346,23 @@ msgstr "" "Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti " "sistemske varijable sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Broj preslagivanja učinjenih pomoću opsega." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Broj presloženih redaka." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Broj preslagivanja učinjenih pomoću pretraživanja tablice." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Količina trenutno postignutih zaključavanja tablica." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9379,7 +9374,7 @@ msgstr "" "problema s performansama, bit će potrebno da prvo optimizirate svoje upite i " "potom ili podijelite svoje tablice ili upotrijebite replikaciju." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9389,11 +9384,11 @@ msgstr "" "kao Threads_created/Connections. Ako je ovaj iznos prikazan crvenom bojom, " "bit će potrebno da povećate svoju vrijednost thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9405,7 +9400,7 @@ msgstr "" "(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti " "primjetna poboljšanja performansi.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Broj grana koje nisu uspavane." @@ -10552,6 +10547,11 @@ msgstr "Naziv prikaza" msgid "Rename view to" msgstr "Preimenuj prikaz u" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "po sekundi" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/hu.po b/po/hu.po index 3450cb6a9c..2c22ba3cdb 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-05-27 18:52+0200\n" "Last-Translator: \n" "Language-Team: hungarian \n" @@ -84,7 +84,7 @@ msgstr "Kulcsnév" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Leírás" @@ -271,7 +271,7 @@ msgstr "A(z) %s adatbázis másolása a(z) %s adatbázisba megtörtént" msgid "Rename database to" msgstr "Adatbázis átnevezése" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Parancs" @@ -625,7 +625,7 @@ msgstr "Nézet" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Többszörözés" @@ -732,7 +732,7 @@ msgstr "Nyomon követett táblák" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -750,7 +750,7 @@ msgstr "Létrehozva" msgid "Updated" msgstr "frissítve" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Állapot" @@ -1063,17 +1063,17 @@ msgstr "Bezárás" msgid "Edit" msgstr "Módosítás" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Szerver választása" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -1086,13 +1086,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Összesen" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1124,7 +1124,7 @@ msgstr "Szerver választása" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Folyamatok" @@ -1144,7 +1144,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL-lekérdezések" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Lekérdezések statisztikája" @@ -1967,7 +1967,7 @@ msgstr "megosztott" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Táblák" @@ -2100,7 +2100,7 @@ msgid "Documentation" msgstr "Dokumentáció" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-lekérdezés" @@ -2129,7 +2129,7 @@ msgid "Create PHP Code" msgstr "PHP-kód létrehozása" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Frissítés" @@ -4903,7 +4903,7 @@ msgstr "Tömörítés:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Nincs" @@ -5156,7 +5156,7 @@ msgid "The row has been deleted" msgstr "A sor törlése megtörtént" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Leállít" @@ -5249,7 +5249,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Pufferkészlet" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB állapota" @@ -5772,7 +5772,7 @@ msgstr "Létező MIME-típusok" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Hoszt" @@ -6478,13 +6478,13 @@ msgid "Slave status" msgstr "Másodlagos állapot" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Változó" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Érték" @@ -6727,12 +6727,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Bináris napló" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Változók" @@ -7036,7 +7036,7 @@ msgstr "PARTITION definíció" msgid "+ Add a new value" msgstr "Új szerver hozzáadása" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Idő" @@ -7288,7 +7288,7 @@ msgid "Protocol version" msgstr "Protokoll verzió" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Felhasználó" @@ -7786,17 +7786,17 @@ msgstr "A fájl nem létezik" msgid "Select binary log to view" msgstr "Válassza ki a megtekintendő bináris naplót" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Fájlok" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "A megjelenített lekérdezések lerövidítése" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Teljes lekérdezések megjelenítése" @@ -8334,7 +8334,7 @@ msgstr "A jogok újratöltése sikerült." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 #, fuzzy msgid "Show master status" msgstr "Kisegítő állapot megjelenítése" @@ -8476,12 +8476,34 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Frissítés" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Perc" +msgstr[1] "Perc" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "másodperc" +msgstr[1] "másodperc" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Sikerült leállítani a(z) %s. szálat." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8489,174 +8511,145 @@ msgstr "" "A phpMyAdmin nem tudta leállítani a(z) %s szálat. Valószínűleg már " "befejeződött." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Kezelő" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Lekérdezési gyorsítótár" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Szálak" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Ideiglenes adatok" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Késleltetett beszúrások" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Kulcs gyorsítótár" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Illesztések" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Rendezés" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Tranzakció koordinátor" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Összes tábla kiírása (bezárása)" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Nyitott táblák megjelenítése" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Kisegítő állomások megjelenítése" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Kisegítő állapot megjelenítése" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Lekérdezési gyorsítótár kiírása" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Futtatási információk" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Szerver választása" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Frissítés" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "másodperc" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "másodperc" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "Perc" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nincs jelszó megváltoztatás" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Nyitott táblák megjelenítése" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Kapcsolatok" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "óránként" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "percenként" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "másodpercenként" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Lekérdezés típusa" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ez a MySQL szerver %s óta fut. Indítás időpontja: %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -8670,15 +8663,15 @@ msgstr "" "szerveren lévő többszörözéses állapotról a többszörözés részben kaphat bővebb információt." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Többszörözéses állapot" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Forgalom" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8686,41 +8679,41 @@ msgstr "" "Foglalt szerveren túlfuthatnak a bájtszámlálók, ezért a MySQL által " "jelentett statisztikák pontatlanok lehetnek." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Fogadott" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Küldött" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Kapcsolatok" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "Max. egyidejű kapcsolatok száma" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Sikertelen próbák" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Megszakítva" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "AZ" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8730,17 +8723,17 @@ msgstr "" "használt, azonban az túllépte a binlog_cache_size méretet, és ideiglenes " "fájlt használt az utasítások tárolásához a tranzakcióból." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Az ideiglenes bináris naplógyorsítótár által használt tranzakciók száma." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8752,11 +8745,11 @@ msgstr "" "nagy, akkor növelheti a tmp_table_size értékét, mely az ideiglenes táblákból " "memóriaalapúakat csinál a lemezalapú helyett." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8764,7 +8757,7 @@ msgstr "" "A szerver által az utasítások végrehajtásakor automatikusan létrehozott, a " "memóriában tárolt ideiglenes táblák száma." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8772,7 +8765,7 @@ msgstr "" "Az INSERT DELAYED utasítással írt sorok száma, melyeknél néhány hiba történt " "(valószínűleg ismétlődő kulcs)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8780,23 +8773,23 @@ msgstr "" "A használatban lévő INSERT DELAYED kezelőszálak száma. Minden eltérő " "táblának, melyen valaki INSERT DELAYED parancsot használ, saját szála lesz." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "A beírt INSERT DELAYED sorok száma." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "A végrehajtott FLUSH utasítások száma." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "A belső COMMIT utasítások száma." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Egy sornak a táblázatból történő törléseinek a száma." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8806,7 +8799,7 @@ msgstr "" "megadott nevű táblát. Ezt hívják felfedezésnek. A handler_discover jelzi a " "táblák felfedezésének számát." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8817,7 +8810,7 @@ msgstr "" "például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül " "indexelésre." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8825,7 +8818,7 @@ msgstr "" "Egy sor kulcs alapján történő beolvasási kéréseinek száma. Ha ez magas, " "akkor jól mutatja, hogy a lekérdezések és a táblák megfelelően indexeltek." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8835,7 +8828,7 @@ msgstr "" "ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot " "végez." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8843,7 +8836,7 @@ msgstr "" "A kulcssorrendben előző sort beolvasandó kérések száma. Ezt a beolvasási " "módszert főleg az ORDER BY ... DESC optimalizálásához használják." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8855,7 +8848,7 @@ msgstr "" "Valószínűleg sok olyan lekérdezés van, s a MySQL-nek teljes táblákat kell " "megvizsgálnia, vagy a kulcsokat nem megfelelően használó illesztések vannak." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8867,35 +8860,35 @@ msgstr "" "hogy a táblák nem megfelelően indexeltek, vagy a lekérdezések nincsenek írva " "az indexek kihasználása végett." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "A belső ROLLBACK utasítások száma." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "A kérések száma egy táblában lévő sor frissítéséhez." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "A kérések száma egy táblában lévő sor beszúrásához." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "A jelenleg piszkos lapok száma." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "A pufferkészlet oldalainak száma, melyeket kiírásra kértek." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "A szabad lapok száma." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8905,7 +8898,7 @@ msgstr "" "írás alatt lévő oldalak, melyeket bizonyos más okok miatt nem lehet kiírni " "vagy eltávolítani." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8918,11 +8911,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data értékként is " "számolható." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "A pufferkészlet teljes mérete lapokban." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8931,7 +8924,7 @@ msgstr "" "akkor történik, ha egy lekérdezés meg akarja vizsgálni egy tábla nagy " "részét, viszont véletlenszerű sorrendben." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8939,11 +8932,11 @@ msgstr "" "Az InnoDB által kezdeményezett sorozatos előreolvasások száma. Ez akkor " "történik, mikor az InnoDB sorozatos teljes táblavizsgálatot tart." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Az InnoDB által elvégzett logikai olvasási kérések száma." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8951,7 +8944,7 @@ msgstr "" "A logikai olvasások száma, melyeket az InnoDB nem tudott a pufferkészletből " "kielégíteni, s egyoldalas beolvasást végzett." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8966,53 +8959,53 @@ msgstr "" "méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell " "lennie." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Az InnoDB pufferkészletébe történt írások száma." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Az fsync() műveletek eddigi száma." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "A folyamatban lévő fsync() műveletek száma." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "A folyamatban lévő olvasások száma." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "A folyamatban lévő írások száma." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Az eddig beolvasott adatok mennyisége bájtban." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Az összes beolvasott adat." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Az összes írott adat." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Az összes írott adat, bájtban." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9020,35 +9013,35 @@ msgstr "" "Várakozások száma, amiket a naplópuffer kis mérete okozott és folytatás " "előtt meg kellett várni a kiírást." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "A naplóírási kérések száma." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "A naplófájlba történt fizikai írások száma." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "A naplófájlba történt fsyncs írások száma." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "A folyamatban lévő naplófájl fsync-ek száma." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "A folyamatban lévő naplófájl írások száma." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "A naplófájlba írt bájtok száma." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "A létrehozott lapok száma." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9057,51 +9050,51 @@ msgstr "" "került számolásra az oldalakban; az oldal mérete teszi lehetővé a bájtokká " "történő könnyű átalakítást." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "A beolvasott lapok száma." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Az írott lapok száma." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "A jelenleg várakozás alatt lévő sorzárolások száma." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges átlag időtartam, milliszekundumban." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "A sorzárolásokra fordított összes idő, milliszekundumban." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges időtartam, milliszekundumban." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "A sorzárolásra váráshoz szükséges alkalmak száma." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Az InnoDB táblákból törölt sorok száma." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Az InnoDB táblákba beszúrt sorok száma." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Az InnoDB táblákból beolvasott sorok száma." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Az InnoDB táblákban frissített sorok száma." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9109,7 +9102,7 @@ msgstr "" "A kulcsgyorsítótárban lévő kulcsblokkok száma, melyek megváltoztak, de még " "nem kerültek lemezre kiírásra. Ez Not_flushed_key_blocks néven ismert." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9117,7 +9110,7 @@ msgstr "" "A kulcsgyorsítótárban lévő, nem használt blokkok száma. Ezzel az értékkel " "állapíthatja meg, hogy mennyire van használatban a kulcsgyorsítótár." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9126,11 +9119,11 @@ msgstr "" "A kulcsgyorsítótárban lévő használt blokkok száma. Ez az érték egy maximális " "jel, mely a valamikor használatban volt blokkok számát jelzi." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "A gyorsítótárból egy kulcsblokk beolvasásához szükséges kérések száma." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9141,15 +9134,15 @@ msgstr "" "sikertelen találatainak aránya a Key_reads/Key_read_requests alapján " "számítható ki." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "A kérések száma egy kulcsblokk gyorsítótárba történő írásához." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Egy kulcsblokk lemezre történő fizikai írásainak száma." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9160,17 +9153,17 @@ msgstr "" "költségének lekérdezéséhez hasznos. Az alapértelmezett 0 érték azt jelenti, " "hogy lekérdezés lefordítására még nem került sor." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Az INSERT DELAYED sorokban írásra várakozó sorok száma." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9178,40 +9171,40 @@ msgstr "" "Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagy,akkor " "valószínűleg túl kicsi a táblagyorsítótár értéke." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "A megnyitott fájlok száma." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Az adatfolyamok száma, melyek nyitottak (főleg a naplózáshoz kerül " "felhasználásra)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "A megnyitott táblák száma." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "A szabad memória mérete a lekérdezési gyorsítótárhoz." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "A gyorsítótár találatok száma." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "A gyorsítótárhoz adott lekérdezések száma." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9224,7 +9217,7 @@ msgstr "" "lekérdezési gyorsítótár a legrégebben használt (LRU) stratégiával dönti el, " "hogy mely lekérdezéseket kell eltávolítani a gyorsítótárból." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9232,19 +9225,19 @@ msgstr "" "A nem gyorsítótárazott lekérdezések száma (nem gyorsítótárazható, vagy nem " "gyorsítótárazott a query_cache_type beállítás miatt)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "A gyorsítótárban bejegyzett lekérdezések száma." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "A blokkok száma a lekérdezési gyorsítótárban." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "A hibabiztos többszörözések állapota (megvalósításra vár)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9252,11 +9245,11 @@ msgstr "" "Az indexeket nem használó illesztések száma. Ha ez az érték nem 0, akkor " "ellenőrizze körültekintően a táblák indexeit." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "Egy hivatkozási táblán tartománykeresést használt illesztések száma." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9265,7 +9258,7 @@ msgstr "" "használatát ellenőrzik. (Ha ez nem 0, akkor ellenőrizze körültekintően a " "táblák indexeit.))" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9273,15 +9266,15 @@ msgstr "" "Az első táblán tartományokat használt illesztések száma. (Normál esetben ez " "nem súlyos, még ha túl nagy is ez.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Az első tábla teljes vizsgálatát elvégzett illesztések száma." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "A kisegítő SQL szál által épp megnyitott ideiglenes táblák száma." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9289,11 +9282,11 @@ msgstr "" "A többszörözésben kisegítő SQL szál (az indítás óta) ennyiszer próbálta újra " "a tranzakciókat." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ez BE, ha ez főszerverhez csatlakoztatott kisegítő szerver." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9301,14 +9294,14 @@ msgstr "" "A szálak száma, melyek létrehozásához slow_launch_time másodpercnél többre " "volt szükség." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "A lekérdezések száma, melyekhez long_query_time másodpercnél többre volt " "szükség." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9318,23 +9311,23 @@ msgstr "" "végeznie. Ha ez az érték nagy, akkor gondolja meg a sort_buffer_size " "rendszerváltozó értékének növelését." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "A tartományokkal végzett rendezések száma." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Rendezett sorok száma." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "A tábla vizsgálatával végrehajtott rendezések száma." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Ennyiszer nem lehetett azonnal megszerezni egy táblazárolást." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9346,7 +9339,7 @@ msgstr "" "optimalizálja a lekérdezéseket, majd vagy ossza fel a táblát vagy táblákat, " "vagy használja a többszörözést." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9356,11 +9349,11 @@ msgstr "" "Threads_created/Connections alapján számítható ki. Ha ez az érték piros, " "akkor növelnie kell a thread_cache_size méretét." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "A jelenleg megnyitott kapcsolatok száma." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9371,7 +9364,7 @@ msgstr "" "nagy, akkor növelheti a thread_cache_size értékét. (Normál esetben ez nem " "növeli jelentősen a teljesítményt, ha jó szálmegvalósítása van.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "A nem alvó szálak száma." @@ -10593,6 +10586,11 @@ msgstr "NÉZET neve" msgid "Rename view to" msgstr "Nézet átnevezése" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "másodperc" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "lekérdezések futási idejének összehasonlítása (mikromásodpercekben)" diff --git a/po/id.po b/po/id.po index d3cea00491..88a73389ab 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-04-16 22:04+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" @@ -84,7 +84,7 @@ msgstr "Nama Kunci" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Deskripsi" @@ -271,7 +271,7 @@ msgstr "Database %s telah disalin ke %s" msgid "Rename database to" msgstr "Ubah nama database menjadi" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Perintah" @@ -622,7 +622,7 @@ msgstr "Gambarkan" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Tiruan" @@ -733,7 +733,7 @@ msgstr "Tabel-tabel yang dilacak" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -751,7 +751,7 @@ msgstr "Dibuat" msgid "Updated" msgstr "Diperbarui" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1065,17 +1065,17 @@ msgstr "Tutup" msgid "Edit" msgstr "Ubah" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Pilihan Server" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "Pencarian SQL" @@ -1087,13 +1087,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Jumlah" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1125,7 +1125,7 @@ msgstr "Pilihan Server" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Proses Aktif" @@ -1144,7 +1144,7 @@ msgstr "" msgid "Issued queries" msgstr "Pencarian SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Statistik query" @@ -1968,7 +1968,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabel" @@ -2100,7 +2100,7 @@ msgid "Documentation" msgstr "Dokumentasi" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "Pencarian SQL" @@ -2129,7 +2129,7 @@ msgid "Create PHP Code" msgstr "Ciptakan kode PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Menyegarkan" @@ -4816,7 +4816,7 @@ msgstr "Kompresi" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "tanpa" @@ -5067,7 +5067,7 @@ msgid "The row has been deleted" msgstr "Baris telah dihapus" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Tutup" @@ -5160,7 +5160,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Penampungan Buffer" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Status dari InnoDB" @@ -5648,7 +5648,7 @@ msgstr "Tipe MIME yang tersedia" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Host" @@ -6353,13 +6353,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Nilai" @@ -6600,12 +6600,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Log binari" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variabel" @@ -6905,7 +6905,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Menambahkan pengguna baru" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Jangka Waktu" @@ -7132,7 +7132,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Pengguna" @@ -7606,18 +7606,18 @@ msgstr "Tabel \"%s\" tidak ditemukan!" msgid "Select binary log to view" msgstr "Pilih Log binari untuk ditinjau" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "Field" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Potongkan pencarian yang ditampilkan" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Tampilkan pencarian yang lengkap" @@ -8161,7 +8161,7 @@ msgstr "Sukses reload Hak Istimewa (Privileges)." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8300,12 +8300,32 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Menyegarkan" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Menit" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Detik" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Sukses hentikan Thread %s." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8313,249 +8333,220 @@ msgstr "" "phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah " "ditutup terlebih dahulu" -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 #, fuzzy msgid "Query cache" msgstr "Tipe Pencarian" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "Gunakan perintah INSERT memperlambat" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Koordinator transaksi" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 #, fuzzy msgid "Show open tables" msgstr "Tampilkan tabel" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Informasi Runtime" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Pilihan Server" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Menyegarkan" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Detik" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Detik" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "Menit" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Jangan ubah Kata Sandi" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "Tampilkan tabel" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Tabel Relasi" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "dalam sejam" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "per menit" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "per detik" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Tipe Pencarian" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" "MySQL server ini telah berjalan secara berturut-turut selama %s. Server " "dijalankan pada tanggal %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Lalu-Lintas" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Penerimaan" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Pengiriman" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Koneksi" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Gagal" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Pembatalan" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8563,78 +8554,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8642,7 +8633,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8650,42 +8641,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8693,33 +8684,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8728,227 +8719,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8956,99 +8947,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9056,18 +9047,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9075,7 +9066,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10217,6 +10208,11 @@ msgstr "Nama VIEW" msgid "Rename view to" msgstr "Ubah nama tabel menjadi " +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Detik" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Perbandingan waktu eksekusi query (dalam mikrodetik)" diff --git a/po/it.po b/po/it.po index 8a1ae45762..88bd6e4a50 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-05-25 22:43+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" @@ -85,7 +85,7 @@ msgstr "Chiave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Descrizione" @@ -272,7 +272,7 @@ msgstr "Il database %s è stato copiato a %s" msgid "Rename database to" msgstr "Rinomina il database a" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Comando" @@ -626,7 +626,7 @@ msgstr "Vista" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replicazione" @@ -733,7 +733,7 @@ msgstr "Tabelle monitorate" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -751,7 +751,7 @@ msgstr "Creato" msgid "Updated" msgstr "Aggiornato" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stato" @@ -1065,17 +1065,17 @@ msgstr "Chiudi" msgid "Edit" msgstr "Modifica" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Scelta del server" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -1088,13 +1088,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Totale" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1126,7 +1126,7 @@ msgstr "Scelta del server" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Processi" @@ -1146,7 +1146,7 @@ msgstr "" msgid "Issued queries" msgstr "Query SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Statistiche query" @@ -1964,7 +1964,7 @@ msgstr "condiviso" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabelle" @@ -2097,7 +2097,7 @@ msgid "Documentation" msgstr "Documentazione" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "Query SQL" @@ -2126,7 +2126,7 @@ msgid "Create PHP Code" msgstr "Crea il codice PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Aggiorna" @@ -4925,7 +4925,7 @@ msgstr "Compressione:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Nessuno" @@ -5165,7 +5165,7 @@ msgid "The row has been deleted" msgstr "La riga è stata cancellata" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Rimuovi" @@ -5255,7 +5255,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Stato InnoDB" @@ -5767,7 +5767,7 @@ msgstr "Mostra tipi MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Host" @@ -6489,13 +6489,13 @@ msgid "Slave status" msgstr "Stato slave" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variabile" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valore" @@ -6724,12 +6724,12 @@ msgid "Synchronize" msgstr "Sincronizza" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Log binario" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variabili" @@ -7014,7 +7014,7 @@ msgstr "Definizione PARTITION" msgid "+ Add a new value" msgstr "+ Aggiungi un nuovo valore" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Tempo" @@ -7218,7 +7218,7 @@ msgid "Protocol version" msgstr "Versione protocollo" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Utente" @@ -7671,17 +7671,17 @@ msgstr "Il file non esiste" msgid "Select binary log to view" msgstr "Selezionare il log binario da visualizzare" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "File" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Tronca le Query Mostrate" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Mostra query complete" @@ -8213,7 +8213,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Questo server é configurato come master in un processo di replicazione." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Mostra lo stato del master" @@ -8362,12 +8362,34 @@ msgstr "" "Questo server non é configurato come slave in un processo di replicazione. " "Vorresti configurarlo ora?" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Aggiorna" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minuto" +msgstr[1] "Minuto" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Secondo" +msgstr[1] "Secondo" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Il thread %s è stato terminato con successo." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8375,162 +8397,133 @@ msgstr "" "phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già " "stato terminato." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Handler" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Cache delle query" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Processi" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Dati temporanei" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Inserimento ritardato" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Key cache" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Joins" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Ordinando" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Coordinatore delle transazioni" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Rinfresca (chiudi) tutte le tabelle" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Mostra le tabelle aperte" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Mostra gli hosts slave" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Mostra lo stato degli slave" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Rinfresca la cache delle query" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Informazioni di Runtime" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Scelta del server" -#: server_status.php:387 +#: server_status.php:402 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Vedi la tabella di stato dello slave" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Aggiorna" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Secondo" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Secondo" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "Minuto" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Non cambiare la password" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Mostra le tabelle aperte" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "Collegamenti Associati" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "all'ora" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "al minuto" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "al secondo" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Tipo di query" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Questo server MySQL sta girando da %s. É stato avviato il %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8538,19 +8531,19 @@ msgstr "" "Questo server MySQL funziona come un master e slave nel " "processo di replicazione." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Questo server MySQL funziona come un master nel processo di " "replicazione." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Questo server MySQL funziona come un slave nel processo di " "replicazione." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8558,15 +8551,15 @@ msgstr "" "Per ulteriori informazioni a riguardo lo stato di replicazione su questo " "server, prego vedi la seztione sulla replicazione." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Stato di replicazione" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Traffico" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8575,41 +8568,41 @@ msgstr "" "e per questa ragione le statistiche riportate dal server MySQL potrebbero " "non essere corrette." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Ricevuti" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Spediti" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Connessioni" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "max. connessioni contemporanee" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Tentativi falliti" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Fallito" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Impossibile effettuare la connessione al server MySQL" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8619,17 +8612,17 @@ msgstr "" "ma che oltrepassano il valore di binlog_cache_size e usano un file " "temporaneo per salvare gli statements dalle transazioni." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Il numero delle transazioni che usano la cache temporanea del log binario." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8641,11 +8634,11 @@ msgstr "" "grande, potresti voler aumentare il valore tmp_table_size, per fare im modo " "che le tabelle temporanee siano memory-based anzichè disk-based." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Numero di file temporanei che mysqld ha creato." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8653,7 +8646,7 @@ msgstr "" "Il numero di tabelle temporanee create automaticamente in memoria dal server " "durante l'esecuzione dei comandi." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8661,7 +8654,7 @@ msgstr "" "Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori " "(probabilmete chiave dublicata)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8669,23 +8662,23 @@ msgstr "" "Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato " "INSERT DELAYED occupa un thread." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Il numero di righe INSERT DELAYED scritte." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Il numero di comandi FLUSH eseguiti." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Il numero di comandi interni COMMIT eseguiti." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Il numero di volte in cui una riga è stata cancellata da una tabella." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8695,7 +8688,7 @@ msgstr "" "tabella sulla base di un nome dato. Questo è chaiamto discovery. " "Handler_discover indica il numero di volte che una tabella è stata trovata." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8706,7 +8699,7 @@ msgstr "" "degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia " "indicizzata." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8715,7 +8708,7 @@ msgstr "" "alta, è un buon indice che le tue query e le tue tabelle sono correttamente " "indicizzate." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8726,7 +8719,7 @@ msgstr "" "colonna indice con un range costante, oppure se stai facendo una scansione " "degli indici." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8735,7 +8728,7 @@ msgstr "" "chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare " "ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8748,7 +8741,7 @@ msgstr "" "MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano le " "chiavi correttamente." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8761,37 +8754,37 @@ msgstr "" "indicizzate, o che le query non sono state scritte per trarre vantaggi dagli " "indici che hai." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Il numero di comandi ROLLBACK interni." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Il numero di richieste per aggiornare una riga in una tabella." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Il numero di richieste per inserire una riga in una tabella." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Il numero di pagine che contengono dati (sporchi o puliti)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Il numero di pagine attualmente sporche." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Il numero di buffer pool pages che hanno avuto richiesta di essere " "aggiornate." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Il numero di pagine libere." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8801,7 +8794,7 @@ msgstr "" "attualmente in lettura o in scittura e non possono essere aggiornate o " "rimosse per altre ragioni." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8813,11 +8806,11 @@ msgstr "" "come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Il numero totale di buffer pool, in pagine." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8825,7 +8818,7 @@ msgstr "" "Il numero di read-aheads \"random\" InnoDB iniziate. Questo accade quando " "una query legge una porzione di una tabella, ma in ordine casuale." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8833,11 +8826,11 @@ msgstr "" "Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB " "esegue una scansione completa sequenziale di una tabella." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Il numero di richieste logiche che InnoDb ha fatto." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8845,7 +8838,7 @@ msgstr "" "Il numero di richieste logiche che InnoDB non può soddisfare dal buffer pool " "e che devono fare una lettura di una pagina singola." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8860,55 +8853,55 @@ msgstr "" "dimesione del buffer pool è stata settata correttamente questo valore " "dovrebbe essere basso." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Il numero di scritture effettuate nel buffer pool InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Il numero delle operazioni fsync() fino ad ora." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Il numero di operazioni fsync() in attesa." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Il numero di letture in attesa." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Il numero di scritture in attesa." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "La quantità di dati letti fino ad ora, in bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Il numero totale di dati letti." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Il numero totale di dati scritti." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "La quantità di dati scritti fino ad ora, in bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8916,35 +8909,35 @@ msgstr "" "Il numero di attese che abbiamo avuto perchè il buffer di log era troppo " "piccolo e abbiamo duvuto attendere che fosse aggiornato prima di continuare." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Il numero di richieste di scrittura dei log." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Il numero scritture fisiche del log file." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Il numero di scritture effettuate da fsync() sul log file." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Il numero degli fsyncs in sospeso sul log file." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Il numero di scritture in sospeso sul log file." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Il numero di bytes scritti sul log file." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Il numero di pagine create." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8953,51 +8946,51 @@ msgstr "" "valori sono conteggiati nelle pagine; la dimesione delle pagine permette di " "convertirli facilmente in bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Il numero di pagine lette." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Il numero di pagine scritte." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Il numero di row locks attualmente in attesa." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Il tempo medio per l'acquisizione di un row lock, in millisecondi." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Il tempo totale per l'acquisizione di un row locks, in millisecondi." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Il tempo massimo per l'acquisizione di un row lock, in millisecondi." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Il numero di volte che un row lock ha dovuto attendere." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Il numero di righe cancellate da una tabella InnoDB." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Il numero di righe inserite da una tabella InnoDB." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Il numero di righe lette da una tabella InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Il numero di righe aggiornate da una tabella InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9006,7 +8999,7 @@ msgstr "" "cambiati, ma che non sono stai aggiornati su disco. É conosciuto con il nome " "di Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9014,7 +9007,7 @@ msgstr "" "Il numero di blocchi non usati nella cache chiave. Puoi usare questo valore " "per determinare quanta cache chiave è in uso." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9024,11 +9017,11 @@ msgstr "" "segnale che indica il numero massimo di blocchi che sono stati in uso " "contemporaneamente." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Il numero di richieste per le ggere un blocco chiave dalla cache." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9039,15 +9032,15 @@ msgstr "" "rapporto di cache miss rate può essere calcolato come Key_reads/" "Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Il numero di richieste per scrivere una blocco chiave nella cache." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Il numero di scritture fisiche di un blocco chiave sul disco." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9058,18 +9051,18 @@ msgstr "" "query per la stessa operazione di query. Il valore di default è 0, che " "significa che nessuna query è stata ancora compilata." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "In numero di righe in attesa di essere scritte nella coda INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9077,39 +9070,39 @@ msgstr "" "Il numero di tabelle che sono state aperte. Se il valore opened_tables è " "grande, probabilmente il valore di table cache è troppo piccolo." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Il numero di file che sono aperti." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Il numero di stream che sono aperti (usato principalmente per il logging)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Il numero di tabelle che sono aperte." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "L'ammontare di memoria libera nella cache delle query." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Il numero di cache hits." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Il numero di query aggiunte alla cache." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9122,7 +9115,7 @@ msgstr "" "una strategia di \"meno usate recentemente\" (LRU - least recently used) per " "decidere quali query rimuovere dalla cache." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9130,19 +9123,19 @@ msgstr "" "Il numero di query non in cache (impossibilità di inserirle nella cache " "oppure non inserite per i settaggi del parametro query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Il numero di query registrate nella cache." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Il numero totale di blocchi nella cache delle query." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Lo sato delle repliche failsafe (non ancora implementato)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9150,13 +9143,13 @@ msgstr "" "Il numero di joins che non usano gli indici. Se questo valore non è 0, " "dovresti controllare attentamente gli indici delle tue tabelle." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Il numero di joins che usano una ricerca limitata su di una tabella di " "riferimento." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9165,7 +9158,7 @@ msgstr "" "ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli " "indici delle tue tabelle.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9173,17 +9166,17 @@ msgstr "" "Il numero di joins che usano un range sulla prima tabella. (Non è, " "solitamente, un valore critico anche se è grande.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" "Il numero di join che hanno effettuato una scansione completa della prima " "tabella." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Il numero di tabelle temporaneamente aperte da processi SQL slave." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9191,12 +9184,12 @@ msgstr "" "Numero totale di volte (dalla partenza) in cui la replica slave SQL ha " "ritentato una transazione." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Questa chiave è ON se questo è un server slave connesso ad un server master." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9204,12 +9197,12 @@ msgstr "" "Numero di processi che hanno impiegato più di slow_launch_time secondi per " "partire." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Numero di query che hanno impiegato più di long_query_time secondi." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9219,23 +9212,23 @@ msgstr "" "fatte. Se questo valore è grande, dovresti incrementare la variabile di " "sistema sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Il numero di ordinamenti che sono stati eseguiti in un intervallo." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Il numero di righe ordinate." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Il numero di ordinamenti che sono stati fatti leggendo la tabella." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Il numero di volte che un table lock è stato eseguito immediatamente." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9247,7 +9240,7 @@ msgstr "" "performance, dovresti prima ottimizzare le query, oppure sia utilizzare le " "repliche, sia dividere le tabelle." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9257,11 +9250,11 @@ msgstr "" "essere calcolato come processi_creati/connessioni. Se questo valore è rosso " "devi aumentare la tua thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Il numero di connessioni correntemente aperte." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9273,7 +9266,7 @@ msgstr "" "(Normalmente questo non fornisce un significatico incremento delle " "performace se hai una buona implementazione dei processi.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Il numero di processi non in attesa." @@ -10448,6 +10441,11 @@ msgstr "Nome VISTA" msgid "Rename view to" msgstr "Rinomina la vista in" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Secondo" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Rapporto tempo esecuzione query (in microsecondi)" diff --git a/po/ja.po b/po/ja.po index bb62e3d813..f12957d381 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-15 12:47+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" @@ -84,7 +84,7 @@ msgstr "キー名" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "説明" @@ -271,7 +271,7 @@ msgstr "データベース %s を %s にコピーしました" msgid "Rename database to" msgstr "新しいデータベース名" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "コマンド" @@ -620,7 +620,7 @@ msgstr "ビュー" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "レプリケーション" @@ -727,7 +727,7 @@ msgstr "SQL コマンドを追跡しているテーブル" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -745,7 +745,7 @@ msgstr "作成日時" msgid "Updated" msgstr "更新日時" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "状態" @@ -1055,15 +1055,15 @@ msgstr "閉じる" msgid "Edit" msgstr "編集" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "リアルタイムでのトラフィックグラフ" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -1076,13 +1076,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "合計" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1114,7 +1114,7 @@ msgstr "サーバのトラフィック" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "プロセス" @@ -1134,7 +1134,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL クエリ" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "クエリの統計" @@ -1937,7 +1937,7 @@ msgstr "共有" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "テーブル" @@ -2067,7 +2067,7 @@ msgid "Documentation" msgstr "ドキュメント" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "実行した SQL" @@ -2096,7 +2096,7 @@ msgid "Create PHP Code" msgstr "PHP コードの作成" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "再描画" @@ -4818,7 +4818,7 @@ msgstr "圧縮:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "なし" @@ -5056,7 +5056,7 @@ msgid "The row has been deleted" msgstr "行を削除しました" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "停止" @@ -5146,7 +5146,7 @@ msgstr "" msgid "Buffer Pool" msgstr "バッファプール" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB ステータス" @@ -5643,7 +5643,7 @@ msgstr "MIME タイプの表示" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "ホスト" @@ -6347,13 +6347,13 @@ msgid "Slave status" msgstr "スレーブステータス" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "変数" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "値" @@ -6582,12 +6582,12 @@ msgid "Synchronize" msgstr "同期" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "バイナリログ" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "変数" @@ -6867,7 +6867,7 @@ msgstr "パーティションの定義" msgid "+ Add a new value" msgstr "+ 新しい値を追加する" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "時間" @@ -7062,7 +7062,7 @@ msgid "Protocol version" msgstr "プロトコルバージョン" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "ユーザ" @@ -7514,17 +7514,17 @@ msgstr "ファイルが存在しません" msgid "Select binary log to view" msgstr "表示するバイナリログを選択してください" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "ファイル" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "クエリの表示を切り詰める" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "クエリ全体を表示" @@ -8040,7 +8040,7 @@ msgstr "マスタサーバを %s へ切り替えるのに成功しました。" msgid "This server is configured as master in a replication process." msgstr "このサーバのレプリケーションプロセスに、マスタが設定されています。" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "マスタステータスの表示" @@ -8192,157 +8192,154 @@ msgstr "" "このサーバのレプリケーションプロセスには、スレーブが設定されていません。設定を行いますか?" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "再描画間隔" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "minutes" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "分" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "秒" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "スレッド %s は正常終了しました" -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです" -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "ハンドラ" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "クエリキャッシュ" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "スレッド" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "一時データ" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "遅延インサート" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "キーキャッシュ" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "結合" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "ソート中" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "トランザクションコーディネータ" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "すべてのテーブルをフラッシュする(閉じる)" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "開いているテーブルを表示する" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "スレーブホストを表示する" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "スレーブの状態を表示する" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "クエリキャッシュをフラッシュする" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "ランタイム情報" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "サーバのトラフィック" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "全ての状態変数" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "再描画間隔" - -#: server_status.php:398 server_status.php:431 -msgid "second" -msgstr "秒" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -msgid "seconds" -msgstr "秒" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -msgid "minutes" -msgstr "分" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "含まれている文字:" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "警告値のみ表示する" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "種別によるフィルタ..." -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "関連リンク" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "/時" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "/分" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "/秒" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "クエリ種別" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "起動してからのネットワークトラフィック:%s" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "この MySQL サーバの稼働時間: %s (起動時刻: %s)" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8350,19 +8347,19 @@ msgstr "" "この MySQL サーバは、レプリケーションプロセスのマスタス" "レーブとして動作しています。" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "この MySQL サーバは、レプリケーションプロセスのマスタとして動作" "しています。" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "この MySQL サーバは、レプリケーションプロセスのスレーブとして動" "作しています。" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8370,15 +8367,15 @@ msgstr "" "サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "レプリケーションステータス" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "トラフィック" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8386,39 +8383,39 @@ msgstr "" "処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ" "が報告してくる統計は不正確なことがあります" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "受信済" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "送信済" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "接続" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "最大同時接続数" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "失敗回数" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "中断" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL サーバへの接続を試みて失敗した回数。" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8427,16 +8424,16 @@ msgstr "" "一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた" "め一時ファイルにステートメントを保存したトランザクション数" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "一時バイナリログキャッシュを使用したトランザクション数" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL サーバへの接続試行回数(成否に関わらず)。" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8447,24 +8444,24 @@ msgstr "" "Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ" "スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "mysqld が生成した一時ファイル数" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8472,23 +8469,23 @@ msgstr "" "使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ" "ルの数だけ固有のスレッドが用意されます" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED で書き込まれた行数" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "FLUSH 文の実行回数" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "内部で COMMIT 文を実行した回数" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "テーブルから行を削除した回数" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8498,7 +8495,7 @@ msgstr "" "ての情報を持っているか問い合わせることができます。これを開示と言いますが、" "Handler_discover はその開示されたタイムテーブルの数です" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8508,7 +8505,7 @@ msgstr "" "もインデックスのフルスキャンを実行しているものと思われます。例えば SELECT " "col1 FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8516,7 +8513,7 @@ msgstr "" "キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ" "ルが適切にインデックスされているものと考えられます" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8525,7 +8522,7 @@ msgstr "" "キーの順序通りに次の行を読み込んだリクエストの数。この値はインデックス列のク" "エリに範囲指定をしているか、インデックススキャンを行っているときに増加します" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8533,7 +8530,7 @@ msgstr "" "キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER " "BY ... DESC の最適化に利用されます" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8545,7 +8542,7 @@ msgstr "" "キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に" "不適切なところがあります" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8556,36 +8553,36 @@ msgstr "" "キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適" "切か、クエリがインデックスを利用するように書かれていないことを意味します" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "内部で ROLLBACK 文を実行した回数" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "テーブル内の行を更新したリクエストの数" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "テーブル内に行を挿入したリクエストの数" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" "データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "現在のダーティページの数" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "フラッシュリクエストを受けたバッファプールのページ数" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "空きページ数" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8595,7 +8592,7 @@ msgstr "" "るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し" "たりできなくなっているページの数です" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8607,11 +8604,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計" "算できます" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "ページのバッファプールサイズの合計" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8619,7 +8616,7 @@ msgstr "" "InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン" "ダムな順番でスキャンするときに発生します" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8627,11 +8624,11 @@ msgstr "" "InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル" "なフルテーブルスキャンを行うときに発生します" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB が実行した論理読み込みリクエストの数" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8639,7 +8636,7 @@ msgstr "" "InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ" "ばならなかった論理読み込みの回数" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8653,51 +8650,51 @@ msgstr "" "そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され" "ていれば、この値は小さいはずです" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB バッファプールへの書き込み回数" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "これまでに fsync() を実行した回数" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "現在保留されている fsync() の回数" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "現在保留されている読み込みの数" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "現在保留されている書き込みの数" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "これまでのデータ読み込み量 (単位:バイト)" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "データ読み込み回数の合計" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "データ書き込み回数の合計" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "これまでのデータの書き込み量 (単位:バイト)" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8705,35 +8702,35 @@ msgstr "" "ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生" "したウェイトの回数" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "ログ書き込みリクエストの数" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "ログファイルへの物理書き込みの回数" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "ログファイルへの fsync 書き込みの回数" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "保留中のログファイルへの fsync 回数" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "保留中のログファイルへの書き込み回数" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "ログファイルに書き込んだバイト数" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "作成されたページ数" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8741,51 +8738,51 @@ msgstr "" "コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位" "で計算されますが、この値を使えば簡単にバイト単位に変換できます" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "読み込んだページ数" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "書き込んだページ数" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "現在待機中の行ロックの数" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要する平均時間 (単位:ミリ秒)" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "行ロック取得時に待機した回数" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB テーブルから削除した行数" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB テーブルに挿入した行数" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB テーブルから読み込んだ行数" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB テーブルで更新された行数" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8793,7 +8790,7 @@ msgstr "" "変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの" "数。以前は Not_flushed_key_blocks でした" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8801,7 +8798,7 @@ msgstr "" "キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え" "ます" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8810,11 +8807,11 @@ msgstr "" "キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ" "クの最大数です" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "キャッシュからキーブロックを読み込んだリクエストの数" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8824,15 +8821,15 @@ msgstr "" "く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/" "Key_read_requests で計算できます" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "キャッシュにキーブロックを書き込んだリクエストの数" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "ディスクにキーブロックを物理書き込みした回数" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8842,17 +8839,17 @@ msgstr "" "クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ" "フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "サーバが起動してからの同時接続の最大数。" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8860,19 +8857,19 @@ msgstr "" "開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ" "シュの値が小さすぎます" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "開いているファイルの数" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "開いているストリームの数 (主にログの記録用です)" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "開いているテーブルの数" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -8882,19 +8879,19 @@ msgstr "" "ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解決でき" "るかもしれません。" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "クエリキャッシュの空きメモリ量" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "キャッシュのヒット数" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "キャッシュに追加されたクエリの数" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8906,7 +8903,7 @@ msgstr "" "エリキャッシュは最後に使われた時刻が最も古いものから削除する(LRU)戦略に従って" "削除するクエリを決めます" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8914,19 +8911,19 @@ msgstr "" "キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ" "シュしないことになっている) クエリの数" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "キャッシュに登録されているクエリの数" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "クエリキャッシュの総ブロック数" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "フェイルセーフレプリケーションの状態 (未実装)" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8934,11 +8931,11 @@ msgstr "" "インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン" "デックスをよく確認してください" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "参照テーブルで範囲検索をした結合の数" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8946,7 +8943,7 @@ msgstr "" "キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数" "(0 でない場合はテーブルのインデックスをよく確認してください)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8954,15 +8951,15 @@ msgstr "" "最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ" "ん)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "最初のテーブルをフルスキャンした結合の数" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8970,22 +8967,22 @@ msgstr "" "レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起" "動時からの合計)" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "このサーバがマスタに接続するスレーブである場合は ON になります" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8994,23 +8991,23 @@ msgstr "" "ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合" "は sort_buffer_size システム変数の値を増やした方がよいでしょう" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "範囲指定付きでソートが行われた回数" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "ソート済の行数" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "テーブルをスキャンしたときに実行されたソートの回数" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "テーブルロックをすぐに取得できた回数" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9021,7 +9018,7 @@ msgstr "" "フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで" "もだめならテーブルを分割するか、レプリケーションを利用してください" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9031,11 +9028,11 @@ msgstr "" "Connections で計算できます。この値が赤くなっている場合は thread_cache_size を" "大きくしてください" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "現在開いている接続の数" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9046,7 +9043,7 @@ msgstr "" "thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題" "がない場合はふつうあまりパフォーマンスは向上しません)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "スリープしていないスレッドの数" @@ -10193,6 +10190,9 @@ msgstr "ビューの名前" msgid "Rename view to" msgstr "リネーム後のビューの名前" +#~ msgid "seconds" +#~ msgstr "秒" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "クエリの実行時間の比較(マイクロ秒)" diff --git a/po/ka.po b/po/ka.po index fccd763c8c..0c871c38df 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" @@ -83,7 +83,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "აღწერილობა" @@ -272,7 +272,7 @@ msgstr "Database %s has been copied to %s" msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "ბრძანება" @@ -646,7 +646,7 @@ msgstr "ხედო" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "რეპლიკაცია" @@ -759,7 +759,7 @@ msgstr "დაბლოკილი ცხრილების გამოტ #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -779,7 +779,7 @@ msgstr "შექმნა" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "მდგომარეობა" @@ -1101,17 +1101,17 @@ msgstr "" msgid "Edit" msgstr "რედაქტირება" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "სერვერის არჩევა" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -1124,13 +1124,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "სულ" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1162,7 +1162,7 @@ msgstr "სერვერის არჩევა" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "პროცესები" @@ -1182,7 +1182,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL მოთხოვნები" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -2097,7 +2097,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "ცხრილები" @@ -2235,7 +2235,7 @@ msgid "Documentation" msgstr "დოკუმენტაცია" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL მოთხოვნა" @@ -2266,7 +2266,7 @@ msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "განახლება" @@ -5157,7 +5157,7 @@ msgstr "შეკუმშვა" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "არაა" @@ -5419,7 +5419,7 @@ msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Kill" @@ -5512,7 +5512,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB-ის მდგომარეობა" @@ -6034,7 +6034,7 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "ჰოსტი" @@ -6742,13 +6742,13 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "ცვლადი" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "მნიშვნელობა" @@ -6991,12 +6991,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "ბინარული ჟურნალი" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "ცვლადები" @@ -7296,7 +7296,7 @@ msgstr "PARTITION definition" msgid "+ Add a new value" msgstr "ახალი სერვერის დამატება" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "დრო" @@ -7542,7 +7542,7 @@ msgid "Protocol version" msgstr "ოქმის ვერსია" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "მომხმარებელი" @@ -8044,17 +8044,17 @@ msgstr "ცხრილი \"%s\" არ არსებობს!" msgid "Select binary log to view" msgstr "აირჩიეთ საჩვენებელი ორობითი ჟურნალი" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "ფაილები" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -8585,7 +8585,7 @@ msgstr "The privileges were reloaded successfully." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 #, fuzzy msgid "Show master status" msgstr "Show slave status" @@ -8728,201 +8728,194 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Thread %s was successfully killed." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." - -#: server_status.php:248 -msgid "Handler" -msgstr "Handler" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Query cache" - -#: server_status.php:250 -msgid "Threads" -msgstr "Threads" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "დროებითი მონაცემები" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Delayed inserts" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Key cache" - -#: server_status.php:255 -msgid "Joins" -msgstr "Joins" - -#: server_status.php:257 -msgid "Sorting" -msgstr "დალაგება" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Transaction coordinator" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "Flush (close) all tables" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Show open tables" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "Show slave hosts" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "Show slave status" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "Flush query cache" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "Runtime Information" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "სერვერის არჩევა" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "განახლება" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "წამში" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "წამში" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "in use" -msgid "minutes" -msgstr "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "in use" +msgstr[1] "in use" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "წამში" +msgstr[1] "წამში" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Thread %s was successfully killed." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." + +#: server_status.php:263 +msgid "Handler" +msgstr "Handler" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Query cache" + +#: server_status.php:265 +msgid "Threads" +msgstr "Threads" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "დროებითი მონაცემები" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Delayed inserts" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Key cache" + +#: server_status.php:270 +msgid "Joins" +msgstr "Joins" + +#: server_status.php:272 +msgid "Sorting" +msgstr "დალაგება" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Transaction coordinator" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "Flush (close) all tables" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Show open tables" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "Show slave hosts" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "Show slave status" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "Flush query cache" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "Runtime Information" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "სერვერის არჩევა" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "არ შეცვალო პაროლი" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Show open tables" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "საათში" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "წუთში" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "წამში" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "მოთხოვნის ტიპი" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL სერვერის მუშაობის პერიოდი - %s. გაშვების დრო - %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 #, fuzzy msgid "Replication status" msgstr "რეპლიკაცია" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "ტრაფიკი" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8930,41 +8923,41 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "მიღებულია" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "გაიგზავნა" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "კავშირები" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Failed attempts" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "შეწყვეტილია" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8974,16 +8967,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8995,11 +8988,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9007,7 +9000,7 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9015,7 +9008,7 @@ msgstr "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9023,23 +9016,23 @@ msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -9049,96 +9042,96 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." +#: server_status.php:863 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: server_status.php:864 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: server_status.php:865 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: server_status.php:866 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + +#: server_status.php:867 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + #: server_status.php:868 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." #: server_status.php:869 -msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." -msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." - -#: server_status.php:870 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: server_status.php:871 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." - -#: server_status.php:872 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - -#: server_status.php:873 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "The number of free pages." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -9148,7 +9141,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9160,11 +9153,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -9172,7 +9165,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9180,11 +9173,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9192,7 +9185,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9206,51 +9199,51 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "The number of pages that have been written for doublewrite operations." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9258,35 +9251,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsync() writes done to the log file." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9294,51 +9287,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9346,7 +9339,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9354,7 +9347,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9364,11 +9357,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9378,15 +9371,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9396,17 +9389,17 @@ msgstr "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9414,38 +9407,38 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9457,7 +9450,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9465,19 +9458,19 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9485,11 +9478,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9497,7 +9490,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9505,15 +9498,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9521,11 +9514,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9533,13 +9526,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "The number of queries that have taken more than long_query_time seconds." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9549,23 +9542,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9577,7 +9570,7 @@ msgstr "" "should first optimize your queries, and then either split your table or " "tables or use replication." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9587,11 +9580,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9603,7 +9596,7 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." @@ -10855,6 +10848,11 @@ msgstr "VIEW name" msgid "Rename view to" msgstr "Rename table to" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "წამში" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/ko.po b/po/ko.po index 6e7eaed6a8..98112d774a 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" @@ -83,7 +83,7 @@ msgstr "키 이름" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "설명" @@ -270,7 +270,7 @@ msgstr "데이터베이스 %s 를 %s 로 복사하였습니다." msgid "Rename database to" msgstr "데이터베이스 이름 변경" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "커맨드" @@ -630,7 +630,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "" @@ -741,7 +741,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -760,7 +760,7 @@ msgstr " 만들기 " msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "상태" @@ -1072,17 +1072,17 @@ msgstr "" msgid "Edit" msgstr "수정" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "서버 선택" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL 질의" @@ -1094,13 +1094,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "전체 사용량" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1132,7 +1132,7 @@ msgstr "서버 선택" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "프로세스 목록" @@ -1151,7 +1151,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL 질의" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "행(레코드) 통계" @@ -1983,7 +1983,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "테이블 수" @@ -2113,7 +2113,7 @@ msgid "Documentation" msgstr "문서" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL 질의" @@ -2142,7 +2142,7 @@ msgid "Create PHP Code" msgstr "PHP 코드 보기" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4825,7 +4825,7 @@ msgstr "압축" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "없음" @@ -5071,7 +5071,7 @@ msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Kill" @@ -5161,7 +5161,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "" @@ -5619,7 +5619,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "호스트" @@ -6312,13 +6312,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "변수" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "값" @@ -6556,13 +6556,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "바이너리" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "환경설정값" @@ -6843,7 +6843,7 @@ msgstr "" msgid "+ Add a new value" msgstr "새 사용자 추가" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "시간" @@ -6999,7 +6999,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "사용자" @@ -7455,18 +7455,18 @@ msgstr "\"%s\" 테이블이 존재하지 않습니다!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "필드" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "" @@ -7993,7 +7993,7 @@ msgstr "권한을 다시 로딩했습니다." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8132,254 +8132,245 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "분" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "초" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "쓰레드 %s 를 죽였습니다." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 #, fuzzy msgid "Query cache" msgstr "질의 종류" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "확장된 inserts" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 #, fuzzy msgid "Show open tables" msgstr "테이블 보기" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "런타임 정보" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "서버 선택" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "초" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "초" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "분" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "암호를 변경하지 않음" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "테이블 보기" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy msgid "Related links:" msgstr "테이블 작업" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "질의 종류" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" "이 MySQL 서버는 %s 동안 구동되었습니다.
구동 시작날짜는 %s 입니다." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "소통량" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "받음" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "보냄" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "연결 수" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "실패한 시도" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8387,78 +8378,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8466,7 +8457,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8474,42 +8465,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8517,33 +8508,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8552,227 +8543,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8780,99 +8771,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8880,18 +8871,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8899,7 +8890,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10027,6 +10018,11 @@ msgstr "" msgid "Rename view to" msgstr "테이블 이름 바꾸기" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "초" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/lt.po b/po/lt.po index eb450c8720..ceed2f9eda 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-04-05 15:52+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" @@ -84,7 +84,7 @@ msgstr "Indekso pavadinimas" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Paaiškinimas" @@ -271,7 +271,7 @@ msgstr "Duomenų bazė %s buvo nukopijuota į %s" msgid "Rename database to" msgstr "Pervadinti duomenų bazę į" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Komanda" @@ -627,7 +627,7 @@ msgstr "Rodinys" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikavimas" @@ -740,7 +740,7 @@ msgstr "Sekamos lentelės" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -758,7 +758,7 @@ msgstr "Sukurta" msgid "Updated" msgstr "Atnaujinta" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Būsena" @@ -1070,17 +1070,17 @@ msgstr "Uždaryti" msgid "Edit" msgstr "Redaguoti" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Pasirinkti serverį" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query box" msgid "Live query chart" @@ -1093,13 +1093,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Iš viso" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1131,7 +1131,7 @@ msgstr "Pasirinkti serverį" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Procesai" @@ -1151,7 +1151,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL užklausos" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Užklausų statistika" @@ -1974,7 +1974,7 @@ msgstr "padalintas" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Lentelės" @@ -2105,7 +2105,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL užklausa" @@ -2134,7 +2134,7 @@ msgid "Create PHP Code" msgstr "PHP kodas" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Atnaujinti" @@ -4825,7 +4825,7 @@ msgstr "Glaudinti:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Ne" @@ -5062,7 +5062,7 @@ msgid "The row has been deleted" msgstr "Eilutė buvo ištrinta" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Stabdyti procesą" @@ -5151,7 +5151,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buferio Pool'as" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB būsena" @@ -5611,7 +5611,7 @@ msgstr "Rodyti MIME-tipus" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Darbinė stotis" @@ -6334,13 +6334,13 @@ msgid "Slave status" msgstr "Pavaldžiojo serverio būklė (Slave status)" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Kintamasis" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Reikšmė" @@ -6569,12 +6569,12 @@ msgid "Synchronize" msgstr "Sinchronizuoti" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Dvejetainis log'as" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Kintamieji" @@ -6863,7 +6863,7 @@ msgstr "SKAIDINIO (PARTITION) apibrėžimas" msgid "+ Add a new value" msgstr "Pridėti naują serverį" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Laikas" @@ -7080,7 +7080,7 @@ msgid "Protocol version" msgstr "Protokolo versija" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Naudotojas" @@ -7551,17 +7551,17 @@ msgstr "Failo nėra" msgid "Select binary log to view" msgstr "Pasirinkti dvejetainį žurnalą (log) peržiūrai" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Failai" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Trumpinti rodomas užklausas" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Rodyti pilnas užklausas" @@ -8095,7 +8095,7 @@ msgstr "" "Šis serveris sukonfigūruotas kaip pagrindinis (master) daugintuvo " "(replication) procese." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Rodyti pagrindinio serverio būklę" @@ -8254,176 +8254,171 @@ msgstr "" "Serveris nesukonfigūruotas daugintuvo (replication) procese kaip pavaldusis " "(slave). Konfigūruoti!" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Atnaujinti" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minutė" +msgstr[1] "Minutė" +msgstr[2] "Minutė" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekundės" +msgstr[1] "Sekundės" +msgstr[2] "Sekundės" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Gija %s buvo sėkmingai išjungta." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin negalėjo išjungti %s proceso. Gali būti jog jis jau užbaigė darbą." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Užklausų saugykla" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Gijos" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Laikini duomenys" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "Naudoti užlaikytus įterpimus" -#: server_status.php:254 +#: server_status.php:269 #, fuzzy msgid "Key cache" msgstr "Užklausų saugykla" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Rūšiavimas" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Rodyti atidarytas lenteles" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Rodyti pavaldinio būklę" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Veikimo informacija" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Pasirinkti serverį" -#: server_status.php:387 +#: server_status.php:402 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Peržiūrėti pavaldžiojo serverio būklės lentelę" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Atnaujinti" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Sekundės" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Sekundės" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "Minutė" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nekeisti slaptažodžio" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Rodyti atidarytas lenteles" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Sąryšiai" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "per valandą" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "per minutę" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "per sekundę" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Užklausos tipas" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8431,19 +8426,19 @@ msgstr "" "Šis MySQL serveris veikia kaip pagrindinis ir kaip pavaldusis " "serveris dauginimo procese." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Šis MySQL serveris veikia kaip pagrindinis serveris dauginimo " "procese." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Šis MySQL serveris veikia kaip pavaldusis serveris dauginimo " "procese." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8451,71 +8446,71 @@ msgstr "" "Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Dauginimo būsena" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Apkrovimas" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Gauta" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Siųsta" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Prisijungimai" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "Daugiausia lygiagrečių prisijungimų" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Nepavykę bandymai" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Nutraukta" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nepavyko prisijungti prie MySQL serverio" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8523,78 +8518,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Kiek laikinųjų failų mysqld sukūrė." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Įvykdytų FLUSH užklausų skaičius." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Vidinių COMMIT užklausų skaičius." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8602,7 +8597,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8610,44 +8605,44 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Vidinių ROLLBACK užklausų skaičius." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 #, fuzzy msgid "The number of pages currently dirty." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 #, fuzzy msgid "The number of free pages." msgstr "Įkeltų eilučių skaičius" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8655,33 +8650,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8690,237 +8685,237 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 #, fuzzy msgid "The current number of pending fsync() operations." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:892 +#: server_status.php:887 #, fuzzy msgid "The current number of pending reads." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:893 +#: server_status.php:888 #, fuzzy msgid "The current number of pending writes." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 #, fuzzy msgid "The number of log write requests." msgstr "Įkeltų eilučių skaičius" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 #, fuzzy msgid "The number of pages created." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 #, fuzzy msgid "The number of pages read." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:910 +#: server_status.php:905 #, fuzzy msgid "The number of pages written." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 #, fuzzy msgid "The number of files that are open." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 #, fuzzy msgid "The number of tables that are open." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 #, fuzzy msgid "The number of cache hits." msgstr "Įkeltų eilučių skaičius" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8928,100 +8923,100 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 #, fuzzy msgid "The number of sorted rows." msgstr "Įkeltų eilučių skaičius" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9029,18 +9024,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9048,7 +9043,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10248,6 +10243,11 @@ msgstr "VIEW pavadinimas" msgid "Rename view to" msgstr "Pervadinti lentelę į" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Sekundės" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Užklausų vykdymo laiko palyginimas (milisekundėmis)" diff --git a/po/lv.po b/po/lv.po index 86b226d511..076dbdb184 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" @@ -83,7 +83,7 @@ msgstr "Atslēgas nosaukums" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Apraksts" @@ -270,7 +270,7 @@ msgstr "Datubāze %s tika pārkopēta uz %s" msgid "Rename database to" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Komanda" @@ -642,7 +642,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 #, fuzzy msgid "Replication" msgstr "Relācijas" @@ -754,7 +754,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -773,7 +773,7 @@ msgstr "Izveidot" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Statuss" @@ -1083,17 +1083,17 @@ msgstr "" msgid "Edit" msgstr "Labot" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Servera izvēle" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL vaicājums" @@ -1105,13 +1105,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Kopā" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1143,7 +1143,7 @@ msgstr "Servera izvēle" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Procesi" @@ -1162,7 +1162,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL vaicājums" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Rindas statistika" @@ -2046,7 +2046,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabulas" @@ -2179,7 +2179,7 @@ msgid "Documentation" msgstr "Dokumentācija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL vaicājums" @@ -2208,7 +2208,7 @@ msgid "Create PHP Code" msgstr "Izveidot PHP kodu" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Atjaunot" @@ -4890,7 +4890,7 @@ msgstr "Kompresija" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Nav" @@ -5139,7 +5139,7 @@ msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Nogalināt" @@ -5230,7 +5230,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB statuss" @@ -5702,7 +5702,7 @@ msgstr "Pieejamie MIME tipi" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Hosts" @@ -6402,13 +6402,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Mainīgais" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Vērtība" @@ -6649,12 +6649,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binārais log-fails" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Mainīgie" @@ -6952,7 +6952,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Pievienot jaunu lietotāju" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Laiks" @@ -7171,7 +7171,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Lietotājs" @@ -7632,18 +7632,18 @@ msgstr "Tabula \"%s\" neeksistē!" msgid "Select binary log to view" msgstr "Izvēlieties bināro log-failu apskatei" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "Lauki" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Ierobežot parādīto vaicājumu garumu" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Rādīt pilnos vaicājumus" @@ -8181,7 +8181,7 @@ msgstr "Privilēģijas tika veiksmīgi pārlādētas." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8320,12 +8320,34 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Atjaunot" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "lietošanā" +msgstr[1] "lietošanā" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "sekundē" +msgstr[1] "sekundē" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Process %s tika veiksmīgi nogalināts." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8333,246 +8355,217 @@ msgstr "" "phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika " "izbeigts." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 #, fuzzy msgid "Query cache" msgstr "Vaicājuma tips" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "Lietot aizturētos INSERT" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 #, fuzzy msgid "Show open tables" msgstr "Rādīt tabulas" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Izpildes laika informācija" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Servera izvēle" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Atjaunot" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "sekundē" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "sekundē" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "lietošanā" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nemainīt paroli" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "Rādīt tabulas" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relācijas" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "stundā" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "minūtē" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "sekundē" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Vaicājuma tips" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Šis MySQL serveris strādā %s. Tas tika palaists %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Datu apmaiņa" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Saņemts" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Nosūtīts" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Konekcijas" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Neveiksmīgi mēģinājumi" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Pārtraukts" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8580,78 +8573,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8659,7 +8652,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8667,42 +8660,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8710,33 +8703,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8745,227 +8738,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8973,99 +8966,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9073,18 +9066,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9092,7 +9085,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10235,6 +10228,11 @@ msgstr "" msgid "Rename view to" msgstr "Pārsaukt tabulu uz" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "sekundē" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/mk.po b/po/mk.po index c918ae3c23..748c453083 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-05-19 17:04+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" @@ -84,7 +84,7 @@ msgstr "Име на клуч" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Опис" @@ -271,7 +271,7 @@ msgstr "Базата на податоци %s е ископирана во %s" msgid "Rename database to" msgstr "Преименувај ја базата на податоци во" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Наредба" @@ -643,7 +643,7 @@ msgstr "Поглед" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 #, fuzzy msgid "Replication" msgstr "Релации" @@ -755,7 +755,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -774,7 +774,7 @@ msgstr "Креирај" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Статус" @@ -1082,17 +1082,17 @@ msgstr "" msgid "Edit" msgstr "Промени" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Избор на сервер" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL упит" @@ -1104,13 +1104,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Вкупно" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1142,7 +1142,7 @@ msgstr "Избор на сервер" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 #, fuzzy msgid "Processes" msgstr "Листа на процеси" @@ -1162,7 +1162,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL упит" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Статистики за записите" @@ -2049,7 +2049,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Табели" @@ -2184,7 +2184,7 @@ msgid "Documentation" msgstr "Документација" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL упит" @@ -2213,7 +2213,7 @@ msgid "Create PHP Code" msgstr "Направи PHP код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Освежи" @@ -4908,7 +4908,7 @@ msgstr "Компресија" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "нема" @@ -5157,7 +5157,7 @@ msgid "The row has been deleted" msgstr "Записот е избришан" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Прекини" @@ -5252,7 +5252,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Бафер" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB статус" @@ -5740,7 +5740,7 @@ msgstr "Достапни MIME-типови" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Host" @@ -6442,13 +6442,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Вредност" @@ -6689,12 +6689,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Бинарен дневник" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Променливи" @@ -6992,7 +6992,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Додади нов корисник" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Време" @@ -7227,7 +7227,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Корисник" @@ -7694,18 +7694,18 @@ msgstr "Табелата \"%s\" не постои!" msgid "Select binary log to view" msgstr "Изберете бинарен дневник за преглед" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "Полиња" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Прикажи скратени упити" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Прикажи комплетни упити" @@ -8248,7 +8248,7 @@ msgstr "Привилегиите се успешно вчитани." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8387,259 +8387,252 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Освежи" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "се користи" +msgstr[1] "се користи" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "во секунда" +msgstr[1] "во секунда" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесот %s е успешно прекинат." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 #, fuzzy msgid "Query cache" msgstr "Вид на упит" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "Користи одложен внес" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 #, fuzzy msgid "Show open tables" msgstr "Прикажи табели" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Информации за работата" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Избор на сервер" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Освежи" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "во секунда" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "во секунда" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "се користи" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Немој да ја менуваш лозинката" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "Прикажи табели" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Релации" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "на час" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "во минута" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "во секунда" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Вид на упит" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Овој MySQL сервер работи %s. Стартуван е на %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Сообраќај" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Примено" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Пратено" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Конекции" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Неуспешни обиди" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Прекинато" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8647,78 +8640,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8726,7 +8719,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8734,42 +8727,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8777,33 +8770,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8812,227 +8805,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9040,99 +9033,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9140,18 +9133,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9159,7 +9152,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10303,6 +10296,11 @@ msgstr "" msgid "Rename view to" msgstr "Промени го името на табелата во " +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "во секунда" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/ml.po b/po/ml.po index 5bce13c79c..7a2801af8b 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" @@ -82,7 +82,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "" @@ -267,7 +267,7 @@ msgstr "" msgid "Rename database to" msgstr "" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "" @@ -617,7 +617,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "" @@ -724,7 +724,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -742,7 +742,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -1031,15 +1031,15 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "" @@ -1050,13 +1050,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1086,7 +1086,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "" @@ -1102,7 +1102,7 @@ msgstr "" msgid "Issued queries" msgstr "" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "" @@ -1887,7 +1887,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "" @@ -2011,7 +2011,7 @@ msgid "Documentation" msgstr "" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "" @@ -2040,7 +2040,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4583,7 +4583,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "" @@ -4804,7 +4804,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "" @@ -4890,7 +4890,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "" @@ -5331,7 +5331,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "" @@ -6007,13 +6007,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6236,12 +6236,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "" @@ -6496,7 +6496,7 @@ msgstr "" msgid "+ Add a new value" msgstr "" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "" @@ -6649,7 +6649,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "" @@ -7060,17 +7060,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "" @@ -7573,7 +7573,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -7706,237 +7706,234 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "" + +#: server_status.php:31 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: server_status.php:33 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "" - -#: server_status.php:398 server_status.php:431 -msgid "second" -msgstr "" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -msgid "seconds" -msgstr "" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -msgid "minutes" -msgstr "" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 msgid "Related links:" msgstr "" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7944,78 +7941,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8023,7 +8020,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8031,42 +8028,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8074,33 +8071,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8109,227 +8106,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8337,99 +8334,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8437,18 +8434,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8456,7 +8453,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" diff --git a/po/mn.po b/po/mn.po index 8fa5f7cf73..16e040445f 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" @@ -82,7 +82,7 @@ msgstr "Түлхүүрийн нэр" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Тайлбар" @@ -269,7 +269,7 @@ msgstr "ӨС %s нь %s руу хуулагдлаа" msgid "Rename database to" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Команд" @@ -642,7 +642,7 @@ msgstr "Харц" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Олшруулалт" @@ -753,7 +753,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -771,7 +771,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Статус" @@ -1077,17 +1077,17 @@ msgstr "" msgid "Edit" msgstr "Засах" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Сервэр сонго" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Showing SQL query" msgid "Live query chart" @@ -1100,13 +1100,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Нийт" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1138,7 +1138,7 @@ msgstr "Сервэр сонго" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Процессууд" @@ -1156,7 +1156,7 @@ msgstr "" msgid "Issued queries" msgstr "" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy #| msgid "Databases statistics" msgid "Query statistics" @@ -2049,7 +2049,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Хүснэгт" @@ -2185,7 +2185,7 @@ msgid "Documentation" msgstr "Баримт" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-асуулт" @@ -2214,7 +2214,7 @@ msgid "Create PHP Code" msgstr "PHP-код үүсгэх" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Да.дуудах" @@ -4892,7 +4892,7 @@ msgstr "Шахалт" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Байхгүй" @@ -5151,7 +5151,7 @@ msgid "The row has been deleted" msgstr "Мөр устгагдсан" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Алах" @@ -5245,7 +5245,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Буффер Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB байдал" @@ -5729,7 +5729,7 @@ msgstr "Идэвхтэй MIME-төрлүүд" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Хост" @@ -6428,13 +6428,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Хувьсагч" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Утга" @@ -6675,12 +6675,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Хоёртын log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Утгууд" @@ -6975,7 +6975,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Шинэ хэрэглэгч нэмэх" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Цаг" @@ -7197,7 +7197,7 @@ msgid "Protocol version" msgstr "Протоколын хувилбар" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Хэрэглэгч" @@ -7662,17 +7662,17 @@ msgstr "Хүснэгт \"%s\" байхгүй байна!" msgid "Select binary log to view" msgstr "Харах хоёртын log сонго" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Файлууд" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Бүтэн асуулт харуулах" @@ -8199,7 +8199,7 @@ msgstr "Онцгой эрхүүд дахин дуудагдлаа." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8336,240 +8336,233 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Да.дуудах" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "хэрэглэгдэж байна" +msgstr[1] "хэрэглэгдэж байна" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "секундэд" +msgstr[1] "секундэд" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s нь устгагдав." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Баригч" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Асуудлын нөөцлөл" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Thread-үүд" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Завсрын өгөгдөл" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Давталттай оруулалт" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Түлхүүрийн нөөцлөл" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Нэгдэл" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Эрэмбэлж байна" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Хэлэлцээр зохицуулагч" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Дагавар хостыг харуулах" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Дагавар төлвийг харуулах" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Асуудлын утгыг цэвэрлэх" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Ажиллах үеийн мэдээлэл" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Сервэр сонго" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Да.дуудах" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "секундэд" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "секундэд" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "хэрэглэгдэж байна" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Нууц үгийг солихгүй" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Хамаарал" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "цагт" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "минутад" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "секундэд" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Асуултын төрөл" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Энэ MySQL сервэр %s-д ажиллаж байна. Эхэлсэн нь %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Гуйвуулга" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Ирсэн" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Илгээгдэв" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Холболт" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "ХИ. давхацсан холболтууд" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Бүтэлгүйтсэн оролдлого" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Таслагдсан" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Limits the number of simultaneous connections the user may have." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8579,16 +8572,16 @@ msgstr "" "хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд " "хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8600,11 +8593,11 @@ msgstr "" "оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг " "нэмэгдүүлэхийг хүсэж байж болно." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8612,7 +8605,7 @@ msgstr "" "Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн " "хүснэгтүүдийн тоо." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8620,7 +8613,7 @@ msgstr "" "Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-" "аар бичигдсэн мөрүүдийн тоо." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8628,23 +8621,23 @@ msgstr "" "Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай " "хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "дотоод COMMIT хэлэлцээриийн тоо." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Хүснэгтээс мөр устгасан тоо." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8654,7 +8647,7 @@ msgstr "" "NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. " "Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8664,7 +8657,7 @@ msgstr "" "бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 " "FROM foo, энд col1 индекслэгдсэн байна." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8672,7 +8665,7 @@ msgstr "" "Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны " "асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8682,7 +8675,7 @@ msgstr "" "та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд " "нэмэгдэж байдаг." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8690,7 +8683,7 @@ msgstr "" "Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь " "голчлон ORDER BY ... DESC-д хэрэглэгддэг." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8702,7 +8695,7 @@ msgstr "" "Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд " "түлхүүрийг зөв ашиглаагүй байх." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8714,35 +8707,35 @@ msgstr "" "ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь " "асуудалд зөв бичигдээгүйг илтгэнэ." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Одоогоор бохир байгаа хуудсын тоо." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Чөлөөтэй байгаа хуудсуудын тоо." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8752,7 +8745,7 @@ msgstr "" "одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас " "хасагдсан." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8764,11 +8757,11 @@ msgstr "" "InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт " "хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8776,7 +8769,7 @@ msgstr "" "InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй " "эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8784,11 +8777,11 @@ msgstr "" "InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн " "шалгалтыг InnoDB хийснийг илэрхийлнэ." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8796,7 +8789,7 @@ msgstr "" "InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик " "уншилтын тоо." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8805,227 +8798,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Уншихаар хүлээгдэж буй тухайн тоо." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Өгөгдөл уншилтийн нийт тоо." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Өгөгдөл бичилтийн нийт тоо." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Тэмдэглэл бичих хүсэлтийн тоо." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Тэмдэглэлийн файл руу бичих хүлээлт." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9033,99 +9026,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Эрэмбэлэгдсэн мөрийн тоо." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9133,18 +9126,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9152,7 +9145,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10283,6 +10276,11 @@ msgstr "" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "секундэд" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/ms.po b/po/ms.po index ced0663739..fbd66c66df 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" @@ -80,7 +80,7 @@ msgstr "Nama Kekunci" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Keterangan" @@ -270,7 +270,7 @@ msgstr "Jadual %s telah disalin ke %s." msgid "Rename database to" msgstr "Tukarnama jadual ke" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Arahan" @@ -643,7 +643,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "" @@ -754,7 +754,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -773,7 +773,7 @@ msgstr "Cipta" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1074,17 +1074,17 @@ msgstr "" msgid "Edit" msgstr "Ubah" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Pilihan Pelayan" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "kueri-SQL" @@ -1096,13 +1096,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Jumlah" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1134,7 +1134,7 @@ msgstr "Pilihan Pelayan" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Proses-proses" @@ -1153,7 +1153,7 @@ msgstr "" msgid "Issued queries" msgstr "kueri-SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Statistik Baris" @@ -2023,7 +2023,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Jadual-jadual" @@ -2155,7 +2155,7 @@ msgid "Documentation" msgstr "Dokumentasi" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "kueri-SQL" @@ -2184,7 +2184,7 @@ msgid "Create PHP Code" msgstr "Cipta Kod PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4844,7 +4844,7 @@ msgstr "Mampatan" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Tiada" @@ -5091,7 +5091,7 @@ msgid "The row has been deleted" msgstr "Baris telah dipadam" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Bunuh" @@ -5182,7 +5182,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "" @@ -5643,7 +5643,7 @@ msgstr "Paparkan Ciri-ciri" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Hos" @@ -6334,13 +6334,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Pembolehubah" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Nilai" @@ -6578,13 +6578,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Binari" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Pemboleh-pembolehubah" @@ -6877,7 +6877,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Tambah Pengguna Baru" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Masa" @@ -7039,7 +7039,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Pengguna" @@ -7494,18 +7494,18 @@ msgstr "Jadual \"%s\" tidak wujud!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "Medan" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "" @@ -8026,7 +8026,7 @@ msgstr "Bebenang %s telah berjaya dimatikan." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8165,255 +8165,248 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +msgid "Refresh rate" +msgstr "Dijana oleh" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "sedang digunakan" +msgstr[1] "sedang digunakan" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Records" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Rekod" +msgstr[1] "Rekod" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Bebenang %s telah berjaya dimatikan." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin tidak dapat mematikan bebenang %s. Ianya mungkin telah ditutup." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 #, fuzzy msgid "Query cache" msgstr "Jenis Kueri" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "Penyelitan Lanjutan" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 #, fuzzy msgid "Show open tables" msgstr "Papar jadual" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Informasi MasaJana" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Pilihan Pelayan" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -msgid "Refresh rate" -msgstr "Dijana oleh" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Records" -msgid "second" -msgstr "Rekod" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Records" -msgid "seconds" -msgstr "Rekod" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "sedang digunakan" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Jangan tukar katalaluan" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "Papar jadual" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy msgid "Related links:" msgstr "Operasi" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "per jam" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Jenis Kueri" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Pelayan MySQL ini telah berjalan selama %s. Ia dihidupkan pada %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Kesibukan" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "DiTerima" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Hantar" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Hubungan" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Percubaan Gagal" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "DiBatalkan" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8421,78 +8414,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8500,7 +8493,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8508,42 +8501,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8551,33 +8544,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8586,227 +8579,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8814,99 +8807,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8914,18 +8907,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8933,7 +8926,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10059,6 +10052,11 @@ msgstr "" msgid "Rename view to" msgstr "Tukarnama jadual ke" +#, fuzzy +#~| msgid "Records" +#~ msgid "seconds" +#~ msgstr "Rekod" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/nb.po b/po/nb.po index 3620264ff4..e1eb1eff07 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" @@ -83,7 +83,7 @@ msgstr "Nøkkel" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Beskrivelse" @@ -270,7 +270,7 @@ msgstr "Databasen %s har blitt kopiert til %s" msgid "Rename database to" msgstr "Endre databasens navn til" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Kommando" @@ -621,7 +621,7 @@ msgstr "Vis" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikering" @@ -734,7 +734,7 @@ msgstr "Overvåkede tabeller" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -752,7 +752,7 @@ msgstr "Opprettet" msgid "Updated" msgstr "Oppdatert" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1066,17 +1066,17 @@ msgstr "Lukk" msgid "Edit" msgstr "Rediger" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Tjenervalg" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query box" msgid "Live query chart" @@ -1089,13 +1089,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Totalt" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Tjenervalg" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Prosesser" @@ -1147,7 +1147,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL spørringer" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Spørringsstatistikk" @@ -1969,7 +1969,7 @@ msgstr "delt" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabeller" @@ -2100,7 +2100,7 @@ msgid "Documentation" msgstr "Dokumentasjon" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-spørring" @@ -2129,7 +2129,7 @@ msgid "Create PHP Code" msgstr "Lag PHP kode" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Oppdater" @@ -4878,7 +4878,7 @@ msgstr "Komprimering:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Ingen" @@ -5133,7 +5133,7 @@ msgid "The row has been deleted" msgstr "Raden er slettet" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Avslutt" @@ -5227,7 +5227,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Mellomlager" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB status" @@ -5736,7 +5736,7 @@ msgstr "Vis MIME-typer" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Vert" @@ -6445,13 +6445,13 @@ msgid "Slave status" msgstr "Slavestatus" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variabler" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Verdi" @@ -6686,12 +6686,12 @@ msgid "Synchronize" msgstr "Synkroniser" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binærlogg" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variabler" @@ -6975,7 +6975,7 @@ msgstr "Partisjonsdefinisjon" msgid "+ Add a new value" msgstr "+ Legg til ny verdi" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Tid" @@ -7174,7 +7174,7 @@ msgid "Protocol version" msgstr "Protokollversjon" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Bruker" @@ -7671,17 +7671,17 @@ msgstr "Tabellen %s eksisterer ikke!" msgid "Select binary log to view" msgstr "Velg binærlogg for visning" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Filer" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Forkort vist spørring" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Vis hele spørringen" @@ -8206,7 +8206,7 @@ msgstr "Mastertjener endret til %s" msgid "This server is configured as master in a replication process." msgstr "Denne tjeneren er konfigurert som master i en replikasjonsprosess." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Vis masterstatus" @@ -8361,174 +8361,167 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Oppdater" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minutt" +msgstr[1] "Minutt" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekund" +msgstr[1] "Sekund" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s ble avsluttet med suksess." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke avslutte tråd %s. Den er sansynligvis alt avsluttet." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Handler" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Spørringsmellomlager" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Tråder" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Midlertidige data" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Forsinkede innsettinger" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Nøkkelmellomlager" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Sammenføyninger" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Sortering" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Transaksjonskoordinator" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Vis åpne tabeller" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Vis slaveverter" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Vis slavestatus" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Kjøringsinformasjon" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Tjenervalg" -#: server_status.php:387 +#: server_status.php:402 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Se slavestatustabell" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Oppdater" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Sekund" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Sekund" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "Minutt" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Ikke endre passordet" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Vis åpne tabeller" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relasjoner" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "per time" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "per minutt" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "per sekund" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Spørringstype" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8536,19 +8529,19 @@ msgstr "" "Denne tjeneren jobber både som tjener og slave i " "replikasjonsprosessen." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Denne tjeneren er konfigurert som tjener i en replikasjonsprosess." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Denne tjeneren er konfigurert som slave i en replikasjonsprosess." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8556,15 +8549,15 @@ msgstr "" "For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Replikasjonsstatus" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Trafikk" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8572,41 +8565,41 @@ msgstr "" "På en travel tjener så kan byte-tellerene overflyte, så denne statistikken " "som rapportert av MySQL tjeneren kan være unøyaktig." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Mottatt" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Sendt" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "tilkoblinger" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "maks. samtidige tilkoblinger" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Feilede forsøk" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Avbrutt" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kunne ikke koble til MySQL tjener" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8616,17 +8609,17 @@ msgstr "" "som overskred verdien av binlog_size og brukte en midlertidig fil for å " "lagre spørringer fra transaksjonen." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antall transaksjoner som brukte den midlertidige binærloggmellomlageret." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8638,11 +8631,11 @@ msgstr "" "bør du vurdere å øke tmp_table_size verdien slik at midlertidige tabeller " "blir lagret i minnet og ikke på harddisken." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Antall midlertidige filer mysqld har opprettet." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8650,7 +8643,7 @@ msgstr "" "Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under " "utføriing av spørringer." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8658,7 +8651,7 @@ msgstr "" "Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil " "oppstod (mest sannsynlig duplisert nøkkel)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8666,23 +8659,23 @@ msgstr "" "Antall INSERT DELAYED håndterertråder i bruk. Hver eneste tabell hvor det " "blir brukt INSERT DELAYE får sin egen tråd." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Antall INSERT DELAYED rader skrevet." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Antall utførte FLUSH uttrykk." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Antall interne COMMIT uttrykk." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Antall ganger en rad ble slettet fra en tabell." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8692,7 +8685,7 @@ msgstr "" "tabell med et gitt navn. Dette blir kalt oppdaging (discovery). " "Handler_discover indikerer antall ganger tabeller har blitt oppdaget." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8702,7 +8695,7 @@ msgstr "" "er høyt tyder det på at tjeneren utfører en god del fullindekssøk; for " "eksempel, SELECT col1 FROM foo, da forutsatt at col1 er indeksert." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8711,7 +8704,7 @@ msgstr "" "er høyt gir dette en god indikasjon på at dine spørringer og tabeller er " "riktig indeksert." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8722,7 +8715,7 @@ msgstr "" "har sansynligvis mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som ikke bruker nøkler korrekt." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8730,7 +8723,7 @@ msgstr "" "Antall forespørsler for å lese den forrige raden i nøkkelrekkefølge. Denne " "lesemetoden er hovedsakelig brukt for å optimalisere ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8742,7 +8735,7 @@ msgstr "" "har mest sansynlig mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som som ikke bruker nøkler korrekt." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8754,37 +8747,37 @@ msgstr "" "tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for " "å utnytte de indeksene du har." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Antall interne ROLLBACK kommandoer." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Antall forespørsler for å oppdatere en rad i en tabell." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Antall forespørsler for å sette inn en rad i en tabell." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Antall sider som inneholder data (endret eller uendret)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Antall sider for tiden endret." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Antall midlertidige mellomlagersider som det har vært " "oppfriskningsforespørsler på." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Antall tomme sider." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8793,7 +8786,7 @@ msgstr "" "Antallet låste sider i InnoDBs mellomlager. Dette er sider som er under " "lesing eller skriving eller ikke kan tømmes eller fjernes av en annen grunn." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8805,11 +8798,11 @@ msgstr "" "kan også regnes ut som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på midlertidig mellomlager i sider." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8817,7 +8810,7 @@ msgstr "" "Antall \"tilfeldige\" \"read-aheads\" InnoDB startet. Dette skjer når en " "spørring skanner en stor andel av en tabell men i en tilfeldig rekkefølge." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8825,11 +8818,11 @@ msgstr "" "Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB " "utfører en sekvensiell full tabellskanning." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Antall logiske leseforespørsler InnoDB har utført." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8837,7 +8830,7 @@ msgstr "" "Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra " "mellomlageret og måtte utføre en enkelsidelesnining." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8851,55 +8844,55 @@ msgstr "" "telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt " "innstilt så vil denne verdien være liten." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Antall fsync() operasjoner så langt." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Antall ventende fsync() operasjoner." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Antall ventende lesinger." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Antall ventende skrivinger." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Mengden data lest så langt, i bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Antall utførte lesninger." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Antall utførte skrivinger." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Mengden data skrevet så langt, i bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8907,35 +8900,35 @@ msgstr "" "Antall ganger ventinger vi hadde fordi loggmellomlageret var for lite og vi " "måtte vente for at det skulle bli tømt før vi kunne fortsette." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Antall loggskrivingsforespørsler." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Antall fysiske skrivinger til loggfila." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Antall fsync-skrivinger utført på loggfila." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Antall ventende loggfil-fsyncs." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Ventende loggfilskrivinger." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Antall bytes skrevet til loggfila." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Antall sider opprettet." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8943,51 +8936,51 @@ msgstr "" "Den innkompilerte InnoDB sidestørrelsen (standard 16KB). Mange verdier måles " "i sider; sidestørrelsen gjør at det er lett å konvertere dem til bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Antall sidelesninger." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Antall sideskrivinger." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Antall ventende radlåsinger." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brukt for å få radlåsinger, i millisekunder." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimum tid brukt for å oppnå en radlåsing, i millisekunder." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Antall ganger en radlås måtte ventes på." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Antall rader slettet fra InnoDB tabeller." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Antall rader satt inn i InnoDB tabeller." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Antall rader lest fra InnoDB tabeller." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Antall rader oppdatert i InnoDB tabeller." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8996,7 +8989,7 @@ msgstr "" "ennå har blitt skrevet til harddisken. Dette var tidligere kjent som " "Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9004,7 +8997,7 @@ msgstr "" "Antall ubrukte blokker i nøkkelmellomlageret. Du kan bruke denne verdien til " "å bestemme hvor mye av nøkkelmellomlageret som er i bruk." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9013,11 +9006,11 @@ msgstr "" "Antall brukte blokker i nøkkelmellomlageret. Denne verdien er et høyvannsmål " "som viser maksimum antall blokker som har vært brukt på en gang." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Antall forespørsler for å lese en nøkkelblokk fra mellomlageret." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9027,15 +9020,15 @@ msgstr "" "stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan " "kalkuleres med Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Antall forespørsler for å skrive en nøkkelblokk til mellomlageret." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Antall fysiske skrivinger av en nøkkelblokk til disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9046,17 +9039,17 @@ msgstr "" "forskjellige spørringsplaner for den samme spørringen. Standardverdien på 0 " "betyr at ingen spørring har blitt kompilert ennå." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antall rader som venter på å bli skrevet i INSERT DELAYED køer." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9064,38 +9057,38 @@ msgstr "" "Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din " "tabellmellomlagerverdi for liten." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Antall åpne filer." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Antall åpne tabeller." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Mengden ledig minne i spørringsmellomlager." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Antall mellomlagertreff." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Antall spørringer lagt til i mellomlageret." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9108,7 +9101,7 @@ msgstr "" "og sist brukt (least recently used (LRU)) strategi for å finne hvilke " "spørringer som skal fjernes fra mellomlageret." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9116,19 +9109,19 @@ msgstr "" "Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. " "query_cache_type innstillingen)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Antall spørringer registrert i mellomlageret." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Totale antall blokker i spørringsmellomlageret." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9136,11 +9129,11 @@ msgstr "" "Antall joins som ikke bruker indekser. Hvis denne verdien ikke er 0 bør du " "nøye sjekke indeksene til dine tabeller." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "Antall joins som trenger en rekkefølgesøk i en referansetabell." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9148,7 +9141,7 @@ msgstr "" "Antall joins uten nøkler som kontrollerer for nøkkelbruk etter hver rad " "(Hvis denne ikke er 0 bør du nøye kontrollere dine tabellindekser.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9156,15 +9149,15 @@ msgstr "" "Antall joins som brukte rekkefølger på den første tabellen. (Det er normalt " "ikke kritisk selv om denne verdien er stor.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Antall joins som utførte en full skann av den første tabellen." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antall midlertidige tabeller for tiden åpnet av slave SQL tråden." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9172,12 +9165,12 @@ msgstr "" "Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har " "gjentatt transaksjoner." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denne er ON hvis denne tjeneren er en slave som er koblet til en master." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9185,12 +9178,12 @@ msgstr "" "Antall tråder som har brukt mer enn slow_launch_time sekunder under " "opprettelse." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antall spørringer som har brukt mer enn long_query_time sekunder." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9200,24 +9193,24 @@ msgstr "" "denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size " "systemvariabelen." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Antall sorteringer som ble utført med rekkefølger." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Antall sorterte rader." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" "Antall sorteringer som har vært utført ved hjelp av skanning av tabellen." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Antall ganger en tabellåsing ble utført umiddelbart." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9229,7 +9222,7 @@ msgstr "" "først optimalisere dine spørringer, og deretter enten splitte din tabell " "eller tabeller eller bruke replikasjon." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9239,11 +9232,11 @@ msgstr "" "Threads_created/Connections. Hvis denne verdien er rød bør du øke din " "thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Antall åpne tilkoblinger." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9254,7 +9247,7 @@ msgstr "" "stor bør du vurdere å øke thread_cache_size størrelsen. (Normalt vil dette " "ikke gi noen merkbar forbedring hvis du har en god trådimplementering.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Antall tråder som ikke sover." @@ -10491,6 +10484,11 @@ msgstr "VIEW navn" msgid "Rename view to" msgstr "Endre tabellens navn" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Sekund" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Sammenligning av eksekveringstid for spørring (i mikrosekunder)" diff --git a/po/nl.po b/po/nl.po index c74e1c6e9b..4171e358b7 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-04 15:19+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" @@ -83,7 +83,7 @@ msgstr "Sleutelnaam" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Beschrijving" @@ -270,7 +270,7 @@ msgstr "Database %s is gekopieerd naar %s" msgid "Rename database to" msgstr "Hernoem database naar" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Commando" @@ -623,7 +623,7 @@ msgstr "View" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replicatie" @@ -730,7 +730,7 @@ msgstr "Tabellen met tracker" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -748,7 +748,7 @@ msgstr "Aangemaakt" msgid "Updated" msgstr "Bijgewerkt" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1065,17 +1065,17 @@ msgstr "Sluiten" msgid "Edit" msgstr "Wijzig" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Serverkeuze" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -1088,13 +1088,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Totaal" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1126,7 +1126,7 @@ msgstr "Serverkeuze" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Processen" @@ -1146,7 +1146,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL-queries" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Toon statistieken" @@ -1963,7 +1963,7 @@ msgstr "gedeeld" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabellen" @@ -2096,7 +2096,7 @@ msgid "Documentation" msgstr "Documentatie" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-query" @@ -2125,7 +2125,7 @@ msgid "Create PHP Code" msgstr "Genereer PHP-Code" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Vernieuw" @@ -4890,7 +4890,7 @@ msgstr "Compressie:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Geen" @@ -5130,7 +5130,7 @@ msgid "The row has been deleted" msgstr "De rij is verwijderd" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "stop proces" @@ -5222,7 +5222,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5731,7 +5731,7 @@ msgstr "Toon beschikbare MIME-types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Machine" @@ -6452,13 +6452,13 @@ msgid "Slave status" msgstr "Slave status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variabelen" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Waarde" @@ -6687,12 +6687,12 @@ msgid "Synchronize" msgstr "Synchronizatie" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binaire log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variabelen" @@ -6976,7 +6976,7 @@ msgstr "PARTITION definitie" msgid "+ Add a new value" msgstr "+ Een nieuwe waarde toevoegen" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Tijd" @@ -7176,7 +7176,7 @@ msgid "Protocol version" msgstr "Protocolversie" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Gebruiker" @@ -7632,17 +7632,17 @@ msgstr "Bestand bestaat niet" msgid "Select binary log to view" msgstr "Selecteer de te bekijken binaire log" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Bestanden" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Getoonde queries afkappen" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Toon volledige Queries" @@ -8184,7 +8184,7 @@ msgstr "Master server succesvol gewijzigd in %s" msgid "This server is configured as master in a replication process." msgstr "Deze server is ingesteld als master in een replicatie proces." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Toon master status" @@ -8334,12 +8334,34 @@ msgstr "" "Deze server is niet ingesteld als slave in een replicatie proces. Wilt u dit " "nu instellen?" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Vernieuw" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minuut" +msgstr[1] "Minuut" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Seconde" +msgstr[1] "Seconde" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s is succesvol afgesloten." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8347,162 +8369,133 @@ msgstr "" "phpMyAdmin is er niet in geslaagd om de %s te sluiten.Waarschijnlijk is het " "al gesloten." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Handler" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Query cache" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Threads" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Tijdelijke data" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Vertraagde inserts" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Sleutelcache" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Joins" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Sortering" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Transactie coördinator" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Schoon (sluit) alle tabellen" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Toon open tabellen" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Toon slave hosts" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Toon slave status" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Schoon query cache" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Runtime-informatie" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Serverkeuze" -#: server_status.php:387 +#: server_status.php:402 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Slave status tabel" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Vernieuw" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Seconde" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Seconde" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "Minuut" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Wijzig het wachtwoord niet" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Toon open tabellen" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "Gerelateerde links" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "per uur" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "per minuut" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "per seconde" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Query-type" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Deze MySQL-server draait inmiddels %s. Hij is gestart op %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8510,13 +8503,13 @@ msgstr "" "Deze MySQL server is ingesteld als master en slave in een " "replicatie proces." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Deze MySQL server is ingesteld als master in een replicatie " "proces." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Deze MySQL server is ingesteld als slave in een replicatie " @@ -8525,7 +8518,7 @@ msgstr "" # Er moet een betere vertaling voor "replication" zijn. "Nadoen"? # "Deze MySQL-server functioneert als %s in een replicatie proces." # weggehaald. -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8533,15 +8526,15 @@ msgstr "" "Kijk voor meer informatie over de replicatiestatus op deze server in de replicatiestatus sectie." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Replicatie status" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Verkeer" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8549,41 +8542,41 @@ msgstr "" "Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor " "kunnen de gerapporteerde statistieken afwijken." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Ontvangen" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Verzonden" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Connecties" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "Max. gelijktijdige verbindingen" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Mislukte pogingen" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Afgehaakte" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Er kan geen verbinding worden gemaakt met de server" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8594,18 +8587,18 @@ msgstr "" "hebben gemaakt van een tijdelijkbestand om opdrachten uit de transactie op " "te slaan." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Het aantal transactie dat gebruik maakte van het tijdelijke binaire log " "cache." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8617,11 +8610,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8629,7 +8622,7 @@ msgstr "" "Het aantal in het geheugen geplaatste tijdelijke tabellen dat automatisch " "door de server werd aangemaakt tijdens het uitvoeren van opdrachten." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8637,7 +8630,7 @@ msgstr "" "Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad " "(mogelijk een reeds bestaande sleutel)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8646,23 +8639,23 @@ msgstr "" "afzonderlijke tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen " "thread." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Het aantal met INSERT DELAYED opgeslagen rijen." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Het aantal uitgevoerde FLUSH opdrachten." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Het aantal interne COMMIT opdrachten." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Het aantal keer dat een rij werd verwijderd uit een tabel." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8672,7 +8665,7 @@ msgstr "" "met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft " "aan hoeveel tabellen met discovery werden opgezocht." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8682,7 +8675,7 @@ msgstr "" "hoog geeft dit een indicatie dat de server veel scans doet op de volledige " "index; bijvoorbeeld SELECT kolom1 FROM foo, waarbij kolom1 is geïndexeerd." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8691,7 +8684,7 @@ msgstr "" "hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige " "indexen." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8701,7 +8694,7 @@ msgstr "" "wordt verhoogd wanneer u een index kolom raadpleegt met een bereik beperking " "of bij het doen van een index scan." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8709,7 +8702,7 @@ msgstr "" "Het aantal leesopdrachten voor de voorgaande rij in de sleutel volgorde. Dit " "wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8722,7 +8715,7 @@ msgstr "" "gehele tabel moet scannen of er worden joins toegepast die niet goed " "gebruikmaken van sleutels." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8735,35 +8728,35 @@ msgstr "" "zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van " "maken." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Het aantal interne ROLLBACK opdrachten." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Het aantal update opdrachten voor een tabel rij." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Het aantal opdrachten om een rij aan een tabel toe te voegen." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Het aantal pages dat data bevat (dirty en clean)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Het aantal pages dat momenteel dirty is." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Het aantal buffer pool pages dat is geschoond." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Het aantal vrije pages." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8773,7 +8766,7 @@ msgstr "" "momenteel wordt gelezen of geschreven, of die om een andere reden niet " "geschoond of verwijderd kunnen worden." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8785,11 +8778,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Totale formaat van de buffer pool, in pages." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8798,7 +8791,7 @@ msgstr "" "gebeurd wanneer een query een groot deel van een tabel laat scannen, maar in " "willekeurige volgorde." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8806,11 +8799,11 @@ msgstr "" "Het aantal sequentiele read-aheads dat door InnoDB werd geïnitieerd. Dit " "gebeurd wanneer er een volledige tabelscan wordt uitgevoerd." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Het aantal logische read requests dat door InnoDB werd uitgevoerd." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8818,7 +8811,7 @@ msgstr "" "Het aantal logische lees operaties dat InnoDB niet kon doen vanuit de buffer " "pool maar waarvoor een extra page ingeladen moest worden." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8832,86 +8825,86 @@ msgstr "" "geschoond. Deze teller houd bij hoe vaak dit voorkomt. Indien het buffer " "pool formaat goed is ingesteld hoort deze waarde laag te zijn." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Het aantal schrijf operaties uitgevoerd op de InnoDB buffer pool." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Het aantal fsync() operaties." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Het aantal momenteel openstaande fsync() operaties." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Het aantal momenteel openstaande lees operaties." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Het aantal momenteel openstaande schrijf operaties." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "De hoeveelheid gelezen data, in bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Het totale aantal data lees operaties." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Het totale aantal data schrijf operaties." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "De hoeveelheid geschreven data, in bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "Het aantal pagina's dat werd geschreven voor doublewrite operaties." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "Het aantal uitgevoerde doublewrite operaties." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Het aantal keer dat er gewacht moest worden vanwege een volle log buffer." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Het aantal log schrijf opdrachten." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Het aantal fysieke schrijf operaties op het log bestand." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Het aantal fsync() schrijf operaties uitgevoerd op het log bestand." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Het aantal momenteel openstaande fsync operaties op het logbestand." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Het aantal momenteel openstaande schrijf operaties op het logbestand." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Het aantal bytes dat naar het logbestand werd geschreven." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Het aantal pages dat werd aangemaakt." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8920,54 +8913,54 @@ msgstr "" "Veel waarden worden geteld in pages. Een vaste page grootte maakt het " "eenvoudig deze te converteren naar bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Het aantal gelezen pages." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Het aantal geschreven pages." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "De gemiddelde tijd nodig om een rij lock te verkrijgen, in milliseconden." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "De totale tijd besteed aan het verkrijgen van rij locks, in milliseconden." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "De maximale tijd nodig om een rij lock te verkrijgen, in milliseconden." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Het aantal keer dat er op een rij lock moest worden gewacht." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Het aantal rijen dat werd verwijderd uit InnoDB tabellen." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Het aantal rijen dat werd ingevoegd in InnoDB tabellen." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Het aantal rijen dat werd gelezen uit InnoDB tabellen." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB tabellen." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8976,13 +8969,13 @@ msgstr "" "niet naar disk zijn geschreven. Dit stond voorheen bekend als " "Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "Het aantal ongebruikte blokken in het sleutelcache." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8991,11 +8984,11 @@ msgstr "" "Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal " "behaalde waarde sinds het starten van de server." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Het aantal leesopdrachten voor een sleutelblok uit het cache." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9005,15 +8998,15 @@ msgstr "" "key_reads groot is, is de waarde van key_buffer_size mogelijk te laag. De " "cache miss rate kan worden berekend met Key_reads / Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Het aantal schrijf opdrachten voor een sleutelblok naar het cache." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Het aantal fysieke schrijf opdrachten voor een sleutelblok naar disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9024,19 +9017,19 @@ msgstr "" "verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend " "dat er nog geen query is gecompiled." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Het aantal rijen dat klaar staan om te worden geschreven in INSERT DELAYED " "wachtrijen." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9044,39 +9037,39 @@ msgstr "" "Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de table " "cache waarde te laag." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Het totaal aantal geopende bestanden." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven van log)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Het totaal aantal open tabellen." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "De hoeveelheid vrij geheugen voor het query cache." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Het aantal cache hits." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Het aantal queries dat aan het cache werd toegevoegd." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9089,7 +9082,7 @@ msgstr "" "recent gebruikt (least recently used, LRU) strategie om te bepalen welke " "queries worden verwijderd." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9097,19 +9090,19 @@ msgstr "" "Het aantal niet gecachte queries (niet cachebaar, danwel niet gecached " "vanwege de query_cache_type instelling)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Het aantal queries dat in het cache staat." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Het totaal aantal blokken in het query cache." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "De status van failsafe replicatie (nog niet geïmplementeerd)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9117,13 +9110,13 @@ msgstr "" "Het aantal joins dat geen gebruik maakt van een index. Indien dit geen 0 is, " "is het aan te raden om het gebruik van indexen te controleren." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Het aantal joins dat een bereik beperking toepassen op een gerefereerde " "tabel." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9132,7 +9125,7 @@ msgstr "" "van een sleutel. (Indien dit geen 0 is, is het aan te raden om het gebruik " "van indexen te controleren.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9140,17 +9133,17 @@ msgstr "" "Het aantal joins dat een bereik beperking gebruikt op de eerste tabel. (Dit " "hoeft geen groot probleem te zijn, zelfs niet bij grote tabellen.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Het aantal joins dat een volledige scan van de eerste tabel uitvoerde." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Het aantal momenteel openstaande tijdelijke tabellen voor de slave SQL " "threas." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9158,13 +9151,13 @@ msgstr "" "Het totaal aantal transacties dat moest worden herhaald door de replicatie " "slave SQL thread (sinds het opstarten van de server)." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dit staat op 'ON' indien deze server als een replicatie slave verbonden is " "met een master server." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9172,14 +9165,14 @@ msgstr "" "Het aantal threads waarvoor het opstarten langer dan slow_launch_time " "seconden duurde." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Het aantal queries waarvan het uitvoeren langer dan long_query_time seconden " "duurde." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9189,24 +9182,24 @@ msgstr "" "uitvoeren. Indien deze waarde hoog is, is het een optie om de systeem " "variabele sort_buffer_size te vergroten." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Het aantal gesorteerde rijen." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" "Het aantal sorteringen dat werd uitgevoerd door het scannen van de tabel." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Het aantal keer dat een tabel lock direct kon worden verkregen." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9218,7 +9211,7 @@ msgstr "" "problemen, kunt u het beste eerst uw queries optimalizeren. Daarna kunt u " "nog kijken naar het splitsen van tabellen en het gebruik van replicatie." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9228,11 +9221,11 @@ msgstr "" "berekend met Threads_created/Connections. Indien deze waarde rood staat " "aangegeven is het aan te raden om thread_cache_size te vergroten." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Het aantal momenteel openstaande verbindingen." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9244,7 +9237,7 @@ msgstr "" "verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede " "thead implementatie, geen noemenswaardige prestatie verbetering.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Het aantal threads dat actief bezig is." @@ -10414,6 +10407,11 @@ msgstr "VIEW-naam" msgid "Rename view to" msgstr "Hernoem view naar" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Seconde" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Vergelijking van query-uitvoertijden (in microseconden)" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index eb189e77ff..adf2e41926 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,7 +85,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "" @@ -270,7 +270,7 @@ msgstr "" msgid "Rename database to" msgstr "" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "" @@ -620,7 +620,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "" @@ -727,7 +727,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -745,7 +745,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -1034,15 +1034,15 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "" @@ -1053,13 +1053,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1089,7 +1089,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "" @@ -1105,7 +1105,7 @@ msgstr "" msgid "Issued queries" msgstr "" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "" @@ -1890,7 +1890,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "" @@ -2014,7 +2014,7 @@ msgid "Documentation" msgstr "" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "" @@ -2043,7 +2043,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4586,7 +4586,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "" @@ -4807,7 +4807,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "" @@ -4893,7 +4893,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "" @@ -5334,7 +5334,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "" @@ -6010,13 +6010,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6239,12 +6239,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "" @@ -6499,7 +6499,7 @@ msgstr "" msgid "+ Add a new value" msgstr "" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "" @@ -6652,7 +6652,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "" @@ -7063,17 +7063,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "" @@ -7576,7 +7576,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -7709,237 +7709,234 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "" + +#: server_status.php:31 +#, possible-php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: server_status.php:33 +#, possible-php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: server_status.php:134 #, possible-php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:121 +#: server_status.php:136 #, possible-php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "" - -#: server_status.php:398 server_status.php:431 -msgid "second" -msgstr "" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -msgid "seconds" -msgstr "" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -msgid "minutes" -msgstr "" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 msgid "Related links:" msgstr "" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, possible-php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, possible-php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7947,78 +7944,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8026,7 +8023,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8034,42 +8031,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8077,33 +8074,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8112,227 +8109,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8340,99 +8337,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8440,18 +8437,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8459,7 +8456,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" diff --git a/po/pl.po b/po/pl.po index efeb0afe8c..0b449c2703 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: polish \n" @@ -85,7 +85,7 @@ msgstr "Nazwa klucza" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Opis" @@ -272,7 +272,7 @@ msgstr "Baza danych %s została przekopiowana do %s" msgid "Rename database to" msgstr "Zmień nazwę bazy danych na" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Polecenie" @@ -634,7 +634,7 @@ msgstr "Widok" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikacja" @@ -747,7 +747,7 @@ msgstr "Monitorowane tabele" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -765,7 +765,7 @@ msgstr "Utworzone" msgid "Updated" msgstr "Zaktualizowane" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1080,17 +1080,17 @@ msgstr "Zamknij" msgid "Edit" msgstr "Edytuj" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Wybór serwera" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -1103,13 +1103,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Sumarycznie" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1141,7 +1141,7 @@ msgstr "Wybór serwera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Procesy" @@ -1161,7 +1161,7 @@ msgstr "" msgid "Issued queries" msgstr "Zapytania SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Statystyki zapytań" @@ -2013,7 +2013,7 @@ msgstr "współdzielone" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabele" @@ -2150,7 +2150,7 @@ msgid "Documentation" msgstr "Dokumentacja" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "Zapytanie SQL" @@ -2181,7 +2181,7 @@ msgid "Create PHP Code" msgstr "Utwórz kod PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Odśwież" @@ -5025,7 +5025,7 @@ msgstr "Typ kompresji" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Brak" @@ -5297,7 +5297,7 @@ msgid "The row has been deleted" msgstr "Rekord został skasowany" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Unicestwij" @@ -5389,7 +5389,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Rezerwy buforowe" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Status InnoDB" @@ -5909,7 +5909,7 @@ msgstr "Dostępne typy MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Host" @@ -6626,13 +6626,13 @@ msgid "Slave status" msgstr "Stan serwera podrzędnego" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Zmienna" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Wartość" @@ -6879,12 +6879,12 @@ msgid "Synchronize" msgstr "Synchronizacja" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Dziennik binarny" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Zmienne" @@ -7183,7 +7183,7 @@ msgstr "Definicja partycji" msgid "+ Add a new value" msgstr "Dodaj nowy serwer" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Czas" @@ -7431,7 +7431,7 @@ msgid "Protocol version" msgstr "Wersja protokołu" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Użytkownik" @@ -7927,17 +7927,17 @@ msgstr "Tabela \"%s\" nie istnieje!" msgid "Select binary log to view" msgstr "Wybierz dziennik binarny do podglądu" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Pliki" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Ucinaj wyświetlane zapytania" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Pokaż pełne zapytania" @@ -8474,7 +8474,7 @@ msgstr "Serwer główny zmieniony pomyślnie na %s" msgid "This server is configured as master in a replication process." msgstr "Ten serwer jest skonfigurowany jako główny w procesie replikacji." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Pokaż stan serwera głównego" @@ -8631,12 +8631,36 @@ msgstr "" "Ten serwer nie jest skonfigurowany jako podrzędny w procesie replikacji. Czy " "chcesz go skonfigurować ?" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Odśwież" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minuta" +msgstr[1] "Minuta" +msgstr[2] "Minuta" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekunda" +msgstr[1] "Sekunda" +msgstr[2] "Sekunda" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Wątek %s został pomyślnie unicestwiony." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8644,162 +8668,133 @@ msgstr "" "phpMyAdminowi nie udało się unicestwić wątku %s. Prawdopodobnie został on " "już zamknięty." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Obsługa" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Pamięć podręczna zapytań" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Wątki" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Dane tymczasowe" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Opóźnione dodania" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Bufor podręczny indeksów" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Złączenia" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Sortowanie" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Koordynator transakcji" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Przeładuj (zamknij) wszystkie tabele" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Pokaż otwarte tabele" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Pokaż podrzędne hosty" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Status serwera podrzędnego" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Opróżnij bufor podręczny zapytań" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Informacje o działaniu serwera" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Wybór serwera" -#: server_status.php:387 +#: server_status.php:402 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Zobacz status tabeli serwera podrzędnego" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Odśwież" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Sekunda" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Sekunda" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "Minuta" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nie zmieniaj hasła" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Pokaż otwarte tabele" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacje" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "na godzinę" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "na minutę" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "na sekundę" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Rodzaj zapytania" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Serwer MySQL działa przez %s. Początek pracy: %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8807,29 +8802,29 @@ msgstr "" "Ten serwer MySQL jest ustawiony jako master i slave w procesie " "replikacji." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Stan replikacji" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Ruch" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8837,41 +8832,41 @@ msgstr "" "Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki " "jakich dostarcza serwer MySQL nie są wiarygodne." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Otrzymane" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Wysłane" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Połączenia" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "Maks. jednoczesnych połączeń" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Nieudane próby" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Przerwane" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nie można połączyć się z serwerem MySQL" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8881,18 +8876,18 @@ msgstr "" "binarnego, które przekroczyły wartość binlog_cache_size i do zapisania " "instrukcji transakcji został użyty plik tymczasowy." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika " "binarnego." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8904,11 +8899,11 @@ msgstr "" "zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w " "pamięci, a nie na dysku." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Ile plików tymczasowych utworzył mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8916,7 +8911,7 @@ msgstr "" "Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer " "podczas wykonywania instrukcji." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8924,7 +8919,7 @@ msgstr "" "Liczba rekordów zapisanych przy pomocy INSERT DELAYED, dla których wystąpił " "jakiś błąd (prawdopodobnie zdublowany klucz)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8932,23 +8927,23 @@ msgstr "" "Liczba użytych wątków obsługujących INSERT DELAYED. Każda osobna tabela, na " "której wykonuje się INSERT DELAYED dostaje własny wątek." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Liczba rekordów zapisanych poprzez INSERT DELAYED." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Liczba wykonanych instrukcji FLUSH." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Liczba wewnętrznych instrukcji COMMIT." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Ile razy rekord został usunięty z tabeli." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8958,7 +8953,7 @@ msgstr "" "informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery). Handler_discover wskazuje, ile razy tabela została odkryta." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8968,7 +8963,7 @@ msgstr "" "sugeruje, że serwer wykonuje pełnych przeszukań indeksów; na przykład SELECT " "col1 FROM foo, przy założeniu, że col1 jest zindeksowane." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8976,7 +8971,7 @@ msgstr "" "Liczba żądań odczytu rekordu na podstawie indeksu. Duża wartość to dobra " "oznaka tego, że zapytania i tabele są właściwie zindeksowane." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8986,7 +8981,7 @@ msgstr "" "jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym " "przedziale lub przy przeszukiwaniu indeksu." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8994,7 +8989,7 @@ msgstr "" "Liczba żądań odczytu poprzedniego rekordu w porządku indeksowym. Metoda " "używana głównie do optymalizacji ORDER BY … DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9006,7 +9001,7 @@ msgstr "" "sortowania rezultatu. Prawdopodobnie wykonano wiele zapytań wymagających " "przeszukania całej tabeli lub złączeń, które nie używają poprawnie indeksów." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9018,35 +9013,35 @@ msgstr "" "nie są poprawnie zindeksowane lub że zapytania nie są napisane w sposób " "pozwalający skorzystać z istniejących indeksów." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Liczba wewnętrznych instrukcji ROLLBACK." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Liczba żądań zmiany rekordu w tabeli." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Liczba żądań dodania rekordu do tabeli." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Liczba stron zawierających dane (brudnych lub czystych)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Liczba aktualnie brudnych stron." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Liczba stron w puli bufora, których wymiecienia zażądano." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Liczba wolnych stron." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -9056,7 +9051,7 @@ msgstr "" "odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub " "usunięte z jakiegoś innego powodu." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9069,11 +9064,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Łączny rozmiar puli bufora, w stronach." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -9082,7 +9077,7 @@ msgstr "" "Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej " "kolejności." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9090,11 +9085,11 @@ msgstr "" "Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " "Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9102,7 +9097,7 @@ msgstr "" "Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i " "musiał wykonać odczyt pojedynczej strony." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9116,51 +9111,51 @@ msgstr "" "wskazuje liczbę wystąpień takich oczekiwań. Jeżeli rozmiar puli bufora był " "ustawiony właściwie, wartość ta powinna być mała." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Liczba wykonanych zapisów do puli bufora InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Liczba dotąd wykonanych operacji fsync()." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Aktualna liczba operacji fsync() w toku." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Aktualna liczba odczytów w toku." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Aktualna liczba zapisów w toku." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Ilość dotąd odczytanych danych, w bajtach." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Łączna liczba odczytów danych." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Łączna liczba zapisów danych." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Ilość dotąd zapisanych danych, w bajtach." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "Liczba przeprowadzonych zapisów typu doublewrite." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "Liczba stron zapisanych przy zapisie typu doublewrite." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9168,35 +9163,35 @@ msgstr "" "Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy " "oczekiwano na jego opróżnienie." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Liczba żądań zapisów do dziennika." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Liczba fizycznych zapisów do pliku dziennika." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Liczba synchronicznych zapisów do pliku dziennika." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Liczba wywołań fsync dla pliku dziennika w toku." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Liczba zapisów do pliku dziennika w toku." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Liczba bajtów zapisanych do pliku dziennika." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Liczba utworzonych stron." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9205,51 +9200,51 @@ msgstr "" "mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą " "konwersję na bajty." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Liczba odczytanych stron." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Liczba zapisanych stron." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Liczba blokad rekordów na które aktualnie się czeka." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Średni czas uzyskania blokady rekordu, w milisekundach." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Całkowity czas zużyty na uzyskiwanie blokad rekordów, w milisekundach." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksymalny czas uzyskania blokady rekordu, w milisekundach." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Ile razy czekano na blokadę rekordu." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Liczba rekordów usuniętych z tabel InnoDB." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Liczba rekordów dodanych do tabel InnoDB." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Liczba rekordów odczytanych z tabel InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Liczba rekordów zmienionych w tabelach InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9258,7 +9253,7 @@ msgstr "" "jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę " "Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9266,7 +9261,7 @@ msgstr "" "Liczba nieużywanych bloków w buforze podręcznym indeksów. Można użyć tej " "wartości do określenia jaka część bufora indeksów jest w użyciu." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9275,11 +9270,11 @@ msgstr "" "Liczba użytych bloków w buforze podręcznym indeksów. Ta wartość to próg, " "który wskazuje maksymalną liczbę kiedykolwiek jednocześnie użytych bloków." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Liczba żądań odczytu bloku z bufora podręcznego indeksów." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9290,15 +9285,15 @@ msgstr "" "Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/" "Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Liczba żądań zapisów bloków indeksów to bufora podręcznego." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Liczba fizycznych zapisów bloków indeksów na dysk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9309,17 +9304,17 @@ msgstr "" "wykonania tego samego zapytania. Domyślna wartość 0 oznacza, że jeszcze " "żadne zapytanie nie zostało skompilowane." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Liczba rekordów oczekujących na zapisanie w kolejkach INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9327,39 +9322,39 @@ msgstr "" "Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, " "prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Liczba otwartych plików." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Liczba otwartych strumieni (używanych głownie do rejestracji w dzienniku)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Liczba otwartych tabel." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Liczba trafień pamięci podręcznej." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Liczba zapytań dodanych do pamięci podręcznej." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9372,7 +9367,7 @@ msgstr "" "bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany" "\" (least recently used - LRU)." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9380,19 +9375,19 @@ msgstr "" "Liczba niezbuforowanych zapytań (nie dających się zbuforować lub " "niezbuforowanych z powodu ustawienia query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Całkowita liczba bloków w buforze podręcznym zapytań." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan replikacji zabezpieczającej (jeszcze nie zaimplementowane)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9400,13 +9395,13 @@ msgstr "" "Liczba złączeń nie używających indeksów. Wartość różna od 0 sugeruje " "staranne przyjrzenie się indeksom tabel." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Liczba złączeń w których użyto wyszukiwania zakresowego na pierwszej " "złączanej tabeli." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9415,7 +9410,7 @@ msgstr "" "dla każdego rekordu. (Wartość różna od 0 sugeruje staranne przyjrzenie się " "indeksom tabel.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9423,16 +9418,16 @@ msgstr "" "Liczba złączeń w których użyto zakresów w stosunku do pierwszej tabeli. " "(Nawet duża wartość nie ma kluczowego znaczenia.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Liczba złączeń, które przeszukały w pełni pierwszą tabelę." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Liczba tymczasowych tabel aktualnie otwartych przez podrzędny wątek SQL." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9440,26 +9435,26 @@ msgstr "" "Ile raz łącznie (od startu) podrzędny wątek SQL replikacji ponawiał " "transakcje." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "ON oznacza, że ten serwer jest podrzędny i jest podłączony go serwera " "głównego." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Liczba wątków, których utworzenie trwało dłużej niż slow_launch_time sekund." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Liczba zapytań, których wykonanie zajęło więcej niż long_query_time sekund." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9469,23 +9464,23 @@ msgstr "" "dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej " "systemowej sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Liczba sortowań wykonanych przy użyciu zakresów." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Liczba posortowanych rekordów." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9497,7 +9492,7 @@ msgstr "" "się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) " "lub użyć replikacji." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9507,11 +9502,11 @@ msgstr "" "może być wyliczony ze wzoru Threads_created/Connections. Kolor czerwony " "oznacza, że powinno się zwiększyć thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Liczba aktualnie otwartych połączeń." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9523,7 +9518,7 @@ msgstr "" "(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego " "polepszenia wydajności.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Liczba nieuśpionych wątków." @@ -10778,6 +10773,11 @@ msgstr "Nazwa widoku" msgid "Rename view to" msgstr "Zmień nazwę perspektywy na" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Sekunda" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Porównanie czasu wykonywania zapytania (w milisekundach)" diff --git a/po/pt.po b/po/pt.po index b6af4a2c5d..851b852f79 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-03-26 03:23+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" @@ -85,7 +85,7 @@ msgstr "Nome do Índice" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Descrição" @@ -270,7 +270,7 @@ msgstr "A base de dados %s foi copiada para %s." msgid "Rename database to" msgstr "Alterar o nome da base de dados para" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Comando" @@ -624,7 +624,7 @@ msgstr "Vista" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 #, fuzzy msgid "Replication" msgstr "Replicação" @@ -737,7 +737,7 @@ msgstr "Tabelas em tracking" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Criado" msgid "Updated" msgstr "Actualizado" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Estado" @@ -1078,17 +1078,17 @@ msgstr "Fechar" msgid "Edit" msgstr "Edita" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Escolha do Servidor" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "Comando SQL" @@ -1100,13 +1100,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1138,7 +1138,7 @@ msgstr "Escolha do Servidor" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Processos" @@ -1157,7 +1157,7 @@ msgstr "" msgid "Issued queries" msgstr "Comando SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Estatísticas dos registos" @@ -2021,7 +2021,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabelas" @@ -2155,7 +2155,7 @@ msgid "Documentation" msgstr "Documentação" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "Comando SQL" @@ -2184,7 +2184,7 @@ msgid "Create PHP Code" msgstr "Criar código PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4875,7 +4875,7 @@ msgstr "Compressão" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Nenhum" @@ -5126,7 +5126,7 @@ msgid "The row has been deleted" msgstr "Registo eliminado" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Termina" @@ -5217,7 +5217,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Estado da InnoDB" @@ -5683,7 +5683,7 @@ msgstr "MIME-types disponíveis" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Máquina" @@ -6384,13 +6384,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variável" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -6630,13 +6630,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr " Binário " #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variáveis" @@ -6931,7 +6931,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Acrescenta um utilizador" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Tempo" @@ -7099,7 +7099,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Utilizador" @@ -7561,18 +7561,18 @@ msgstr "A tabela \"%s\" não existe!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "Qtd Campos" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Truncar os Queries mostrados" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Mostrar queries completos" @@ -8107,7 +8107,7 @@ msgstr "O privilégios foram recarregados com sucesso." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8247,257 +8247,250 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +msgid "Refresh rate" +msgstr "Gerado por" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "em uso" +msgstr[1] "em uso" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "por segundo" +msgstr[1] "por segundo" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 #, fuzzy msgid "Query cache" msgstr "Tipo de Query" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "Instrucções de inserção múltiplas" -#: server_status.php:254 +#: server_status.php:269 #, fuzzy msgid "Key cache" msgstr "Tipo de Query" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 #, fuzzy msgid "Show open tables" msgstr "Mostra tabelas" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Informação de Runtime" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Escolha do Servidor" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -msgid "Refresh rate" -msgstr "Gerado por" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "por segundo" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "por segundo" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "em uso" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Mantendo a palavra-passe " -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "Mostra tabelas" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relações" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "por hora" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "por minuto" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "por segundo" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Tipo de Query" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 #, fuzzy msgid "Replication status" msgstr "Relações" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Tráfego" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Recebido" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Enviado" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Ligações" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Tentativas falhadas" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Abortado" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8505,78 +8498,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8584,7 +8577,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8592,42 +8585,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8635,33 +8628,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8670,227 +8663,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8898,99 +8891,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8998,18 +8991,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9017,7 +9010,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10156,6 +10149,11 @@ msgstr "" msgid "Rename view to" msgstr "Renomeia a vista para " +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "por segundo" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/pt_BR.po b/po/pt_BR.po index 6e088bf8d6..766ae3de6d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-15 13:55+0200\n" "Last-Translator: Jose Ivan Bezerra Vilarouca Filho \n" "Language-Team: brazilian_portuguese \n" @@ -84,7 +84,7 @@ msgstr "Nome chave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Descrição" @@ -271,7 +271,7 @@ msgstr "Banco de Dados %s copiado para %s" msgid "Rename database to" msgstr "Renomear Banco de Dados para" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Comando" @@ -627,7 +627,7 @@ msgstr "Visão" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replicação" @@ -734,7 +734,7 @@ msgstr "Tabelas rastreadas" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -752,7 +752,7 @@ msgstr "Criado" msgid "Updated" msgstr "Atualizado" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1064,17 +1064,17 @@ msgstr "Fechar" msgid "Edit" msgstr "Editar" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Seleção do Servidor" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "consulta SQL" @@ -1086,13 +1086,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1124,7 +1124,7 @@ msgstr "Seleção do Servidor" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Processos" @@ -1144,7 +1144,7 @@ msgstr "" msgid "Issued queries" msgstr "Consultas SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Estatísticas do registros" @@ -2000,7 +2000,7 @@ msgstr "compartilhado" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabelas" @@ -2136,7 +2136,7 @@ msgid "Documentation" msgstr "Documentação" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "consulta SQL" @@ -2165,7 +2165,7 @@ msgid "Create PHP Code" msgstr "Criar código PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Atualizar" @@ -4853,7 +4853,7 @@ msgstr "Compressão" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Nenhum" @@ -5118,7 +5118,7 @@ msgid "The row has been deleted" msgstr "Registro eliminado" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Matar" @@ -5212,7 +5212,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Status do InnoDB" @@ -5699,7 +5699,7 @@ msgstr "MIME-type disponíveis" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Servidor" @@ -6405,13 +6405,13 @@ msgid "Slave status" msgstr "Exibir status dos escravos" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variáveis" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -6652,12 +6652,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Log binário" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variáveis" @@ -6956,7 +6956,7 @@ msgstr "Definição da PARTIÇÃO" msgid "+ Add a new value" msgstr "Adicionar novo usuário" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Tempo" @@ -7198,7 +7198,7 @@ msgid "Protocol version" msgstr "Versão do Protocolo" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Usuário" @@ -7678,17 +7678,17 @@ msgstr "A tabela \"%s\" não existe!" msgid "Select binary log to view" msgstr "Selecionar log binário para exibir" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Arquivos" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Truncar as consultas SQL exibidas" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Mostrar consultas completas" @@ -8220,7 +8220,7 @@ msgstr "Os privilégios foram recarregados com sucesso." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 #, fuzzy msgid "Show master status" msgstr "Exibir status dos escravos" @@ -8361,12 +8361,34 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Atualizar" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minuto" +msgstr[1] "Minuto" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Segundo" +msgstr[1] "Segundo" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Processo %s foi morto com sucesso." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8374,189 +8396,160 @@ msgstr "" "phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já " "esteja fechado." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Manipulador" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Consulta do cache" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Processos" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Dados temporários" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Inserções demoradas" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Chave do cache" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Junções" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Ordenando" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Coordenador da transação" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Nivelar (fechar) todas as tabelas" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Exibir tabelas abertas" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Exibir servidores escravos" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Exibir status dos escravos" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Nivelar cache da consulta" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Informações de Runtime" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Seleção do Servidor" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Atualizar" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Segundo" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Segundo" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "Minuto" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Não mudar a senha" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Exibir tabelas abertas" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relações" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "por hora" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "por minuto" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "por segundo" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Tipo de consulta" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Esse servidor MySQL está rodando por %s. Ele foi iniciado em %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 #, fuzzy msgid "Replication status" msgstr "Replicação" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Tráfego" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8564,41 +8557,41 @@ msgstr "" "Em servidores ocupados, os contadores de byte podem sobrecarregar, então as " "estatísticas como relatadas pelo servidor MySQL podem estar incorretas." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Recebido" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Enviar" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Conexões" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "máx. de conexões concorrentes" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Tentativas falharam" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Abortado" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Caso queira ativar o SSL para conexões com o servidor MySQL." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8608,16 +8601,16 @@ msgstr "" "excederam o valor do binlog_cache_size e usaram o arquivo temporário para " "armazenar enunciados da transação." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "O número de transações que usaram o cache do log binário temporário." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8629,11 +8622,11 @@ msgstr "" "grande, você pode aumentar o valor de tmp_table_size para fazer as tabelas " "temporárias serem baseadas na memória ou invés de baseadas no disco" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Quantos arquivos temporários o MySQL tinha criado." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8641,7 +8634,7 @@ msgstr "" "O número de tabelas temporárias na memória criadas automaticamente pelo " "servidor enquanto executava os enunciados." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8649,7 +8642,7 @@ msgstr "" "O número de linhas escritas com INSERT DELAYED para cada erro ocorrido " "(provavelmente chave duplicada)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8657,23 +8650,23 @@ msgstr "" "O número de processos manipuladores de INSERT DELAYED em uso. Cada tabela " "diferente em que se usa INSERT DELAYED começa seu próprio processo." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "O número de linhas INSERT DELAYED escritas." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "O número de enunciados FLUSH executados." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "O número de enunciados COMMIT internos." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "O número de vezes que uma linha foi deletada de uma tabela." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8683,7 +8676,7 @@ msgstr "" "ele sabe sobre uma tabela com um nome dado. Isto é chamado descoberta. " "Handler_discover indica o número de vezes que tabelas foram descobertas." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8693,7 +8686,7 @@ msgstr "" "alto, sugere que o usuário está fazendo muitas varreduras completas do " "índice; por exemplo, SELECT col1 FROM foo, supondo que col1 é um índice." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8702,7 +8695,7 @@ msgstr "" "alto, é uma boa indicação de que suas consultas e tabelas estejam " "corretamente indexadas." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8712,7 +8705,7 @@ msgstr "" "incrementado se você estiver consultando uma coluna do índice com uma " "restrição da escala ou se você estiver fazendo uma varredura do índice." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8720,7 +8713,7 @@ msgstr "" "O número de requisições para ler a linha precedente na ordem da chave. Este " "método de leitura é usado principalmente para otimizar ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8733,7 +8726,7 @@ msgstr "" "faça a varredura de tabelas inteiras ou você tem junções que não usam as " "chaves corretamente." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8745,37 +8738,37 @@ msgstr "" "sugere que suas tabelas não estão corretamente indexadas ou que suas " "consultas não estão escritas para tomar vantagem dos índices que você têm." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "O número de enunciados ROLLBACK internos." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "O número de requisições para atualizar uma linha na tabela." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "O número de requisições para inserir uma linha na tabela." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "O número de páginas que contém dados (sujos ou limpos)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "O número de páginas atualmente sujas." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "O número de páginas do buffer pool que foram requisitadas para serem " "niveladas." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "O número de páginas livres." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8785,7 +8778,7 @@ msgstr "" "que estão sendo lidas ou escritas atualmente ou aquela não pode ser nivelada " "ou removido por alguma outra razão." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8797,11 +8790,11 @@ msgstr "" "Este valor pode também ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Tamanho total do buffer pool, em páginas." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8810,7 +8803,7 @@ msgstr "" "uma consulta faz a varredura de uma parcela grande de uma tabela mas na " "ordem aleatória." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8818,11 +8811,11 @@ msgstr "" "O número de ler-adiante sequenciais InnoDB iniciado. Isto acontece quando o " "InnoDB faz uma varredura sequencial completa da tabela." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "O número de requisições de leitura lógica InnoDB que foram feitas." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8830,7 +8823,7 @@ msgstr "" "O número de leituras lógicas que o InnoDB não pode satisfer do buffer pool e " "teria que fazer uma leitura de página simples" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8844,55 +8837,55 @@ msgstr "" "primeiramente. Este contador conta instâncias dessas esperas. Se o tamanho " "do buffer pool for ajustado corretamente, este valor deve ser pequeno." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "O número de escritas feitas para o buffer pool do InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "O número de operações fsync() à fazer." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "O número atual de operações fsync() pendentes." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "O número atual de leituras pendentes." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "O número atual de escritas pendentes." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "O montante de leitura de dados à fazer, em bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "O número total de dados lidos." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "O número total de dados escritos." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "O montante de escrita de dados à fazer, em bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "O número de escritas doublewrite que foram executadas e o número de páginas " "que foram escritas para esta finalidade." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "O número de escritas doublewrite que foram executadas e o número de páginas " "que foram escritas para esta finalidade." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8900,35 +8893,35 @@ msgstr "" "O número de esperas geradas porque o buffer do log era muito pequeno e teve " "que esperar que fosse nivelada antes de continuar." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "O número de requisições de escrita de log." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "O número de escritas físicas para o arquivo de log." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "O número de escritas fsyncs feitas no arquivo de log." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "O número de arquivos de log fsyncs pendentes." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Escrita de arquivos de log pendentes." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "O número de bytes escritos para o arquivo de log." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "O número de páginas criadas." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8937,52 +8930,52 @@ msgstr "" "contados em páginas; o tamanho de página permite que sejam facilmente " "convertidos em bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "O número de páginas lidas." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "O número de páginas escritas." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "O número de linhas trancadas que estão esperando atualmente." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "O tempo médio para recuperar uma linha trancada, em milísegundo." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "O tempo total gasto para recuperar linhas trancadas, em milísegundo." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "O máximo de tempo para recuperar uma linha trancada, em milísegundo." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" "O número de vezes que uma linhas trancada teve que esperar para ser escrita." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "O número de linhas deletadas de tabelas InnoDB." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "O número de linhas inseridas em tabelas InnoDB." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "O número de linhas lidas de tabelas InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "O número de linhas atualizadas em tabelas InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8990,7 +8983,7 @@ msgstr "" "O número de blocos chave no cache chave que mudaram mas não foram nivelados " "ainda ao disco. Antes era chamado de Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8998,7 +8991,7 @@ msgstr "" "O número de blocos não usados no cache chave. Você pode usar este valor para " "determinar quanto do cache chave está no uso." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9008,11 +9001,11 @@ msgstr "" "indica o número máximo de blocos que estiveram sempre em uso em algum " "momento." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "O número de requisições para ler um bloco chave do cache." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9022,15 +9015,15 @@ msgstr "" "alto, então seu valor do key_buffer_size é provavelmente muito baixo. A taxa " "de falta de cache pode ser calculada como Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "O número de requisições para escrever um bloco chave para o cache." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "O número de escritas físicas para um bloco chave para o disco." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9041,18 +9034,18 @@ msgstr "" "a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi " "compilada ainda." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "O número de linhas esperando para serem escritas na fila de INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9060,39 +9053,39 @@ msgstr "" "O número de tabelas que devem estar abertas. Se aberta, as tabelas são " "grandes, o valor do cache de suas tabelas é provavelmente muito pequeno." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "O número de arquivos que estão abertos." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "O número de streams que estão abertos (usados principalmente para log)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "O número de tabelas que estão abertas." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "O montante de memória livre para a consulta do cache." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "O número de hits do cache." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "O número de consultas adicionadas no cache." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9105,7 +9098,7 @@ msgstr "" "recentemente\" (LRU - least recently used) para decidir qual consulta " "remover do cache." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9113,19 +9106,19 @@ msgstr "" "O número de consultas sem cache (não cacheável, ou não pode ser cacheável " "devido à configuração em query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "O número de consultas registradas no cache." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "O número total de blocos na consulta do cache." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "O status da replicação à prova de falhas (não implementado)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9133,13 +9126,13 @@ msgstr "" "O número de junções que não usaram índices. Se este valor não for 0, você " "deve cuidadosamente verificar os índices de suas tabelas." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "O número de junções que usaram uma pesquisa de escala na tabela de " "referência." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9148,7 +9141,7 @@ msgstr "" "após cada linha. (Se este não for 0, você deve cuidadosamente verificar os " "índices de suas tabelas.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9156,16 +9149,16 @@ msgstr "" "O número de junções que usaram escalas na primeira tabela. (Não é " "normalmente crítico mesmo se este for grande.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "O número junções que fez uma varredura completa da primeira tabela." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "O número de tabelas temporárias abertas atualmente pelo processo SQL escravo." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9173,11 +9166,11 @@ msgstr "" "Número total (desde o início) de vezes que o processo SQL escravo de " "replicação teve que tentar transações." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Isto é ON se este servidor é um escravo conectado à um mestre." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9185,12 +9178,12 @@ msgstr "" "O número de processos que levaram mais que slow_launch_time segundos para " "serem criadas." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "O número de consultas que levaram mais que long_query_time segundos." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9200,24 +9193,24 @@ msgstr "" "valor for alto, você deve considerar aumentar o valor da variável " "sort_buffer_size do sistema." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "O número de ordenações que foram feitas com escalas." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "O número de linhas ordenadas." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "O número de ordenações que foram feitas scaneando a tabela." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" "O número de vezes que uma tabela trancada foi recuperada imediatamente." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9229,7 +9222,7 @@ msgstr "" "performance, você precisa primeiramente otimizar suas consultas e então, ou " "dividir sua tabela ou usar replicação." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9239,11 +9232,11 @@ msgstr "" "ser calculada como Threads_created/conexões. Se este valor for vermelho você " "deve aumentar seu thread_cache_size" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "O número de conexões atualmente abertas." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9255,7 +9248,7 @@ msgstr "" "isso não da um aumento notável de performance se você tem uma boa " "implementação de processos.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "O número de processos que não estão dormindo." @@ -10396,6 +10389,11 @@ msgstr "Nome da VISÃO" msgid "Rename view to" msgstr "Renomear a visão para " +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Segundo" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/ro.po b/po/ro.po index 3a70fdff4a..80e806d529 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" @@ -85,7 +85,7 @@ msgstr "Nume cheie" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Descriere" @@ -274,7 +274,7 @@ msgstr "Baza de date %s a fost copiata la %s" msgid "Rename database to" msgstr "Redenumire bază de date în" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Comanda" @@ -647,7 +647,7 @@ msgstr "Vizualizare" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replicare" @@ -760,7 +760,7 @@ msgstr "Tabelele urmărite" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -778,7 +778,7 @@ msgstr "Creat(ă)" msgid "Updated" msgstr "Actualizat(ă)" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stare" @@ -1107,17 +1107,17 @@ msgstr "" msgid "Edit" msgstr "Editare" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Alegerea serverului" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "Comanda SQL" @@ -1129,13 +1129,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1167,7 +1167,7 @@ msgstr "Alegerea serverului" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Procese" @@ -1186,7 +1186,7 @@ msgstr "" msgid "Issued queries" msgstr "Comanda SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Statisticile rîndului" @@ -2078,7 +2078,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabele" @@ -2217,7 +2217,7 @@ msgid "Documentation" msgstr "Documentație" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "Comanda SQL" @@ -2247,7 +2247,7 @@ msgid "Create PHP Code" msgstr "Creează cod PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Reîncarcă" @@ -4976,7 +4976,7 @@ msgstr "Compresie" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Nici unul(a)" @@ -5239,7 +5239,7 @@ msgid "The row has been deleted" msgstr "Linia a fost ștearsă" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Oprește" @@ -5332,7 +5332,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Stare InnoDB" @@ -5852,7 +5852,7 @@ msgstr "Tipuri MIME disponibile" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Gazda" @@ -6555,13 +6555,13 @@ msgid "Slave status" msgstr "Afișează stare sclav" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variabil" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Valoare" @@ -6804,12 +6804,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Jurnal binar" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variabile" @@ -7109,7 +7109,7 @@ msgstr "Definiție PARTIȚIE" msgid "+ Add a new value" msgstr "Adaugă un server nou" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Timp" @@ -7352,7 +7352,7 @@ msgid "Protocol version" msgstr "Versiune protocol" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Utilizator" @@ -7833,17 +7833,17 @@ msgstr "Tabelul „%s” nu există!" msgid "Select binary log to view" msgstr "Selectați jurnalul binar pentru vizualizare" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Fișiere" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Truncare comenzi afișate" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Afișare comandă întreagă" @@ -8383,7 +8383,7 @@ msgstr "Drepturile au fost reîncarcate cu succes." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 #, fuzzy msgid "Show master status" msgstr "Afișează stare sclav" @@ -8524,12 +8524,36 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Reîncarcă" + +#: server_status.php:31 +#, 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.php:33 +#, 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.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Firul de execuție %s a fost oprit cu succes." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8537,189 +8561,160 @@ msgstr "" "phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost " "deja oprit." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Gestionar" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Cache interogări" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Fire" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Date temporare" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Inserări întîrziate" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Key cache" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Joncțiuni" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Sortare" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Coordonator tranzacție" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Afișează tabele deschise" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Afișează gazde sclavi" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Afișează stare sclav" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Reinițializare cache interogare" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Informații rulare" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Alegerea serverului" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Reîncarcă" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "pe secundă" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "pe secundă" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "în folosință" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nu schimbați parola" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Afișează tabele deschise" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Legături" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "pe oră" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "pe minut" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "pe secundă" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Tip interogare" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Acest server MySQL rulează de %s. S-a lansat la %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 #, fuzzy msgid "Replication status" msgstr "Replicare" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Trafic" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8727,40 +8722,40 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Recepționat" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Trimis" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Conexiuni" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "conexiuni concurente (maxim)" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Încercări nereușite" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Întrerupt" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Comprimă conexiunea la serverul MySQL" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8770,16 +8765,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8791,11 +8786,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Cîte fișiere temporare a creat mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8803,7 +8798,7 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8811,7 +8806,7 @@ msgstr "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8819,23 +8814,23 @@ msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8845,96 +8840,96 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." +#: server_status.php:863 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: server_status.php:864 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: server_status.php:865 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: server_status.php:866 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + +#: server_status.php:867 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + #: server_status.php:868 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." #: server_status.php:869 -msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." -msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." - -#: server_status.php:870 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: server_status.php:871 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." - -#: server_status.php:872 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - -#: server_status.php:873 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Numărul de cereri de a insera un rînd într-un tabel." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Numărul de pagini conținînd date (curate sau murdare)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Numărul de pagini actualmente murdare." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Numărul de pagini libere." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8944,7 +8939,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8956,11 +8951,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8968,7 +8963,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8976,11 +8971,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8988,7 +8983,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9002,55 +8997,55 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9058,35 +9053,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Numărul de pagini create." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9094,51 +9089,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Numărul de pagini citite." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Numărul de pagini scrise." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Numărul de rînduri citite din tabelele InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Numărul de rînduri actualizate în tabelele InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9146,7 +9141,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9154,7 +9149,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9164,11 +9159,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9178,15 +9173,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9196,17 +9191,17 @@ msgstr "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9214,38 +9209,38 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Numărul de tabele ce sînt deschise." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Numărul de nimeriri în cache." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Numărul de interogări adăugate la cache." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9257,7 +9252,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9265,19 +9260,19 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Numărul de interogări înregistrate în cache." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Numărul total de blocuri în cache-ul interogării." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9285,11 +9280,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9297,7 +9292,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9305,15 +9300,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9321,11 +9316,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9333,13 +9328,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "The number of queries that have taken more than long_query_time seconds." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9349,23 +9344,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Numărul de rînduri sortate." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9377,7 +9372,7 @@ msgstr "" "should first optimize your queries, and then either split your table or " "tables or use replication." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9387,11 +9382,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Numărul de conexiuni deschise momentan." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9403,7 +9398,7 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." @@ -10550,6 +10545,11 @@ msgstr "Denumire VIZIUNE" msgid "Rename view to" msgstr "Redenumire tabel la" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "pe secundă" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/ru.po b/po/ru.po index 9bdd2a03c7..2dc25e7b58 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-16 22:26+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" @@ -85,7 +85,7 @@ msgstr "Имя индекса" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Описание" @@ -272,7 +272,7 @@ msgstr "База данных %s была скопирована в %s" msgid "Rename database to" msgstr "Переименовать базу данных в" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Команда" @@ -630,7 +630,7 @@ msgstr "Представление" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Репликация" @@ -737,7 +737,7 @@ msgstr "Отслеживаемые таблицы" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Создан" msgid "Updated" msgstr "Обновлён" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Состояние" @@ -1062,15 +1062,15 @@ msgstr "Закрыть" msgid "Edit" msgstr "Изменить" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "Графический вывод трафика" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "Графический вывод соединений и процессов" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "Графический вывод запросов" @@ -1081,13 +1081,13 @@ msgstr "Статические данные" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Всего" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "Другое" @@ -1119,7 +1119,7 @@ msgstr "Трафик сервера" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Процессы" @@ -1139,7 +1139,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL запросы" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Статистика запросов" @@ -1948,7 +1948,7 @@ msgstr "общий" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Таблицы" @@ -2083,7 +2083,7 @@ msgid "Documentation" msgstr "Документация" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-запрос" @@ -2112,7 +2112,7 @@ msgid "Create PHP Code" msgstr "PHP-код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Обновить" @@ -4886,7 +4886,7 @@ msgstr "Компрессия:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Нет" @@ -5119,7 +5119,7 @@ msgid "The row has been deleted" msgstr "Запись была удалена" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Завершить" @@ -5209,7 +5209,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Буферный пул" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Состояние InnoDB" @@ -5717,7 +5717,7 @@ msgstr "Отобразить MIME типы" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Хост" @@ -6438,13 +6438,13 @@ msgid "Slave status" msgstr "Статус Slave" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Переменная" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Значение" @@ -6673,12 +6673,12 @@ msgid "Synchronize" msgstr "Синхронизировать" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Бинарный журнал" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Переменные" @@ -6960,7 +6960,7 @@ msgstr "Определение разделов (PARTITION)" msgid "+ Add a new value" msgstr "+ Добавить новое значение" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Время" @@ -7159,7 +7159,7 @@ msgid "Protocol version" msgstr "Версия протокола" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Пользователь" @@ -7609,17 +7609,17 @@ msgstr "Файл не существует" msgid "Select binary log to view" msgstr "Выберите бинарный журнал для просмотра" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Файлов" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Сокращенное отображение запросов" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Развернутое отображение запросов" @@ -8152,7 +8152,7 @@ msgstr "Головной сервер успешно изменён на %s" msgid "This server is configured as master in a replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Показать состояние головного сервера" @@ -8303,12 +8303,34 @@ msgstr "" "Данный сервер не настроен в качестве подчинённого для процесса репликации. " "Хотите произвести настройку?" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "Частота обновления" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "minutes" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "минуты" +msgstr[1] "минуты" +msgstr[2] "минуты" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "секунда" +msgstr[1] "секунда" +msgstr[2] "секунда" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесс %s был успешно завершен." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8316,144 +8338,123 @@ msgstr "" "phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был " "закрыт." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Обработчик" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Кеш запросов" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Потоки" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Временные данные" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Отложенные вставки" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Кеш индекса" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Объединения" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Сортировка" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Координатор транзакций" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Закрыть все таблицы" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Список открытых таблиц" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Информация о подчиненных серверах" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Информация о состоянии сервера репликации" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Дефрагментировать кеш запросов" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Текущее состояние MySQL" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "Трафик сервера" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "Все переменные состояния" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "Частота обновления" - -#: server_status.php:398 server_status.php:431 -msgid "second" -msgstr "секунда" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -msgid "seconds" -msgstr "секунды" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -msgid "minutes" -msgstr "минуты" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "Содержит слово:" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "Выводить только предупреждающие значения" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "Фильтр по категории..." -#: server_status.php:482 +#: server_status.php:477 msgid "Related links:" msgstr "Связанные ссылки:" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "в час" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "в минуту" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "в секунду" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Тип запроса" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "Кол-во" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "Сетевой трафик с момента запуска: %s" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL сервер работает %s. Время запуска: %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8461,16 +8462,16 @@ msgstr "" "Данный MySQL сервер настроен головным и подчиненным в процессе " "репликации." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Данный сервер настроен подчиненным в процессе репликации." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8478,15 +8479,15 @@ msgstr "" "Для получения подробной информации о состоянии репликации сервера, " "пожалуйста, перейдите в раздел репликации." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Состояние репликации" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Трафик" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8494,39 +8495,39 @@ msgstr "" "На загруженном сервере, побайтовые счетчики могут переполняться, таким " "образом, статистика, передаваемая MySQL-сервером, может быть некорректной." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Принято" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Отправлено" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Соединения" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "Максимально одновременных" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Неудачных попыток" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Прерваны" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Количество неудавшихся попыток соединения к серверу MySQL." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8536,16 +8537,16 @@ msgstr "" "значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения " "были сохранены во временном файле." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Количество транзакций, использовавших кеш бинарного журнала." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Количество попыток соединения (успешных либо нет) к серверу MySQL." -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8557,11 +8558,11 @@ msgstr "" "велико, следует увеличить значение переменной tmp_table_size, чтобы " "временные таблицы располагались в памяти, а не на жестком диске." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8569,7 +8570,7 @@ msgstr "" "Количество временных таблиц в памяти, созданных сервером автоматически в " "процессе выполнения SQL-выражений." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8577,31 +8578,31 @@ msgstr "" "Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, " "например, из-за дублирования ключей." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Количество обрабатываемых запросов INSERT DELAYED." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" "Количество строк записанных в режиме отложенной вставки данных (INSERT " "DELAYED)." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Количество выполненных команд FLUSH." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Количество внутренних команд COMMIT." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Количество запросов на удаление строк из таблицы." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8611,7 +8612,7 @@ msgstr "" "определенным именем. Этот процесс называется обнаружением. Handler_discover " "- число обнаружений таблиц." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8622,7 +8623,7 @@ msgstr "" "индекса. Например, SELECT col1 FROM foo, при условии, что col1 " "проиндексирован." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8631,7 +8632,7 @@ msgstr "" "значение переменной говорит о том, что запросы и таблицы проиндексированы " "надлежащим образом." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8641,7 +8642,7 @@ msgstr "" "индексов. Значение увеличивается при запросе индексного столбца с " "ограничением по размеру или при сканировании индекса." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8649,7 +8650,7 @@ msgstr "" "Количество запросов на чтение предыдущей строки при ниспадающей сортировке " "индекса. Обычно используется при оптимизации: ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8662,7 +8663,7 @@ msgstr "" "требующих полного сканирования таблиц, наличием объединений не использующих " "индексы надлежащим образом." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8674,39 +8675,39 @@ msgstr "" "что таблицы не проиндексированы надлежащим образом или запросы не используют " "преимущества индексов." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Количество внутренних команд ROLLBACK." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Количество запросов на обновление строк в таблице." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Количество запросов на вставку строк в таблицу." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Количество страниц содержащих данные ("грязные" или "" "чистые")." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Текущее количество "грязных" страниц." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Количество страниц буферного пула, над которыми был осуществлен процесс " "очистки (FLUSH)." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Количество свободных страниц." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8716,7 +8717,7 @@ msgstr "" "страницами осуществляется процесс чтения или записи, либо они не могут быть " "очищены или удалены по какой-либо другой причине." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8728,11 +8729,11 @@ msgstr "" "Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Общий размер буферного пула (в страницах)." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8740,7 +8741,7 @@ msgstr "" "Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это " "происходит, когда запрос сканирует большую часть таблицы в случайном порядке." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8749,11 +8750,11 @@ msgstr "" "происходит, когда InnoDB выполняет полное последовательное сканирование " "таблицы." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Количество последовательных запросов на чтение, выполненных InnoDB." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8761,7 +8762,7 @@ msgstr "" "Количество последовательных запросов на чтение, которые InnoDB не смог " "выполнить из буферного пула и использовал постраничное чтение." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8775,55 +8776,55 @@ msgstr "" "ожиданий. Если размер буферного пула был установлен должным образом, " "значение будет небольшим." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Количество записей, выполненных в буферный пул InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Количество операций fsync(), выполненных на данный момент." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Текущее количество незавершенных операций fsync()." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Текущее количество незавершенных операций чтения." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Текущее количество незавершенных операций записи." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Сумма данных (в байтах), прочитанных на данный момент." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Общее количество операций чтения данных." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Общее количество операций записи данных." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Сумма данных (в байтах), записанных на данный момент." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8831,36 +8832,36 @@ msgstr "" "Количество ожиданий очистки журнального буфера, вследствие малого его " "размера." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Количество запросов на запись в журнал." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Количество физических записей в файл журнала." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Количество записей с помощью fsync(), сделанных в файл журнала." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" "Количество незавершенных попыток синхронизации с помощью операции fsync()." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Количество незавершенных запросов на запись в журнал." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Объем данных в байтах, записанных в файл журнала." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Количество созданных страниц." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8869,51 +8870,51 @@ msgstr "" "приводятся в страницах, но зная объем страницы, можно перевести эти значения " "в байты." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Количество прочитанных страниц." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Количество записанных страниц." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Текущее количество ожиданий блокировок строк." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Среднее время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Общее время, ожидания блокировок строк (в миллисекундах)." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Общее количество ожиданий блокировки строк." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Количество строк, удаленных из таблиц InnoDB." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Количество строк, добавленных в таблицы InnoDB." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Количество строк, прочитанных из таблиц InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Количество строк, обновленных в таблицах InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8921,7 +8922,7 @@ msgstr "" "Количество блоков в кеше индекса, которые были изменены, но еще не записаны " "на диск. Данный параметр также известен как Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8929,7 +8930,7 @@ msgstr "" "Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет " "определить как полно используется кеш индекса." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8938,11 +8939,11 @@ msgstr "" "Количество используемых блоков в кеше индекса. Данное значение - " "максимальное количество блоков, использованных одновременно." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Количество запросов на чтение блока из кеша индексов." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8953,15 +8954,15 @@ msgstr "" "key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан " "как: Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Количество запросов на запись блока в кеш индекса." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Количество физических операций записи блока индексов на диск." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8972,7 +8973,7 @@ msgstr "" "одного запроса. Изначальное нулевое значение, означает, что процесса " "компиляции запроса еще не было." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -8980,11 +8981,11 @@ msgstr "" "Максимальное количество соединений использованных одновременно начиная с " "запуска сервера." -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8992,21 +8993,21 @@ msgstr "" "Общее количество открывавшихся таблиц. При большом значении переменной " "рекомендуется увеличить размер кеша таблиц (table_cache)." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Количество открытых файлов." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Количество открытых потоков (применяется к файлам журналов). Потоком " "называется файл, открытый с помощью функции fopen()." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Количество открытых таблиц." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -9016,21 +9017,21 @@ msgstr "" "указывать на фрагментацию, проблема которой решается выполнением запроса " "FLUSH QUERY CACHE." -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Объем свободной памяти для кеша запросов." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" "Количество "попаданий" в кеш запросов, т.е. сколько запросов было " "удовлетворено запросами, находящимися в кеше." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Количество запросов, добавленных в кеш запросов." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9043,7 +9044,7 @@ msgstr "" "не использующиеся страницы заменяются новыми) при принятии решения об " "удаления запроса из кеша." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9051,19 +9052,19 @@ msgstr "" "Количество запросов, которые оказались некешируемыми или для которых " "кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Количество запросов, зарегистрированных в кеше." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Состояние отказоустойчивой репликации (пока не реализовано)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9071,13 +9072,13 @@ msgstr "" "Количество запросов-объединений, выполненных без использования индексов. " "Если значение переменной не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Количество запросов-объединений, выполненных с использованием поиска по " "диапазону в таблице, на которую делается ссылка." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9086,7 +9087,7 @@ msgstr "" "диапазону для выборки строк из вторичной таблицы. Если значение переменной " "не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9095,18 +9096,18 @@ msgstr "" "диапазону в первой таблице. Обычно значение этой переменной не критично, " "даже если оно велико." -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" "Количество запросов-объединений, выполненных с использованием полного поиска " "по первой таблице." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Количество временных таблиц, открытых в настоящий момент подчиненным потоком." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9114,13 +9115,13 @@ msgstr "" "Общее количество повторов транзакций подчиненным потоком репликации с " "момента запуска." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Присваивается значение ON, если данный сервер функционирует как подчиненный, " "подключенный к главному." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9128,12 +9129,12 @@ msgstr "" "Количество потоков, на создание которых потребовалось более чем " "slow_launch_time секунд." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Количество запросов, выполнявшихся более long_query_time секунд." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9142,28 +9143,28 @@ msgstr "" "Количество проходов, сделанных алгоритмом сортировки. При большом значении " "следует увеличить значение переменной sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" "Количество операций сортировки, выполненных с использованием диапазона." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Количество отсортированных строк." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" "Количество операций сортировки, выполненных с использованием полного " "сканирования таблицы." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Количество запросов на блокировку таблицы, которые были удовлетворены " "немедленно." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9175,7 +9176,7 @@ msgstr "" "производительностью, необходимо сначала оптимизировать свои запросы, а затем " "разбить свою таблицу (или таблицы) или использовать репликацию." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9185,11 +9186,11 @@ msgstr "" "вычислить по формуле Threads_created/Connections. Если это значение окрашено " "в красный цвет - вам следует увеличить thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Количество открытых текущих соединений." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9201,7 +9202,7 @@ msgstr "" "thread_cache_size (это не даст существенного выигрыша в производительности, " "при хорошей реализации потоков)." -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Количество процессов, находящихся в активном состоянии." @@ -10351,6 +10352,9 @@ msgstr "VIEW название" msgid "Rename view to" msgstr "Переименовать представление в" +#~ msgid "seconds" +#~ msgstr "секунды" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Сравнение времени выполнения запроса (в микросекундах)" diff --git a/po/si.po b/po/si.po index aa6924b1d7..3ade63dda4 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-04 15:35+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" @@ -83,7 +83,7 @@ msgstr "යතුරු නම" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "විස්තරය" @@ -268,7 +268,7 @@ msgstr "%s දත්තගබඩාව %s වෙතට පිටපත් කර msgid "Rename database to" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "විධානය" @@ -621,7 +621,7 @@ msgstr "දසුන" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "අනුරූ කරණය" @@ -728,7 +728,7 @@ msgstr "අවධානය සක්‍රීය වගු" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -746,7 +746,7 @@ msgstr "සාදන ලදි" msgid "Updated" msgstr "යාවත්කාලීන කරන ලදි" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "තත්වය" @@ -1052,17 +1052,17 @@ msgstr "වසන්න" msgid "Edit" msgstr "සංස්කරණය කරන්න" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "සේවාදායකයේ තේරීම" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -1075,13 +1075,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "මුළු එකතුව" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1113,7 +1113,7 @@ msgstr "සේවාදායකයේ තේරීම" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "ක්‍රියාවලිය" @@ -1133,7 +1133,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL විමසුම" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "විමසුම් සංඛ්‍යාලේඛන" @@ -1940,7 +1940,7 @@ msgstr "හවුල්" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "වගු" @@ -2072,7 +2072,7 @@ msgid "Documentation" msgstr "ලියකියවිලි" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL විමසුම" @@ -2101,7 +2101,7 @@ msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "අලුත් කරන්න" @@ -4704,7 +4704,7 @@ msgstr "හැකිළීම:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "කිසිවක් නැත" @@ -4951,7 +4951,7 @@ msgid "The row has been deleted" msgstr "පෙළ ඉවත් කරන ලදි" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Kill" @@ -5041,7 +5041,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5514,7 +5514,7 @@ msgstr "Available MIME types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "දායකයා" @@ -6211,13 +6211,13 @@ msgid "Slave status" msgstr "උපතත්වයන් පෙන්වන්න" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "විචල්‍යය" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "අගය" @@ -6449,12 +6449,12 @@ msgid "Synchronize" msgstr "සමමුහුර්ත කරන්න" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "ද්වීමය ලොගය" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "විචල්‍යනයන්" @@ -6749,7 +6749,7 @@ msgstr "" msgid "+ Add a new value" msgstr "+ නව භාවිතා කරන්නෙක් එක් කරන්න" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "වේලාව" @@ -6970,7 +6970,7 @@ msgid "Protocol version" msgstr "ප්‍රෝටකෝල අනුවාදය" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "භාවිතා කරන්නා" @@ -7411,17 +7411,17 @@ msgstr "ගොනුව නොපවතියි" msgid "Select binary log to view" msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය තෝරන්න" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "ගොනු" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" @@ -7939,7 +7939,7 @@ msgstr "Master සේවාදායකය %s වෙත සාර්ථකව msgid "This server is configured as master in a replication process." msgstr "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක master ලෙස සකසා ඇත." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Master හි තත්වය පෙන්වන්න" @@ -8080,174 +8080,167 @@ msgstr "" "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක slave ලෙස සකසා නැත. එසේ සකස් " "කිරීමට ඔබ කැමතිද?" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "අලුත් කරන්න" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "මිනිත්තු" +msgstr[1] "මිනිත්තු" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "තත්පර" +msgstr[1] "තත්පර" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "හසුරුවනය" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "විමසුම් කෑෂ්" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "ත්‍රෙඩයන්" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "තාවකාලික දත්ත" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "ප්‍රමාදිත ඇතුළු කිරීම්" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "යතුරු කෑෂ් කිරීම" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "ඈඳුම්" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "තේරීම" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "විවෘත වගු පෙන්වන්න" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "උපදායකයන් පෙන්වන්න" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "උපතත්වයන් පෙන්වන්න" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "ධාවන කාල තොරතුරු" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "සේවාදායකයේ තේරීම" -#: server_status.php:387 +#: server_status.php:402 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "slave තත්ව වගුව බලන්න" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "අලුත් කරන්න" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "තත්පර" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "තත්පර" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "මිනිත්තු" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "මුරපදය වෙනස් නොකරන්න" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "විවෘත වගු පෙන්වන්න" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "පැයකට" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "මිනිත්තුවකට" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "තප්පරයකට" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "විමසුම් වර්ගය" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "මෙම MySQL සේවාදායකය %s තිස්සේ ක්‍රියාත්මකයි. මෙය ඇරඹුයේ %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8255,15 +8248,15 @@ msgstr "" "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී master හා slave " "ලෙස ක්‍රියාකරයි." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී master ලෙස ක්‍රියාකරයි." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී slave ලෙස ක්‍රියාකරයි." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8271,15 +8264,15 @@ msgstr "" "සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ " "අංශය වෙත යන්න" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "අනුරූ කරණයේ තත්වය" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "තදබදය" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8287,41 +8280,41 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "ලබන ලද" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "යවන ලද" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "සම්බන්ධතා" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "උපරිම සමගාමී සම්බන්ධතා" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "අසාර්ථක උත්සාහයන්" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "අත්හැර දමන ලදි" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "හැඳුනුම් අංකය" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "The number of fsync() writes done to the log file." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8331,16 +8324,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8352,11 +8345,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8364,7 +8357,7 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8372,7 +8365,7 @@ msgstr "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8380,23 +8373,23 @@ msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8406,96 +8399,96 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." +#: server_status.php:863 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: server_status.php:864 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: server_status.php:865 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: server_status.php:866 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + +#: server_status.php:867 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + #: server_status.php:868 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." #: server_status.php:869 -msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." -msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." - -#: server_status.php:870 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: server_status.php:871 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." - -#: server_status.php:872 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - -#: server_status.php:873 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: server_status.php:874 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "නිදහස් පිටු ගණන." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8505,7 +8498,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8517,11 +8510,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8529,7 +8522,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8537,11 +8530,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8549,7 +8542,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8563,55 +8556,55 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8619,35 +8612,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsync() writes done to the log file." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8655,51 +8648,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "කියවන ලද පිටු ගණන." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "ලියන ලද පිටු ගණන." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8707,7 +8700,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8715,7 +8708,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8725,11 +8718,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8739,15 +8732,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8757,17 +8750,17 @@ msgstr "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8775,38 +8768,38 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8818,7 +8811,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8826,19 +8819,19 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8846,11 +8839,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8858,7 +8851,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8866,15 +8859,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8882,11 +8875,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8894,13 +8887,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "The number of queries that have taken more than long_query_time seconds." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8910,23 +8903,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8938,7 +8931,7 @@ msgstr "" "should first optimize your queries, and then either split your table or " "tables or use replication." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8948,11 +8941,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8964,7 +8957,7 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." @@ -10083,6 +10076,11 @@ msgstr "දසුනේ නම" msgid "Rename view to" msgstr "දසුනේ නම වෙනස් කරන්න" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "තත්පර" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "විමසුම් සඳහා ගතවූ කාල සැසඳිම (මයික්‍රෝ තත්පර)" diff --git a/po/sk.po b/po/sk.po index 205ac477c3..1b346b59ce 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-03 14:53+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" @@ -84,7 +84,7 @@ msgstr "Kľúčový názov" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Popis" @@ -271,7 +271,7 @@ msgstr "Databáza %s bola skopírovaná na %s" msgid "Rename database to" msgstr "Premenovať databázu na" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Príkaz" @@ -628,7 +628,7 @@ msgstr "Pohľad" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikácia" @@ -735,7 +735,7 @@ msgstr "Sledované tabuľky" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -753,7 +753,7 @@ msgstr "Vytvorené" msgid "Updated" msgstr "Aktualizované" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stav" @@ -1063,17 +1063,17 @@ msgstr "Zavrieť" msgid "Edit" msgstr "Upraviť" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Voľba serveru" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -1086,13 +1086,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Celkom" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1124,7 +1124,7 @@ msgstr "Voľba serveru" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Procesy" @@ -1144,7 +1144,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL dopyty" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Štatistika dopytov" @@ -1961,7 +1961,7 @@ msgstr "zdieľaný" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabuľky" @@ -2093,7 +2093,7 @@ msgid "Documentation" msgstr "Dokumentácia" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL dopyt" @@ -2122,7 +2122,7 @@ msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Obnoviť" @@ -4836,7 +4836,7 @@ msgstr "Kompresia:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Žiadny" @@ -5070,7 +5070,7 @@ msgid "The row has been deleted" msgstr "Riadok bol zmazaný" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Zabiť" @@ -5160,7 +5160,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Vyrovnávacia Pamäť" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Stav InnoDB" @@ -5618,7 +5618,7 @@ msgstr "Zobraziť MIME typy" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Hostiteľ" @@ -6305,13 +6305,13 @@ msgid "Slave status" msgstr "Zobraziť stav podriadených hostov" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Premenná" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Hodnota" @@ -6538,12 +6538,12 @@ msgid "Synchronize" msgstr "Synchronizovať" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binárny log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Premenné" @@ -6827,7 +6827,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Pridať nového používateľa" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Čas" @@ -7010,7 +7010,7 @@ msgid "Protocol version" msgstr "Verzia protokolu" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Používateľ" @@ -7449,17 +7449,17 @@ msgstr "Súbor neexistuje" msgid "Select binary log to view" msgstr "Vyberte binárny log na zobrazenie" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Súbory" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Zobraziť skrátene dopyty" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Zobraziť kompletné dopyty" @@ -7985,7 +7985,7 @@ msgstr "Master server zmenený úspešne na %s" msgid "This server is configured as master in a replication process." msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Zobraziť stav master replikácie" @@ -8126,171 +8126,166 @@ msgstr "" "Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Vlákno %s bol úspešne zabité." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "Neporadilo za zabiť vlákno %s. Jeho beh bol pravdepodobne už ukončený." - -#: server_status.php:248 -msgid "Handler" -msgstr "Manipulačná Rutina" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Vyrovnávacia pamäť príkazov" - -#: server_status.php:250 -msgid "Threads" -msgstr "Počet vlákien" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "Dočasné dáta" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Odložené vloženia" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Vyrovnávacia pamäť kľúčov" - -#: server_status.php:255 -msgid "Joins" -msgstr "Zjednotenia" - -#: server_status.php:257 -msgid "Sorting" -msgstr "Zoraďovanie" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Koordinátor transakcií" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "Vyprázdniť (uzavrieť) všetky tabuľky" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Zobraziť otvorené tabuľky" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "Zobraziť podriadené hosty" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "Zobraziť stav podriadených hostov" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "Stav serveru" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Voľba serveru" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Obnoviť" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Sekundy" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Sekundy" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "Minute" -msgid "minutes" -msgstr "Minúty" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minúty" +msgstr[1] "Minúty" +msgstr[2] "Minúty" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekundy" +msgstr[1] "Sekundy" +msgstr[2] "Sekundy" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Vlákno %s bol úspešne zabité." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "Neporadilo za zabiť vlákno %s. Jeho beh bol pravdepodobne už ukončený." + +#: server_status.php:263 +msgid "Handler" +msgstr "Manipulačná Rutina" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Vyrovnávacia pamäť príkazov" + +#: server_status.php:265 +msgid "Threads" +msgstr "Počet vlákien" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "Dočasné dáta" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Odložené vloženia" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Vyrovnávacia pamäť kľúčov" + +#: server_status.php:270 +msgid "Joins" +msgstr "Zjednotenia" + +#: server_status.php:272 +msgid "Sorting" +msgstr "Zoraďovanie" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Koordinátor transakcií" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "Vyprázdniť (uzavrieť) všetky tabuľky" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Zobraziť otvorené tabuľky" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "Zobraziť podriadené hosty" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "Zobraziť stav podriadených hostov" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "Stav serveru" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Voľba serveru" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nezmeniť heslo" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Zobraziť otvorené tabuľky" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "Súvisiace odkazy" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "za hodinu" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "za minútu" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "za sekundu" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Typ dopytu" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Tento server beží %s. Bol spustený %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8298,18 +8293,18 @@ msgstr "" "Tento server je nakonfigurovaný ako master a slave v " "replikačnom procese." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Tento MYSQL server je nakonfigurovaný ako master v replikačnom " "procese." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Tento MYSQL server pracuje ako slave v replikačnom procese." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8317,15 +8312,15 @@ msgstr "" "Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Stav replikácie" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Vyťaženie" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8333,41 +8328,41 @@ msgstr "" "Na vyťaženom serveri môže dôjsť k pretečeniu počítadiel, takže štatistiky " "servera môžu byť nepresné." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Prijaté" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Odoslané" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Spojenia" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "max. súčasných pripojení" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Nepodarených pokusov" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Prerušené" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nepodarilo sa pripojiť k MySQL serveru" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8377,16 +8372,16 @@ msgstr "" "ale zároveň prekročili hodnotu binlog_cache_size a museli tak použiť dočasný " "súbor na uloženie príkazov transakcie." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcií, ktoré využili vyrovnávaciu pamäť binárneho logu." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8398,11 +8393,11 @@ msgstr "" "hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na " "disk." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Počet dočasných súborov vytvorených servrom mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8410,7 +8405,7 @@ msgstr "" "Počet dočasných, v pamäti uložených tabuliek, vytvorených servrom pri " "vykonávaní príkazov." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8418,7 +8413,7 @@ msgstr "" "Počet riadkov pridaných príkazom INSERT DELAYED, pri ktorých sa vyskytla " "chyba (pravdepodobne opakujúci sa kľúč)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8426,23 +8421,23 @@ msgstr "" "Počet vlákien používaných príkazmi INSERT DELAYED. Každá samostatná tabuľka, " "na ktorú je použitý príkaz INSERT DELAYED, ma svoje vlastné vlákno." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Počet riadkov vložených príkazom INSERT DELAYED." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Počet vykonaných príkazov FLUSH." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Počet interných príkazov COMMIT." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Koľkokrát bol z tabuľky odstránený riadok." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8452,7 +8447,7 @@ msgstr "" "tabuľky s daným menom. Tento proces sa nazýva objavovanie. Handler_discover " "zobrazuje počet doposiaľ objavených tabuliek." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8462,7 +8457,7 @@ msgstr "" "znamená to že server vykonáva príliš veľa kompletných prechádzaní indexov; " "napríklad, SELECT col1 FROM foo, za predpokladu že col1 je indexovaný." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8470,7 +8465,7 @@ msgstr "" "Počet požiadavkov na načítanie riadku podľa kľúča. Ak je táto hodnota " "vysoká, je to dobrým znamením že sú príkazy a tabuľky správne indexované." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8480,7 +8475,7 @@ msgstr "" "Táto hodnota sa zvyšuje ak sa načítava indexovaný stĺpec v danom rozsahu " "alebo ak sa vykonáva prehľadávanie indexu." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8489,7 +8484,7 @@ msgstr "" "čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... " "DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8502,7 +8497,7 @@ msgstr "" "kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne " "nevyužívajú kľúče." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8514,35 +8509,35 @@ msgstr "" "tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú " "dostupné indexy." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Počet interných príkazov ROLLBACK." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Počet požiadavkov na zmenu záznamu (riadku) v tabuľke." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Počet požiadavkov na vloženie nového záznamu (riadku) do tabuľky." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránok obsahujúcich dáta (nečistých aj čistých)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Počet nečistých stránok." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránok, na ktoré je požiadavka na vyprázdnenie." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Počet voľných stránok." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8552,7 +8547,7 @@ msgstr "" "momentálne číta alebo zapisuje, prípadne nemôžu byť vyprázdnené ani " "odstránené z nejakého iného dôvodu." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8564,11 +8559,11 @@ msgstr "" "hodnota sa tiež môže vypočítať ako Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8576,7 +8571,7 @@ msgstr "" "Počet \"náhodných\" predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "príkazoch, ktoré prehľadávajú veľkú časť tabuľky, ale v náhodnom poradí." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8584,11 +8579,11 @@ msgstr "" "Počet sekvenčných predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "vykonávaní sekvenčného prehľadávania celej tabuľky." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Počet požiadavkov na logické načítavanie." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8596,7 +8591,7 @@ msgstr "" "Počet logických načítaní, ktoré sa nemohli vykonať z vyrovnávacej pamäte a " "namiesto toho bolo vykonané načítanie celej jednej stránky." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8610,88 +8605,88 @@ msgstr "" "počet týchto čakaní a ak bola správne nastavená veľkosť vyrovnávacej pamäte, " "mala by byť nízka." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Počet vykonaných fsync() operácií." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Aktuálny počet prebiehajúcich fsync() operácií." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Počet aktuálne prebiehajúcich načítavaní." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Počet aktuálne prebiehajúcich zápisov." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Množstvo už načítaných dát, v bajtoch." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Celkový počet načítaní dát." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Celkový počet zápisov dát." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Množstvo už zapísaných dát, v bajtoch." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Počet čakaní na vyprázdnenie vyrovnávacej pamäte logu z dôvodu jej zaplnenia." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Počet požiadaviek na zápis do logovacieho súboru." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Počet fyzických zápisov do logovacieho súboru." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Počet fsync() zápisov vykonaných do logovacieho súboru." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Počet prebiehajúcich zápisov do logovacieho súboru." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Množstvo bajtov zapísaných do logovacieho súboru." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Počet vytvorených stránok." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8700,51 +8695,51 @@ msgstr "" "hodnôt sa udáva v stránkach; pomocou veľkosti stránky je možné ich premeniť " "na bajty." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Počet načítaných stránok." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Počet zapísaných stránok." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Počet zámkov na riadky, na ktoré sa čaká." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Priemerný čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximálny čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Koľkokrát sa muselo čakať na zámok na riadok." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet záznamov (riadkov) odstránených z InnoDB tabuliek." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet záznamov (riadkov) vložených do InnoDB tabuliek." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Počet načítaných záznamov (riadkov) z InnoDB tabuliek." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Počet upravených záznamov (riadkov) v InnoDB tabuľkách." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8753,7 +8748,7 @@ msgstr "" "neboli zapísané na disk. Predtým sa táto hodnota nazývala " "Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8761,7 +8756,7 @@ msgstr "" "Počet nevyužitých blokov vo vyrovnávacej pamäti kľúčov. Z tejto hodnoty " "môžete zistiť koľko vyrovnávacej pamäte sa práve používa." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8770,11 +8765,11 @@ msgstr "" "Počet využitých blokov vo vyrovnávacej pamäti kľúčov. Táto hodnota určuje " "najväčšie množstvo blokov, ktoré kedy naraz použité." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Počet požiadavkov na načítanie kľúčového bloku z vyrovnávacej pamäti." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8785,15 +8780,15 @@ msgstr "" "je príliš malá. Úspešnosť vyrovnávacej pamäte si môžte vypočítať zo vzťahu " "Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Počet požiadavkov na zápis kľúčového bloku do vyrovnávacej pamäti." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Počet fyzických zápisov kľúčového bloku na disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8804,17 +8799,17 @@ msgstr "" "požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované " "žiadne príkazy." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet riadkov čakajúcich na zápis cez INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8822,38 +8817,38 @@ msgstr "" "Počet doposiaľ otvorených tabuliek. Ak je táto hodnota príliš vysoká, " "pravdepodobne je vyrovnávacia pamäť pre tabuľky príliš malá." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Počet otvorených súborov." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otvorených streamov (väčšinou využívané na logovanie)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Počet práve otvorených tabuliek." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Veľkosť voľnej pamäti pre vyrovnávaciu pamäť príkazov." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Počet zásahov vyrovnávacej pamäti." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Počet príkazov pridaných do vyrovnávacej pamäti." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8865,7 +8860,7 @@ msgstr "" "veľkosti vyrovnávacej pamäte príkazov. Vyrovnávacia pamäť príkazov používa " "stratégiu (LRU), odstránenie najdlhšie nepoužitých príkazov ako prvých." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8873,19 +8868,19 @@ msgstr "" "Počet príkazov neumiestnených do vyrovnávacej pamäti (nie sú cachovateľné " "alebo nevyhovujú nastaveniu query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Celkové množstvo blokov vo vyrovnávacej pamäti príkazov." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikácie (zatiaľ neimplementované)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8893,12 +8888,12 @@ msgstr "" "Počet spojení, ktoré nevyužívajú indexy. Ak sa táto hodnota nerovná 0, mali " "by ste starostlivo skontrolovať indexy vašich tabuliek." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, ktoré na referenčnej tabuľke využili intervalové vyhľadávanie." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8907,7 +8902,7 @@ msgstr "" "(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy " "vašich tabuliek.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8915,15 +8910,15 @@ msgstr "" "Počet spojení, ktoré na prvej tabuľke využili intervalové vyhľadávanie (táto " "hodnota nie je kritická ani v prípade, že je vysoká.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, ktoré vykonali kompletné prehľadanie prvej tabuľky." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Počet dočasných tabuliek, otvorených podriadeným SQL vláknom." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8931,13 +8926,13 @@ msgstr "" "Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o " "znovuobnovenie transakcie." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Táto položka obsahuje hodnotu ON ak je tento server podriadeným a je " "pripojený k prislúchajúcemu nadriadenému servru." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8945,14 +8940,14 @@ msgstr "" "Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota " "slow_launch_time." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Počet príkazov, ktorých vykonanie zabralo viac ako je hodnota " "long_query_time." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8962,23 +8957,23 @@ msgstr "" "je táto hodnota prílis veľká, mali by ste pouvažovať nad zvýšením hodnoty " "systémového nastavania sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Počet rozsahom obmedzených zoraďovaní." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Počet zoradených riadkov." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Počet zoradení uskutočnených prehľadávaním tabuľky." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet zámkov tabuliek, ktoré boli získané okamžite." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8990,7 +8985,7 @@ msgstr "" "najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo " "použiť replikáciu." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9000,11 +8995,11 @@ msgstr "" "dá vypočítať zo vzťahu Threads_created/Connections. Ak je táto hodnota v " "červenom, mali by ste zvýšiť hodnotu thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Počet momentálne otvorených spojení." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9015,7 +9010,7 @@ msgstr "" "Threads_created vysoká, mohli by ste zvýšiť hodnotu thread_cache_size (to " "však nespôsobí žiadnu citeľnú zmenu ak máte vlákna dobre implementované.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Počet aktívnych (nespiacich) vlákien." @@ -10115,6 +10110,11 @@ msgstr "Meno pohľadu" msgid "Rename view to" msgstr "Premenovať pohľad na" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Sekundy" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Porovnanie času vykonania dotazu (v mikrosekundách)" diff --git a/po/sl.po b/po/sl.po index 93348dcc28..6a19c6e525 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-16 22:33+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" @@ -84,7 +84,7 @@ msgstr "Ime ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Opis" @@ -271,7 +271,7 @@ msgstr "Zbirka podatkov %s je kopirana v %s" msgid "Rename database to" msgstr "Preimenuj zbirko podatkov v" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Ukaz" @@ -629,7 +629,7 @@ msgstr "Pogled" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Podvojevanje" @@ -736,7 +736,7 @@ msgstr "Sledene tabele" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -754,7 +754,7 @@ msgstr "Ustvarjeno" msgid "Updated" msgstr "Posodobljeno" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stanje" @@ -1060,15 +1060,15 @@ msgstr "Zapri" msgid "Edit" msgstr "Uredi" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "Grafikon prometa v živo" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "Grafikon povezav/procesov v živo" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "Grafikon poizvedb v živo" @@ -1079,13 +1079,13 @@ msgstr "Statični podatki" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Skupaj" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "Drugo" @@ -1117,7 +1117,7 @@ msgstr "Promet strežnika" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Procesi" @@ -1137,7 +1137,7 @@ msgstr "" msgid "Issued queries" msgstr "Poizvedbe SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Statistika poizvedb" @@ -1945,7 +1945,7 @@ msgstr "deljeno" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabele" @@ -2079,7 +2079,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "Poizvedba SQL" @@ -2108,7 +2108,7 @@ msgid "Create PHP Code" msgstr "Ustvari kodo PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Osveži" @@ -4838,7 +4838,7 @@ msgstr "Stiskanje:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Brez" @@ -5073,7 +5073,7 @@ msgid "The row has been deleted" msgstr "Vrstica je izbrisana" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Prekini proces" @@ -5163,7 +5163,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Zaloga medpomnilnika" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Stanje InnoDB" @@ -5667,7 +5667,7 @@ msgstr "Prikaži vrste MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Gostitelj" @@ -6387,13 +6387,13 @@ msgid "Slave status" msgstr "Stanje podrejenca" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Spremenljivka" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Vrednost" @@ -6622,12 +6622,12 @@ msgid "Synchronize" msgstr "Sinhroniziraj" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Dvojiški dnevnik" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Spremenljivke" @@ -6909,7 +6909,7 @@ msgstr "Definicija PARTITION" msgid "+ Add a new value" msgstr "+ Dodaj novo vrednost" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Čas" @@ -7104,7 +7104,7 @@ msgid "Protocol version" msgstr "Različica protokola" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Uporabnik" @@ -7553,17 +7553,17 @@ msgstr "Datoteka ne obstaja" msgid "Select binary log to view" msgstr "Izberite dvojiški dnevnik za pregled" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Skrči prikazane poizvedbe" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Pokaži celotne poizvedbe" @@ -8092,7 +8092,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Ta strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Pokaži stanje glavnega strežnika" @@ -8242,155 +8242,158 @@ msgstr "" "Ta strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ali ga " "želite konfigurirati?" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "Hitrost osveževanja" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "minutes" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "minut" +msgstr[1] "minut" +msgstr[2] "minut" +msgstr[3] "minut" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "sekunda" +msgstr[1] "sekunda" +msgstr[2] "sekunda" +msgstr[3] "sekunda" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Nit %s je bila prekinjena." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ni uspel prekiniti teme %s. Verjetno je že prekinjena." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Upravljavec" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Predpomnilnik poizvedb" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Niti" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Začasni podatki" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Zakasnjena vstavljanja" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Predpomnilnik ključev" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Stiki" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Razvrščanje" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Koordinator transakcij" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Izplakni (zapri) vse tabele" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Pokaži odprte tabele" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Prikaži gostitelje podrejencev" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Prikaži stanje podrejencev" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Izplakni predpomnilnik poizvedb" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Podatki o izvajanju" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "Promet strežnika" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "Vse spremenljivke stanja" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "Hitrost osveževanja" - -#: server_status.php:398 server_status.php:431 -msgid "second" -msgstr "sekunda" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -msgid "seconds" -msgstr "sekund" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -msgid "minutes" -msgstr "minut" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "Vsebuje besedo:" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "Prikaži samo opozorilne vrednosti" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "Filtriraj po kategoriji ..." -#: server_status.php:482 +#: server_status.php:477 msgid "Related links:" msgstr "Sorodne povezave:" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "na uro" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "na minuto" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "na sekundo" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Vrsta poizvedbe" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "Št." -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "Promet omrežja od zagona: %s" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Strežnik MySQL deluje že %s. Zagnal se je %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8398,18 +8401,18 @@ msgstr "" "Strežnik MySQL deluje kot glavni strežnik in podrejenec v " "postopku podvojevanja." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Strežnik MySQL deluje kot glavni strežnik v postopku podvojevanja." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Strežnik MySQL deluje kot podrejenec v postopku podvojevanja." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8417,15 +8420,15 @@ msgstr "" "Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite " "razdelek o podvojevanju." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Stanje podvojevanja" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Promet" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8433,39 +8436,39 @@ msgstr "" "Na zaposlenem strežniku lahko števci bajtov naštejejo preveč, zato je ta " "statistika, kot jo poroča strežnik MySQL, morda napačna." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Prejeto" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Poslano" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Povezave" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "Največ sočasnih povezav" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Neuspeli poizkusi" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Prekinjeno" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Število spodletelih poskusov povezave s strežnikom MySQL." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8475,18 +8478,18 @@ msgstr "" "dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za " "shranitev izjav iz transakcije uporabljene začasne datoteke." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega " "dnevnika." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Število poskusov povezave (uspešnih ali ne) na strežnik MySQL." -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8498,11 +8501,11 @@ msgstr "" "povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile " "na pomnilniku namesto na disku." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Koliko začasnih datotek je ustvaril mysqld." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8510,7 +8513,7 @@ msgstr "" "Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril " "med izvajanjem stavkov." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8518,7 +8521,7 @@ msgstr "" "Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke " "napake (najverjetneje podvojen ključ)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8526,23 +8529,23 @@ msgstr "" "Število upravljalnih niti INSERT DELAYED v uporabi. Vsaka različna tabela, " "na kateri se uporabi INSERT DELAYED, dobi svojo lastno nit." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Število zapisanih vrstic INSERT DELAYED." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Število izvedenih izjav FLUSH." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Število notranjih izjav COMMIT." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Število izbrisov vrstice iz tabele." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8552,7 +8555,7 @@ msgstr "" "navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat " "so bile tabele odkrite." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8562,7 +8565,7 @@ msgstr "" "kaže, da strežnik izvaja mnogo pregledov indeksa; na primer: SELECT col1 " "FROM foo, pri čemer se predpostavlja, da je col1 indeksiran." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8571,7 +8574,7 @@ msgstr "" "visoka, je to dober znak, da so vaše poizvedbe in tabele primerno " "indeksirane." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8581,7 +8584,7 @@ msgstr "" "povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če " "pregledujete indeks." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8589,7 +8592,7 @@ msgstr "" "Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Ta postopek " "branja se uporablja predvsem za optimizacijo ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8601,7 +8604,7 @@ msgstr "" "Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih " "tabel, ali stike, ki ne uporabljajo ključev pravilno." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8613,36 +8616,36 @@ msgstr "" "tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo " "prednosti indeksov, ki jih imate." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Število notranjih izjav ROLLBACK." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Število zahtev za posodobitev vrstice v tabeli." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Število zahtev za vstavitev vrstice v tabelo." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Število trenutno umazanih strani." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Število strani zaloge medpomnilnika, za katere je bila zaprošena izplaknitev." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Število prostih strani." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8652,7 +8655,7 @@ msgstr "" "trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga " "ne morejo biti izplaknjene ali odstranjene." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8664,11 +8667,11 @@ msgstr "" "lahko izračuna tudi kot Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Skupna velikost zaloge medpomnilnika, v straneh." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8676,7 +8679,7 @@ msgstr "" "Število začetih \"naključnih\" vnaprejšnjih branj InnoDB. To se zgodi, ko " "poizvedba zahteva pregled večjega dela tabele, vendar v naključnem redu." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8684,11 +8687,11 @@ msgstr "" "Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB " "izvaja zaporedno pregledovanje celotne tabele." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8696,7 +8699,7 @@ msgstr "" "Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge " "medpomnilnika in je moral izvesti enostransko branje." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8710,52 +8713,52 @@ msgstr "" "teh čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, " "bi morala biti ta vrednost majhna." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Število dozdajšnjih posegov fsync()." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Trenutno število čakajočih posegov fsync()." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Trenutno število čakajočih branj." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Trenutno število čakajočih pisanj." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Količina do zdaj prebranih podatkov, v bajtih." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Skupno število branj podatkov." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Skupno število zapisovanj podatkov." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Količina do zdaj zapisanih podatkov, v bajtih." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Število strani, ki so bile zapisane za posege dvojnega pisanja (doublewrite)." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8763,35 +8766,35 @@ msgstr "" "Število čakanj, ki smo jih imeli, ker je bil medpomnilnik dnevnika premajhen " "in je bilo potrebno počakati, da se pred nadaljevanjem izplakne." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Število zahtev pisanja v dnevnik." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Število fizičnih pisanj v dnevniško datoteko." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Število pisanj fsync() storjenih v dnevniško datoteko." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Število čakajoče dnevniške datoteke fsyncs." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Čakajoča pisanja v dnevniško datoteko." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Število bajtov zapisanih v dnevniško datoteko." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Število ustvarjenih strani." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8799,51 +8802,51 @@ msgstr "" "Vgrajena velikost strani InnoDB (privzeto 16 KB). Veliko vrednosti je štetih " "v straneh; velikost strani omogoča preprosto pretvorbo v bajte." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Število prebranih strani." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Število zapisanih strani." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Število zaklepov vrstic, na katere se trenutno čaka." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Število čakanj na zaklepe vrstic." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Število vrstic izbrisanih iz tabel InnoDB." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Število vrstic vstavljenih v tabele InnoDB." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Število vrstic prebranih iz tabel InnoDB." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Število vrstic posodobljenih v tabelah InnoDB." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8852,7 +8855,7 @@ msgstr "" "vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot " "Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8860,7 +8863,7 @@ msgstr "" "Število neuporabljenih blokov v predpomnilniku ključev. To vrednost lahko " "uporabite, da ugotovite, koliko predpomnilnika ključev je v uporabi." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8870,11 +8873,11 @@ msgstr "" "dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli " "naenkrat v uporabi." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Število zahtev za branje bloka ključev iz predpomnilnika." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8884,15 +8887,15 @@ msgstr "" "je vaša vrednost key_buffer_size najverjetneje premajhna. Razmerje " "pogrešitev predpomnilnika se lahko izračuna kot Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Število zahtev za pisanje bloka ključev v predpomnilnik." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Število fizičnih pisanj bloka ključev na disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8903,17 +8906,17 @@ msgstr "" "enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena " "poizvedba." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "Največje število sočasno uporabljenih povezav od zagona strežnika." -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Število vrstic, ki čakajo na zapis v vrsti INSERT DELAYED." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8921,19 +8924,19 @@ msgstr "" "Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel " "najverjetneje premajhen." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Število odprtih datotek." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "Število odprtih tokov (uporabljenih v glavnem za beleženje)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Število odprtih tabel." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -8943,19 +8946,19 @@ msgstr "" "število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z " "izvedbo stavka FLUSH QUERY CACHE." -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Količina prostega spomina za predpomnilnik poizvedb." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Število zadetkov predpomnilnika." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Število poizvedb dodanih v predpomnilnik." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8968,7 +8971,7 @@ msgstr "" "uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere " "poizvedbe naj odstrani iz predpomnilnika." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8976,19 +8979,19 @@ msgstr "" "Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene " "zaradi nastavitve query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Število zabeleženih poizvedb v predpomnilniku." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Skupno število blokov v predpomnilniku poizvedb." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8996,11 +8999,11 @@ msgstr "" "Število stikov, ki ne uporabljajo indeksov. Če ta vrednost ni 0, skrbno " "preverite indekse vaših tabel." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "Število stikov, ki so uporabili iskanje območja na referenčni tabeli." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9008,7 +9011,7 @@ msgstr "" "Število stikov brez ključev, ki preverjajo uporabo ključev po vsaki vrstici. " "(Če to ni 0, previdno preverite indekse vaših tabel.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9016,16 +9019,16 @@ msgstr "" "Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni " "kritično, četudi je veliko.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Število stikov, ki so izvedli celotni pregled na prvi tabeli." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Število začasnih tabel, ki so trenutno odprte s strani niti SQL podrejencev." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9033,11 +9036,11 @@ msgstr "" "Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti " "SQL podrejenca." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "To je ON, če je strežnik podrejenec, povezan z glavnim strežnikom." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9045,12 +9048,12 @@ msgstr "" "Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time " "sekund." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Število poizvedb, ki so porabile več kot long_query_time sekund." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9060,23 +9063,23 @@ msgstr "" "Če je ta vrednost velika, razmislite o povečanju sistemske spremenljivke " "sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Število razvrščanj, ki so bila storjena z razponi." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Število razvrščenih vrstic." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Število razvrščanj, ki so bila storjena s pregledovanjem tabele." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Koliko krat je bil zaklep tabele pridobljen takoj." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9088,7 +9091,7 @@ msgstr "" "optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele " "ali uporabite podvojevanje." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9098,11 +9101,11 @@ msgstr "" "izračuna kot Threads_created/Connections. Če je ta vrednost rdeča, povečajte " "vaš thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Število trenutno odprtih povezav." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9113,7 +9116,7 @@ msgstr "" "velik, boste morda želeli povečati vrednost thread_cache_size. (Po navadi to " "ne izboljša zmogljivosti v veliki meri, če imate dobro izvedbo niti.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Število niti, ki ne spijo." @@ -10250,6 +10253,9 @@ msgstr "Ime VIEW" msgid "Rename view to" msgstr "Preimenuj pogled v" +#~ msgid "seconds" +#~ msgstr "sekund" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Primerjava trajanj izvajanja poizvedb (v mikrosekundah)" diff --git a/po/sq.po b/po/sq.po index ddfed6e6d6..ce0998f5cb 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" @@ -84,7 +84,7 @@ msgstr "Emri i kyçit" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Përshkrimi" @@ -271,7 +271,7 @@ msgstr "Databaza %s është kopjuar tek %s" msgid "Rename database to" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Komanda" @@ -643,7 +643,7 @@ msgstr "Paraqitje" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikimi" @@ -756,7 +756,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -775,7 +775,7 @@ msgstr "Krijo" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Gjendja" @@ -1085,17 +1085,17 @@ msgstr "" msgid "Edit" msgstr "Ndrysho" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Zgjedhja e serverit" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "query SQL" @@ -1107,13 +1107,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Gjithsej" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1145,7 +1145,7 @@ msgstr "Zgjedhja e serverit" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Proceset" @@ -1164,7 +1164,7 @@ msgstr "" msgid "Issued queries" msgstr "query SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Statistikat e rreshtave" @@ -2046,7 +2046,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabela" @@ -2181,7 +2181,7 @@ msgid "Documentation" msgstr "Dokumentet" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "query SQL" @@ -2210,7 +2210,7 @@ msgid "Create PHP Code" msgstr "Krijo kodin PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Rifresko" @@ -4891,7 +4891,7 @@ msgstr "Kompresim" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Asnjë lloj" @@ -5140,7 +5140,7 @@ msgid "The row has been deleted" msgstr "rreshti u fshi" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Hiq" @@ -5231,7 +5231,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Gjëndja InnoDB" @@ -5699,7 +5699,7 @@ msgstr "Lloje MIME në dispozicion" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Host" @@ -6398,13 +6398,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "E ndryshueshme" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Vlerë" @@ -6646,13 +6646,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Binar" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Të ndryshueshmet" @@ -6953,7 +6953,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Shto një përdorues të ri" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Koha" @@ -7175,7 +7175,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Përdorues" @@ -7637,18 +7637,18 @@ msgstr "Tabela \"%s\" nuk ekziston!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "Fusha" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Shkurton (ndërpret) Queries e Shfaqura" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Shfaq të gjitha kërkesat" @@ -8189,7 +8189,7 @@ msgstr "Të drejtat u përditësuan me sukses." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8328,12 +8328,34 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Rifresko" + +#: server_status.php:31 +#, 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.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "në sekondë" +msgstr[1] "në sekondë" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s u përfundua me sukses." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -8341,246 +8363,217 @@ msgstr "" "phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë " "përfunduar më parë." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 #, fuzzy msgid "Query cache" msgstr "Lloji i query" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 #, fuzzy msgid "Delayed inserts" msgstr "Përdor shtimet me vonesë" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 #, fuzzy msgid "Show open tables" msgstr "Shfaq tabelat" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Informacione mbi Runtime" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Zgjedhja e serverit" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Rifresko" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "në sekondë" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "në sekondë" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "në përdorim" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Mos ndrysho fjalëkalim" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "Shfaq tabelat" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacione" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "në orë" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "në minutë" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "në sekondë" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Lloji i query" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ky server MySQL po punon që prej %s. U nis më %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Trafiku" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Marrë" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Dërguar" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Lidhje" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Përpjekje të dështuara" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Dështoi" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8588,78 +8581,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8667,7 +8660,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8675,42 +8668,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8718,33 +8711,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8753,227 +8746,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8981,99 +8974,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9081,18 +9074,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9100,7 +9093,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10236,6 +10229,11 @@ msgstr "" msgid "Rename view to" msgstr "Riemërto tabelën në" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "në sekondë" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/sr.po b/po/sr.po index d614bfba04..9dd1606880 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" @@ -85,7 +85,7 @@ msgstr "Име кључа" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Опис" @@ -270,7 +270,7 @@ msgstr "База %s је прекопирана у %s" msgid "Rename database to" msgstr "Преименуј базу у" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Наредба" @@ -640,7 +640,7 @@ msgstr "Поглед" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Репликација" @@ -753,7 +753,7 @@ msgstr "Провери табелу" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -773,7 +773,7 @@ msgstr "Направи" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Статус" @@ -1097,17 +1097,17 @@ msgstr "" msgid "Edit" msgstr "Промени" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Избор сервера" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL упит" @@ -1119,13 +1119,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Укупно" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "Избор сервера" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Процеси" @@ -1176,7 +1176,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL упит" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Статистике реда" @@ -2069,7 +2069,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Табеле" @@ -2206,7 +2206,7 @@ msgid "Documentation" msgstr "Документација" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL упит" @@ -2235,7 +2235,7 @@ msgid "Create PHP Code" msgstr "Направи PHP код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Освежи" @@ -4960,7 +4960,7 @@ msgstr "Компресија" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "нема" @@ -5223,7 +5223,7 @@ msgid "The row has been deleted" msgstr "Ред је обрисан" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Обустави" @@ -5317,7 +5317,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Скуп прихватника" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB статус" @@ -5804,7 +5804,7 @@ msgstr "Доступни MIME-типови" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Домаћин" @@ -6508,13 +6508,13 @@ msgid "Slave status" msgstr "Прикажи статус подређених сервера" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Променљива" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Вредност" @@ -6755,12 +6755,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Бинарни дневник" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Променљиве" @@ -7058,7 +7058,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Додај новог корисника" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Време" @@ -7297,7 +7297,7 @@ msgid "Protocol version" msgstr "Верзија протокола" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Корисник" @@ -7774,17 +7774,17 @@ msgstr "Табела \"%s\" не постоји!" msgid "Select binary log to view" msgstr "Изаберите бинарни дневник за преглед" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Датотеке" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Прикажи скраћене упите" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Прикажи комплетне упите" @@ -8312,7 +8312,7 @@ msgstr "Привилегије су успешно поново учитане." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 #, fuzzy msgid "Show master status" msgstr "Прикажи статус подређених сервера" @@ -8453,200 +8453,195 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Процес %s је успешно прекинут." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен." - -#: server_status.php:248 -msgid "Handler" -msgstr "Руковалац" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Кеш упита" - -#: server_status.php:250 -msgid "Threads" -msgstr "Нити" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "Привремени подаци" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Одложена уметања" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Кеш кључева" - -#: server_status.php:255 -msgid "Joins" -msgstr "Спојеви" - -#: server_status.php:257 -msgid "Sorting" -msgstr "Сортирање" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Координатор трансакција" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "Очисти (затвори) све табеле" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Прикажи отворене табеле" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "Прикажи подређене сервер" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "Прикажи статус подређених сервера" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "Очисти кеш упита" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "Информације о току рада" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Избор сервера" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Освежи" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "у секунди" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "у секунди" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "in use" -msgid "minutes" -msgstr "се користи" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "се користи" +msgstr[1] "се користи" +msgstr[2] "се користи" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "у секунди" +msgstr[1] "у секунди" +msgstr[2] "у секунди" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Процес %s је успешно прекинут." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен." + +#: server_status.php:263 +msgid "Handler" +msgstr "Руковалац" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Кеш упита" + +#: server_status.php:265 +msgid "Threads" +msgstr "Нити" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "Привремени подаци" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Одложена уметања" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Кеш кључева" + +#: server_status.php:270 +msgid "Joins" +msgstr "Спојеви" + +#: server_status.php:272 +msgid "Sorting" +msgstr "Сортирање" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Координатор трансакција" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "Очисти (затвори) све табеле" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Прикажи отворене табеле" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "Прикажи подређене сервер" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "Прикажи статус подређених сервера" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "Очисти кеш упита" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "Информације о току рада" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Избор сервера" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Немој да мењаш лозинку" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Прикажи отворене табеле" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Релације" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "на сат" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "у минуту" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "у секунди" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Врста упита" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Овај MySQL сервер ради већ %s. Покренут је %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 #, fuzzy msgid "Replication status" msgstr "Репликација" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Саобраћај" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8654,41 +8649,41 @@ msgstr "" "На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да " "те статистике, онако како их пријављује MySQL сервер, могу бити нетачне." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Примљено" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Послато" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Конекције" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "макс. истовремених веза" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Неуспелих покушаја" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Прекинуто" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8698,16 +8693,16 @@ msgstr "" "превазишле вредност у binlog_cache_size и користиле привремену датотеку да " "сместе изразе из трансакције." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Број трансакција које су користиле кеш привременог бинарног дневника." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8719,11 +8714,11 @@ msgstr "" "повећате вредност tmp_table_size како би учинили да привремене табеле буду " "базиране у меморији уместо на диску." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Колико привремених датотека је mysqld направио." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8731,7 +8726,7 @@ msgstr "" "Број привремених табела које је сервер аутоматски креирао у меморији док је " "извршавао изразе." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8739,7 +8734,7 @@ msgstr "" "Број редова уписаних са INSERT DELAYED за које је јављена нека грешка " "(вероватно дуплирани кључ)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8747,23 +8742,23 @@ msgstr "" "Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над " "којом се користи INSERT DELAYED добија своју нит." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Број уписаних INSERT DELAYED редова." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Број извршених FLUSH израза." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Број интерних COMMIT израза." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Број брисања неког реда табеле." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8773,7 +8768,7 @@ msgstr "" "одређеног имена. То се назива откривањем (discovery). Handler_discover " "означава број пута када је откривена табела." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8783,7 +8778,7 @@ msgstr "" "може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT " "кол1 FROM нешто, под претпоставком да је кол1 индексирано." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8791,7 +8786,7 @@ msgstr "" "Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то " "је добар показатељ да су ваши упити и табеле прописно индексирани." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8801,7 +8796,7 @@ msgstr "" "када радите упит по колони индекса са ограничењем опсега или ако радите " "скенирање индекса." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8809,7 +8804,7 @@ msgstr "" "Број захтева за читањем претходног реда у поретку кључева. Ова метода читања " "се углавном користи за оптимизацију ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8821,7 +8816,7 @@ msgstr "" "много упита који захтевају да MySQL скенира целе табеле или имате спојеве " "који не користе кључеве прописно." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8833,35 +8828,35 @@ msgstr "" "прописно индексиране или да ваши упити нису написани да искористе већ " "постојеће индексе." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Број интерних ROLLBACK израза." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Број захтева за ажурирање реда у табели." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Број захтева за уписивање реда у табелу." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Број страна које садрже податке (чистих или прљавих)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Број страна које су тренутно прљаве." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Број страна у остави бафера за које је тражено да буду очишћене." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Број слободних страна." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8871,7 +8866,7 @@ msgstr "" "чита или се у њих уписује или из неког другог разлога не могу бити очишћене " "нити уклоњене." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8883,11 +8878,11 @@ msgstr "" "такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Пуна величина оставе бафера, у странама." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8895,7 +8890,7 @@ msgstr "" "Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када " "упит треба да скенира велики део табеле али насумичним редоследом." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8903,11 +8898,11 @@ msgstr "" "Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када " "InnoDB ради секвенцијално скенирање целе табеле." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Број логичких захтева за читање које је InnoDB урадио." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8915,7 +8910,7 @@ msgstr "" "Број логичких читања која InnoDB није могао да задовољи из оставе бафера те " "је морао да ради читање појединачне стране." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8929,55 +8924,55 @@ msgstr "" "дешавања ових чекања. Ако је величина оставе бафера постављена како треба, " "ова вредност ви требало да је ниска." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Број уписа учињених у InnoDB оставу бафера." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Број fsync() операција до сада." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Тренутни број fsync() операција на чекању." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Тренутни број читања на чекању." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Тренутни број уписа на чекању." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Количина података прочитаних до сада, у бајтовима." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Укупан број читања података." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Укупан број уписа података." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Количина података уписаних до сада, у бајтовима" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8985,35 +8980,35 @@ msgstr "" "Број чекања која смо имали зато што је бафер дневника био премали те смо " "морали да сачекамо да буде очишћен пре наставка." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Број захтева за упис у дневник." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Број физичких уписа у датотеку дневника." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Број fsync-ова за датотеку дневника на чекању." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Број уписа у датотеку дневника на чекању." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Број бајтова уписаних у датотеку дневника." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Број направљених страна." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9022,51 +9017,51 @@ msgstr "" "вредности се рачунају у странама; величина стране омогућава да се оне лако " "конвертују у бајтове." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Број прочитаних страна." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Број записаних страна." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Број брава за редове које се тренутно чекају." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Просечно време за добављање браве за ред, у милисекундама." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Најдуже време за добављање браве за ред, у милисекундама." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Број пута када се морала чекати брава за ред." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Број редова обрисаних из InnoDB табела." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Број редова уметнутих у InnoDB табеле." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Број редова прочитаних из InnoDB табела." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Број редова ажурираних у InnoDB табелама." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9074,7 +9069,7 @@ msgstr "" "Број блокова кључева у кешу кључева који су измењени али још нису послати на " "диск. Ово је раније било познато као Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9082,7 +9077,7 @@ msgstr "" "Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите " "да утврдите колики део кеша кључева је у употреби." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9092,11 +9087,11 @@ msgstr "" "водостаја“ која показује највећи икада број блокова који је био у употреби у " "исто време." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Број захтева за читање блока кључева из кеша." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9106,15 +9101,15 @@ msgstr "" "је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша " "се може израчунати као Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Број захтева за уписивање блока кључева у кеш." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Број физичких уписа блока кључева на диск." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9124,17 +9119,17 @@ msgstr "" "упита. Корисно за упоређивање цене различитих планова упита за исти упит. " "Подразумевана вредност 0 значи да још није био компајлиран ниједан упит." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9142,39 +9137,39 @@ msgstr "" "Број табела које су биле отваране. Ако је број велики, ваш кеш табела је " "вероватно премали." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Број отворених датотека." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Број отворених токова (користи се првенствено за вођење дневника (logging))." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Број отворених табела." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Количина слободне меморије за кеш упита." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Број погодака из кеша." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Број упита додатих у кеш." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9186,7 +9181,7 @@ msgstr "" "упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least " "recently used , LRU) да би одлучио које упите да уклони из кеша." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9194,19 +9189,19 @@ msgstr "" "Број некешираних упита (који се не могу кеширати или нису кеширани због " "подешавања query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Број упита регистрованих у кешу." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Укупан број блокова у кешу за упите." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Статус репликације отпорне на грешке (није још имплементирано)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9214,11 +9209,11 @@ msgstr "" "Број спојева који не користе индексте. Ако ова вредност није 0, требало би " "пажљиво да проверите индексе ваших табела." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "Број спојева који су користили претрагу опсега на референтној табели." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9226,7 +9221,7 @@ msgstr "" "Број спојева без кључева који проверавају употребу кључа после сваког реда. " "(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9234,15 +9229,15 @@ msgstr "" "Број спојева који су користили опсеге на првој табели. (Обично није критично " "чак ни када је ово велико)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9250,11 +9245,11 @@ msgstr "" "Укупан број пута (од покретања) када је помоћна SQL нит за репликацију " "покушала трансакције." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9262,12 +9257,12 @@ msgstr "" "Број нити за које је требало више од slow_launch_time секудни да би биле " "покренуте." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Број упита за које је требало више од long_query_time секудни." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9277,23 +9272,23 @@ msgstr "" "је ова вредност велика, требало би да размислите о повећању вредности " "системске променљиве sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Број сортирања која су урађена са опсегом." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Број сортираних редова." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Број сортирања до којих је дошло скенирањем табеле." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Број пута када је брава за табелу одмах добављена." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9305,7 +9300,7 @@ msgstr "" "би требало да оптимизујете своје упите а потом да или поделите табелу или " "табеле или да користите репликацију." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9315,11 +9310,11 @@ msgstr "" "Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате " "ваш thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Број тренутно отворених веза." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9331,7 +9326,7 @@ msgstr "" "имплементацију нити, ово обично не доноси приметна побољшања у " "перформансама.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Број нити које нису успаване." @@ -10477,6 +10472,11 @@ msgstr "назив за VIEW" msgid "Rename view to" msgstr "Промени име табеле у " +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "у секунди" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/sr@latin.po b/po/sr@latin.po index db25862bbb..04c7454728 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" @@ -85,7 +85,7 @@ msgstr "Ime ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Opis" @@ -272,7 +272,7 @@ msgstr "Baza %s je prekopirana u %s" msgid "Rename database to" msgstr "Preimenuj bazu u" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Naredba" @@ -634,7 +634,7 @@ msgstr "Pogled" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikacija" @@ -747,7 +747,7 @@ msgstr "Proveri tabelu" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -767,7 +767,7 @@ msgstr "Napravi" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1091,17 +1091,17 @@ msgstr "" msgid "Edit" msgstr "Promeni" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Izbor servera" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL upit" @@ -1113,13 +1113,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1151,7 +1151,7 @@ msgstr "Izbor servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Procesi" @@ -1170,7 +1170,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL upit" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Statistike reda" @@ -2063,7 +2063,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabele" @@ -2200,7 +2200,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL upit" @@ -2229,7 +2229,7 @@ msgid "Create PHP Code" msgstr "Napravi PHP kod" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Osveži" @@ -4953,7 +4953,7 @@ msgstr "Kompresija" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "nema" @@ -5216,7 +5216,7 @@ msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Obustavi" @@ -5310,7 +5310,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Skup prihvatnika" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB status" @@ -5793,7 +5793,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Domaćin" @@ -6495,13 +6495,13 @@ msgid "Slave status" msgstr "Prikaži status podređenih servera" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Promenljiva" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Vrednost" @@ -6742,12 +6742,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binarni dnevnik" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Promenljive" @@ -7045,7 +7045,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Dodaj novog korisnika" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Vreme" @@ -7285,7 +7285,7 @@ msgid "Protocol version" msgstr "Verzija protokola" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Korisnik" @@ -7763,17 +7763,17 @@ msgstr "Tabela \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "Izaberite binarni dnevnik za pregled" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -8301,7 +8301,7 @@ msgstr "Privilegije su uspešno ponovo učitane." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 #, fuzzy msgid "Show master status" msgstr "Prikaži status podređenih servera" @@ -8442,200 +8442,195 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Proces %s je uspešno prekinut." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin nije mogao da prekine proces %s. Verovatno je već zatvoren." - -#: server_status.php:248 -msgid "Handler" -msgstr "Rukovalac" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Keš upita" - -#: server_status.php:250 -msgid "Threads" -msgstr "Niti" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "Privremeni podaci" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Odložena umetanja" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Keš ključeva" - -#: server_status.php:255 -msgid "Joins" -msgstr "Spojevi" - -#: server_status.php:257 -msgid "Sorting" -msgstr "Sortiranje" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Koordinator transakcija" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "Očisti (zatvori) sve tabele" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Prikaži otvorene tabele" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "Prikaži podređene server" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "Prikaži status podređenih servera" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "Očisti keš upita" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "Informacije o toku rada" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Izbor servera" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Osveži" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "u sekundi" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "u sekundi" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "in use" -msgid "minutes" -msgstr "se koristi" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "se koristi" +msgstr[1] "se koristi" +msgstr[2] "se koristi" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "u sekundi" +msgstr[1] "u sekundi" +msgstr[2] "u sekundi" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Proces %s je uspešno prekinut." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin nije mogao da prekine proces %s. Verovatno je već zatvoren." + +#: server_status.php:263 +msgid "Handler" +msgstr "Rukovalac" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Keš upita" + +#: server_status.php:265 +msgid "Threads" +msgstr "Niti" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "Privremeni podaci" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Odložena umetanja" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Keš ključeva" + +#: server_status.php:270 +msgid "Joins" +msgstr "Spojevi" + +#: server_status.php:272 +msgid "Sorting" +msgstr "Sortiranje" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Koordinator transakcija" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "Očisti (zatvori) sve tabele" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Prikaži otvorene tabele" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "Prikaži podređene server" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "Prikaži status podređenih servera" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "Očisti keš upita" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "Informacije o toku rada" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Izbor servera" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nemoj da menjaš lozinku" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Prikaži otvorene tabele" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "na sat" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "u minutu" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "u sekundi" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Vrsta upita" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Saobraćaj" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8643,41 +8638,41 @@ msgstr "" "Na zaposlenom serveru brojači bajtova mogu da se preliju (overrun), tako da " "te statistike, onako kako ih prijavljuje MySQL server, mogu biti netačne." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Primljeno" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Poslato" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Konekcije" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "maks. istovremenih veza" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8687,16 +8682,16 @@ msgstr "" "prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da " "smeste izraze iz transakcije." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Broj transakcija koje su koristile keš privremenog binarnog dnevnika." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8708,11 +8703,11 @@ msgstr "" "povećate vrednost tmp_table_size kako bi učinili da privremene tabele budu " "bazirane u memoriji umesto na disku." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Koliko privremenih datoteka je mysqld napravio." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8720,7 +8715,7 @@ msgstr "" "Broj privremenih tabela koje je server automatski kreirao u memoriji dok je " "izvršavao izraze." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8728,7 +8723,7 @@ msgstr "" "Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška " "(verovatno duplirani ključ)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8736,23 +8731,23 @@ msgstr "" "Broj INSERT DELAYED rukovalačkih niti u upotrebi. Svaka posebna tabela nad " "kojom se koristi INSERT DELAYED dobija svoju nit." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Broj upisanih INSERT DELAYED redova." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih FLUSH izraza." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Broj internih COMMIT izraza." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Broj brisanja nekog reda tabele." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8762,7 +8757,7 @@ msgstr "" "tabelu određenog imena. To se naziva otkrivanjem (discovery). " "Handler_discover označava broj puta kada je otkrivena tabela." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8772,7 +8767,7 @@ msgstr "" "može značiti da server radi puno punih skeniranja indeksa; na primer SELECT " "kol1 FROM nešto, pod pretpostavkom da je kol1 indeksirano." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8780,7 +8775,7 @@ msgstr "" "Broj zahteva za čitanje reda zasnovanih na ključu. Ako je ovaj broj visok, " "to je dobar pokazatelj da su vaši upiti i tabele propisno indeksirani." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8790,7 +8785,7 @@ msgstr "" "kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite " "skeniranje indeksa." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8798,7 +8793,7 @@ msgstr "" "Broj zahteva za čitanjem prethodnog reda u poretku ključeva. Ova metoda " "čitanja se uglavnom koristi za optimizaciju ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8810,7 +8805,7 @@ msgstr "" "mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve " "koji ne koriste ključeve propisno." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8822,35 +8817,35 @@ msgstr "" "nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već " "postojeće indekse." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih ROLLBACK izraza." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Broj zahteva za ažuriranje reda u tabeli." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Broj zahteva za upisivanje reda u tabelu." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Broj strana koje su trenutno prljave." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Broj strana u ostavi bafera za koje je traženo da budu očišćene." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Broj slobodnih strana." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8860,7 +8855,7 @@ msgstr "" "čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene " "niti uklonjene." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8872,11 +8867,11 @@ msgstr "" "se takođe može izračunati i na sledeći način Innodb_buffer_pool_pages_total " "- Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Puna veličina ostave bafera, u stranama." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8884,7 +8879,7 @@ msgstr "" "Broj „nasumičnih“ pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "upit treba da skenira veliki deo tabele ali nasumičnim redosledom." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8892,11 +8887,11 @@ msgstr "" "Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "InnoDB radi sekvencijalno skeniranje cele tabele." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8904,7 +8899,7 @@ msgstr "" "Broj logičkih čitanja koja InnoDB nije mogao da zadovolji iz ostave bafera " "te je morao da radi čitanje pojedinačne strane." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8918,55 +8913,55 @@ msgstr "" "dešavanja ovih čekanja. Ako je veličina ostave bafera postavljena kako " "treba, ova vrednost vi trebalo da je niska." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Broj fsync() operacija do sada." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Trenutni broj fsync() operacija na čekanju." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Trenutni broj čitanja na čekanju." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Trenutni broj upisa na čekanju." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do sada, u bajtovima." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Ukupan broj čitanja podataka." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Ukupan broj upisa podataka." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka upisanih do sada, u bajtovima" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8974,35 +8969,35 @@ msgstr "" "Broj čekanja koja smo imali zato što je bafer dnevnika bio premali te smo " "morali da sačekamo da bude očišćen pre nastavka." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Broj zahteva za upis u dnevnik." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih upisa u datoteku dnevnika." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Broj fsync-ova za datoteku dnevnika na čekanju." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Broj upisa u datoteku dnevnika na čekanju." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Broj bajtova upisanih u datoteku dnevnika." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Broj napravljenih strana." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9011,52 +9006,52 @@ msgstr "" "vrednosti se računaju u stranama; veličina strane omogućava da se one lako " "konvertuju u bajtove." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Broj pročitanih strana." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Broj zapisanih strana." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Broj brava za redove koje se trenutno čekaju." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosečno vreme za dobavljanje brave za red, u milisekundama." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vremena provedeno u dobavljanju brava za redove, u milisekundama." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najduže vreme za dobavljanje brave za red, u milisekundama." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Broj puta kada se morala čekati brava za red." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redova obrisanih iz InnoDB tabela." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redova umetnutih u InnoDB tabele." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Broj redova pročitanih iz InnoDB tabela." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Broj redova ažuriranih u InnoDB tabelama." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9064,7 +9059,7 @@ msgstr "" "Broj blokova ključeva u kešu ključeva koji su izmenjeni ali još nisu poslati " "na disk. Ovo je ranije bilo poznato kao Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9072,7 +9067,7 @@ msgstr "" "Broj neiskorišćenih blokova u kešu ključeva. Ovu vrednost možete da " "koristite da utvrdite koliki deo keša ključeva je u upotrebi." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9082,11 +9077,11 @@ msgstr "" "vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u " "isto vreme." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahteva za čitanje bloka ključeva iz keša." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9096,15 +9091,15 @@ msgstr "" "je vaša vrednost za key_buffer_size verovatno premala. Stepen promašaja keša " "se može izračunati kao Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahteva za upisivanje bloka ključeva u keš." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih upisa bloka ključeva na disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9114,17 +9109,17 @@ msgstr "" "upita. Korisno za upoređivanje cene različitih planova upita za isti upit. " "Podrazumevana vrednost 0 znači da još nije bio kompajliran nijedan upit." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redova u INSERT DELAYED redovima čekanja koji čekaju upisivanje." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9132,39 +9127,39 @@ msgstr "" "Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je " "verovatno premali." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih tokova (koristi se prvenstveno za vođenje dnevnika (logging))." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Broj otvorenih tabela." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za keš upita." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Broj pogodaka iz keša." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Broj upita dodatih u keš." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9176,7 +9171,7 @@ msgstr "" "keša za upite. Keš za upite koristi strategiju najduže nekorišćenog (en: " "least recently used , LRU) da bi odlučio koje upite da ukloni iz keša." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9184,19 +9179,19 @@ msgstr "" "Broj nekeširanih upita (koji se ne mogu keširati ili nisu keširani zbog " "podešavanja query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Broj upita registrovanih u kešu." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u kešu za upite." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikacije otporne na greške (nije još implementirano)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9204,11 +9199,11 @@ msgstr "" "Broj spojeva koji ne koriste indekste. Ako ova vrednost nije 0, trebalo bi " "pažljivo da proverite indekse vaših tabela." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "Broj spojeva koji su koristili pretragu opsega na referentnoj tabeli." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9217,7 +9212,7 @@ msgstr "" "reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših " "tabela.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9225,15 +9220,15 @@ msgstr "" "Broj spojeva koji su koristili opsege na prvoj tabeli. (Obično nije kritično " "čak ni kada je ovo veliko)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su uradili puno skeniranje prve tabele." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Broj privremenih tabela trenutno otvorenih od strane pomoćne SQL niti." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9241,11 +9236,11 @@ msgstr "" "Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju " "pokušala transakcije." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ovo je ON ako je ovaj server pomoćni koji je povezan na glavni." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9253,12 +9248,12 @@ msgstr "" "Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile " "pokrenute." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Broj upita za koje je trebalo više od long_query_time sekudni." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9268,23 +9263,23 @@ msgstr "" "Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti " "sistemske promenljive sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Broj sortiranja koja su urađena sa opsegom." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Broj sortiranih redova." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Broj sortiranja do kojih je došlo skeniranjem tabele." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Broj puta kada je brava za tabelu odmah dobavljena." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9296,7 +9291,7 @@ msgstr "" "bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili " "tabele ili da koristite replikaciju." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9306,11 +9301,11 @@ msgstr "" "Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate " "vaš thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9322,7 +9317,7 @@ msgstr "" "implementaciju niti, ovo obično ne donosi primetna poboljšanja u " "performansama.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Broj niti koje nisu uspavane." @@ -10465,6 +10460,11 @@ msgstr "naziv za VIEW" msgid "Rename view to" msgstr "Promeni ime tabele u " +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "u sekundi" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/sv.po b/po/sv.po index d1fd3c8ba2..9eb39cf9be 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-16 00:11+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" @@ -84,7 +84,7 @@ msgstr "Nyckel" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Beskrivning" @@ -271,7 +271,7 @@ msgstr "Databas %s har kopierats till %s" msgid "Rename database to" msgstr "Byt namn på databasen till" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Kommando" @@ -622,7 +622,7 @@ msgstr "Vy" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikering" @@ -729,7 +729,7 @@ msgstr "Spårade tabeller" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -747,7 +747,7 @@ msgstr "Skapad" msgid "Updated" msgstr "Uppdaterad" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -1050,15 +1050,15 @@ msgstr "Stäng" msgid "Edit" msgstr "Ändra" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "Live trafik diagram" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "Live anslutning/process diagram" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "Live sökfrågediagram" @@ -1069,13 +1069,13 @@ msgstr "Statisk data" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "Annan" @@ -1107,7 +1107,7 @@ msgstr "Server trafik" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Processer" @@ -1127,7 +1127,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL-frågor" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Visa statistik" @@ -1932,7 +1932,7 @@ msgstr "delad" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tabeller" @@ -2063,7 +2063,7 @@ msgid "Documentation" msgstr "Dokumentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-fråga" @@ -2092,7 +2092,7 @@ msgid "Create PHP Code" msgstr "Skapa PHP-kod" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Uppdatera" @@ -4812,7 +4812,7 @@ msgstr "Komprimering:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Inget" @@ -5047,7 +5047,7 @@ msgid "The row has been deleted" msgstr "Raden har raderats" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Döda" @@ -5137,7 +5137,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffertutrymme" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB-status" @@ -5634,7 +5634,7 @@ msgstr "Visa MIME-typer" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Värd" @@ -6353,13 +6353,13 @@ msgid "Slave status" msgstr "Slav-status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Värde" @@ -6588,12 +6588,12 @@ msgid "Synchronize" msgstr "Synkronisera" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binär logg" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Variabler" @@ -6876,7 +6876,7 @@ msgstr "Partitionsdefinition" msgid "+ Add a new value" msgstr "+ Lägg till ett nytt värde" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Tid" @@ -7075,7 +7075,7 @@ msgid "Protocol version" msgstr "Protokollversion" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Användare" @@ -7519,17 +7519,17 @@ msgstr "Filen finns inte" msgid "Select binary log to view" msgstr "Välj binär logg att visa" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Filer" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Korta av visade frågor" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Visa fullständiga frågor" @@ -8055,7 +8055,7 @@ msgstr "Huvudservern har ändrats till %s" msgid "This server is configured as master in a replication process." msgstr "Denna server är konfigurerad som master i en replikerings process." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Visa master-status" @@ -8202,156 +8202,155 @@ msgstr "" "Denna server är inte konfigurerad som slav i en replikering process. Vill du " "konfigurera den?" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "Uppdateringsfrekvens" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "minutes" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "minuter" +msgstr[1] "minuter" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekund" +msgstr[1] "Sekund" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråden %s dödades med framgång." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunde inte döda tråd %s. Troligtvis har den redan avslutats." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Hanterare" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Frågecache" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Trådar" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Temporära data" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Fördröjda infogningar" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Nyckelcache" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Kopplingar" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Sortering" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Transaktionssamordnare" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Flush (stäng) alla tabeller" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Visa öppna tabeller" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Visa slav-värdar" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Visa slav-status" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Rensa frågecache" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Körningsinformation" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "Server trafik" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "Alla statusvariabler" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "Uppdateringsfrekvens" - -#: server_status.php:398 server_status.php:431 -msgid "second" -msgstr "Sekund" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -msgid "seconds" -msgstr "sekunder" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -msgid "minutes" -msgstr "minuter" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "Innehåller ordet:" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "Visa endast varnings värden" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "Filtrera efter kategori ..." -#: server_status.php:482 +#: server_status.php:477 msgid "Related links:" msgstr "Liknande länkar:" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "per timme" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "per minut" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "per sekund" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Fråge-typ" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "#" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "Nätverkstrafik sedan start:%s" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Denna MySQL-server har varit igång i %s. Den startade den %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8359,17 +8358,17 @@ msgstr "" "Denna MySQL-server fungerar sommaster ochslave i " "replicerings process." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Denna MySQL server arbetar som master in replication process." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Denna MySQL server arbetar som slave in replication process." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8377,15 +8376,15 @@ msgstr "" "För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Replikeringsstatus" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Trafik" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8393,39 +8392,39 @@ msgstr "" "På en upptagen server kan byte-räknare spåra ur, så statistiken som " "rapporteras av MySQL-servern kan vara fel." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Mottagna" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Skickade" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Förbindelser" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "Max. samtidiga förbindelser" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Misslyckade försök" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Avbrutna" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Antalet misslyckade försök att ansluta till MySQL-servern." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8435,16 +8434,16 @@ msgstr "" "överskred värdet binlog_cache_size och använde en temporär fil för att lagra " "satser från transaktionen." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Antalet transaktioner som använde den temporära binära loggcachen." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Antalet anslutningsförsök (lyckade eller inte) till MySQL-servern." -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8456,11 +8455,11 @@ msgstr "" "kanske öka värdet tmp_table_size för att åstadkomma att temporära tabeller " "lagras i minne istället för på disk." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Antalet temporära filer som mysqld har skapat." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8468,7 +8467,7 @@ msgstr "" "Antalet temporära tabeller i minne skapade automatiskt av servern under " "utförande av satser." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8476,7 +8475,7 @@ msgstr "" "Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod " "(förmodligen dubblerad nyckel)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8484,23 +8483,23 @@ msgstr "" "Antalet INSERT DELAYED-hanteringstrådar i bruk. Varje tabell på vilken man " "använder INSERT DELAYED får sin egen tråd." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "Antalet skrivna rader med INSERT DELAYED." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Antalet utförda FLUSH-satser." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Antalet interna COMMIT-satser." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Antalet gånger en rad togs bort från en tabell." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8510,7 +8509,7 @@ msgstr "" "tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar " "antalet gånger tabeller har upptäckts." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8520,7 +8519,7 @@ msgstr "" "tyder det på att servern gör många helindex-avsökningar; t.ex. SELECT col1 " "FROM foo, under förutsättning att col1 är indexerad." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8529,7 +8528,7 @@ msgstr "" "är högt är det en bra indikation på att dina frågor och tabeller är riktigt " "indexerade." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8539,7 +8538,7 @@ msgstr "" "värde ökas om du frågar en indexkolumn med en urvalsbegränsning eller om du " "gör en indexavsökning." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8547,7 +8546,7 @@ msgstr "" "Antalet efterfrågningar att läsa den föregående raden i nyckelordning. Denna " "läsmetod används huvudsakligen för att optimera ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8559,7 +8558,7 @@ msgstr "" "Du har förmodligen många frågor som kräver att MySQL avsöker hela tabeller " "eller du har föreningar som inte använder nycklar på rätt sätt." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8571,35 +8570,35 @@ msgstr "" "dina tabeller inte är riktigt indexerade eller att dina frågor inte är " "skrivna för att dra nytta av de index du har." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Antalet interna ROLLBACK-satser." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Antalet efterfrågningar att uppdatera en rad i en tabell." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Antalet efterfrågningar att lägga till en rad i en tabell." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Antalet sidor innehållande data (orena eller rena)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Antalet sidor för närvarande orena." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antalet buffert-sidor som har efterfrågats om att bli rensade." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Antalet tomma sidor." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8609,7 +8608,7 @@ msgstr "" "läses eller skrivs eller som inte kan rensas eller tas bort av någon annan " "anledning." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8621,11 +8620,11 @@ msgstr "" "också beräknas som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Total storlek på buffert, i antal sidor." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8633,7 +8632,7 @@ msgstr "" "Antalet \"slumpmässiga\" läsningar i förväg som InnoDB initierat. Detta sker " "när en fråga ska avsöka en stor del av en tabell men i slumpmässig ordning." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8641,11 +8640,11 @@ msgstr "" "Antalet sekventiella läsningar i förväg som InnoDB initierat. Detta sker när " "InnoDB gör en sekventiell avsökning av en hel tabell." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8653,7 +8652,7 @@ msgstr "" "Antalet logiska läsningar som InnoDB inte kunde uppfylla från buffert och " "fick göra en enkelsidig läsning." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8667,51 +8666,51 @@ msgstr "" "fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta " "värde vara litet." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antalet skrivningar gjorda till InnoDB-bufferten." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Antalet fsync()-operationer hittills." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Nuvarande antal väntande fsync()-operationer." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Nuvarande antal väntande läsningar." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Nuvarande antal väntande skrivningar." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Mängden data läst hittills, i bytes." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Totalt antal läsningar av data." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Totalt antal skrivningar av data." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Mängden data skriven hittills, i bytes." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "Antalet sidor som har skrivits för doublewrite transaktioner" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "Antalet doublewrite transaktioner som har utförts.." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8719,35 +8718,35 @@ msgstr "" "Antalet väntanden pga loggbufferten var för liten och vi behövde vänta på " "att den skulle rensas innan kunde fortsätta." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Antalet skriv-begäran att skriva till logg." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Antalet fysiska skrivningar till loggfilen." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Antalet fsync()-skrivningar gjorda till loggfilen." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Antalet väntande fsync() av loggfil." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Väntande skrivningar till loggfil." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Antalet bytes skrivna till loggfilen." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Antalet skapade sidor." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8755,51 +8754,51 @@ msgstr "" "Den inkompilerade InnoDB-sidstorleken (standard 16kB). Många värden räknas i " "sidor; sidstorleken tillåter dem att enkelt omvandlas till bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Antalet lästa sidor." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Antalet skrivna sidor." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Antalet radlås som för närvarande väntas på." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Genomsnittlig tid för att skaffa ett radlås, i millisekunder." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid spenderad på att skaffa radlås, i millisekunder." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximal tid för att skaffa ett radlås, i millisekunder." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Antalet gånger ett radlås behövde väntas på." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "Antalet rader borttagna från InnoDB-tabeller." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "Antalet rader tillagda i InnoDB-tabeller." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "Antalet rader lästa från InnoDB-tabeller." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "Antalet rader uppdaterade i InnoDB-tabeller." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8807,7 +8806,7 @@ msgstr "" "Antalet nyckelblock i nyckelcachen som har ändrats men inte ännu överförts " "till disk. Det brukade vara känt som Not_flushed_key_blocks." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8815,7 +8814,7 @@ msgstr "" "Antalet oanvända block i nyckelcachen. Du kan använda detta värde för att " "avgöra hur stor del av nyckelcachen som används." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8824,11 +8823,11 @@ msgstr "" "Antalet använda block i nyckelcachen. Detta värde är ett högvattenmärke som " "indikerar maximala antalet block som någonsin använts vid ett tillfälle." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Antalet efterfrågningar att läsa ett nyckelblock från cachen." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8838,15 +8837,15 @@ msgstr "" "är stort, då är förmodligen ditt värde key_buffer_size för litet. Cachens " "missfrekvens kan beräknas som Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Antalet efterfrågningar att skriva ett nyckelblock till cachen." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8857,7 +8856,7 @@ msgstr "" "av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats " "ännu." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -8865,11 +8864,11 @@ msgstr "" "Det maximala antalet anslutningar som har använts samtidigt sedan servern " "startade." -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antalet rader som väntar på att skrivas i INSERT DELAYED-köer." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8877,19 +8876,19 @@ msgstr "" "Antalet tabeller som har öppnats. Om antalet öppnade tabeller är stort är " "förmodligen ditt tabellcache-värde för litet." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Antalet filer som är öppna." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antalet strömmar som är öppna (används huvudsakligen för loggning)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Antalet tabeller som är öppna." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -8898,19 +8897,19 @@ msgstr "" "Antalet fria minnesblock i frågecache. Högt antal kan tyda på fragmentering, " "vilket kan lösas genom att köra ett FLUSH QUERY CACHEN kommando." -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Mängden fritt minne för frågecache." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Antalet cache-träffar." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Antalet förfrågningar tillagda i cachen." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8922,7 +8921,7 @@ msgstr "" "storleken på frågecachen. Frågecachen använder strategin minst nyligen " "använd (LRU) för att bestämma vilka frågor som ska tas bort från cachen." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8930,19 +8929,19 @@ msgstr "" "Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga " "inställningen query_cache_type)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Antalet frågor registrerade i cachen." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Totala antalet block i frågecachen." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status för felsäker replikering (ännu inte implementerat)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8950,11 +8949,11 @@ msgstr "" "Antalet kopplingar som inte använder index. Om detta värde inte är 0, bör du " "noggrant kontrollera index för dina tabeller." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "Antalet kopplingar som använde en urvalssökning på en referenstabell." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8963,7 +8962,7 @@ msgstr "" "varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för " "dina tabeller.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8971,17 +8970,17 @@ msgstr "" "Antalet kopplingar som använde urval på den första tabellen. (Det är normalt " "inte kritiskt även om detta är stort.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" "Antalet kopplingar som gjorde en fullständig genomsökning av den första " "tabellen." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antalet temporära tabeller för närvarande öppna av slavens SQL-tråd." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8989,25 +8988,25 @@ msgstr "" "Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har " "omprövat transaktioner." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denna är ON ifall denna server är en slav som är förbunden till en " "huvudserver." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Antalet frågor som har tagit mer än slow_launch_time sekunder att skapa." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antalet frågor som har tagit mer än long_query_time sekunder." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9017,23 +9016,23 @@ msgstr "" "detta värde är stort bör du överväga att öka värdet i systemvariabeln " "sort_buffer_size." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Antalet sorteringar som gjordes med intervall." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Antalet sorterade rader." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Antalet sorteringar som har gjorts genom avsökning av tabellen." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Antalet gånger som ett tabellås förvärvades omedelbart." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9045,7 +9044,7 @@ msgstr "" "du först optimera dina frågor och antingen dela upp din tabell eller " "tabeller eller använda replikering." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9055,11 +9054,11 @@ msgstr "" "Threads_created/Connections. Om detta värde är rött bör du öka värdet " "thread_cache_size." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Antalet öppna förbindelser." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9071,7 +9070,7 @@ msgstr "" "(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra " "trådimplementering.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Antalet trådar som inte är vilande." @@ -10210,6 +10209,9 @@ msgstr "VIEW namn" msgid "Rename view to" msgstr "Ändra namn till" +#~ msgid "seconds" +#~ msgstr "sekunder" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Jämför exekveringstid (millisekunder" diff --git a/po/ta.po b/po/ta.po index ea5f914671..e9fafb408b 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" @@ -84,7 +84,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "" @@ -269,7 +269,7 @@ msgstr "" msgid "Rename database to" msgstr "" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "" @@ -623,7 +623,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "" @@ -732,7 +732,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -750,7 +750,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -1041,15 +1041,15 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "" @@ -1060,13 +1060,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1096,7 +1096,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "" @@ -1112,7 +1112,7 @@ msgstr "" msgid "Issued queries" msgstr "" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "" @@ -1950,7 +1950,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "" @@ -2074,7 +2074,7 @@ msgid "Documentation" msgstr "" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "" @@ -2103,7 +2103,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4658,7 +4658,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "" @@ -4881,7 +4881,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "" @@ -4969,7 +4969,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "" @@ -5412,7 +5412,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "" @@ -6092,13 +6092,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6323,12 +6323,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "" @@ -6588,7 +6588,7 @@ msgstr "" msgid "+ Add a new value" msgstr "புதிய பயனாளரை சேர்க்க" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "" @@ -6741,7 +6741,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "" @@ -7154,17 +7154,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "" @@ -7667,7 +7667,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -7800,237 +7800,234 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "" + +#: server_status.php:31 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: server_status.php:33 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "" - -#: server_status.php:398 server_status.php:431 -msgid "second" -msgstr "" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -msgid "seconds" -msgstr "" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -msgid "minutes" -msgstr "" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 msgid "Related links:" msgstr "" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "நிறுத்தப்பட்டுள்ளது" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8038,78 +8035,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8117,7 +8114,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8125,42 +8122,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8168,33 +8165,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8203,227 +8200,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8431,99 +8428,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8531,18 +8528,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8550,7 +8547,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" diff --git a/po/te.po b/po/te.po index a088544992..f2e3e500c5 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" @@ -85,7 +85,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "వివరణ" @@ -275,7 +275,7 @@ msgid "Rename database to" msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి" # మొదటి అనువాదము -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "ఆజ్ఞ" @@ -632,7 +632,7 @@ msgstr "చూపుము" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "" @@ -744,7 +744,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -762,7 +762,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "స్థితి" @@ -1057,15 +1057,15 @@ msgstr "మూసివేయి" msgid "Edit" msgstr "మార్చు" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "" @@ -1076,13 +1076,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "మొత్తం" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1112,7 +1112,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "" @@ -1130,7 +1130,7 @@ msgstr "" msgid "Issued queries" msgstr "" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -1961,7 +1961,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "పట్టికలు" @@ -2086,7 +2086,7 @@ msgid "Documentation" msgstr "పత్రావళి" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "" @@ -2115,7 +2115,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4692,7 +4692,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "ఏమీలేదు" @@ -4915,7 +4915,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "" @@ -5007,7 +5007,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "" @@ -5452,7 +5452,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "" @@ -6150,13 +6150,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "విలువ" @@ -6381,12 +6381,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "" @@ -6651,7 +6651,7 @@ msgstr "" msgid "+ Add a new value" msgstr "క్రొత్త వినియోగదారుని చేర్చు" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "సమయం" @@ -6810,7 +6810,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "వాడుకరి" @@ -7241,17 +7241,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "దస్త్రాలు" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "" @@ -7761,7 +7761,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -7894,247 +7894,240 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "" + +# మొదటి అనువాదము +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "నిమిషం" +msgstr[1] "నిమిషం" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "క్షణం" +msgstr[1] "క్షణం" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "క్షణం" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "క్షణం" - -# మొదటి అనువాదము -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "నిమిషం" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "సంబంధాలు" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "గంటకి" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "నిమిషానికి" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "క్షణానికి" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "" # మొదటి అనువాదము -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "పంపించు" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "అనుసంధానాలు" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8142,78 +8135,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8221,7 +8214,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8229,42 +8222,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8272,33 +8265,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8307,230 +8300,230 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" # మొదటి అనువాదము -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "సృష్టించబడిన పుటల సంఖ్య" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" # మొదటి అనువాదము -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "చదివిన పుటల సంఖ్య" # మొదటి అనువాదము -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "వ్రాసిన పుటల సంఖ్య" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8538,99 +8531,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8638,18 +8631,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8657,7 +8650,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -9760,6 +9753,11 @@ msgstr "నామధేయమును చూపుము" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "క్షణం" + #~ msgid "Width" #~ msgstr "వెడల్పు" diff --git a/po/th.po b/po/th.po index 429b49d006..8f062a2bbb 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" @@ -82,7 +82,7 @@ msgstr "ชื่อคีย์" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "รายละเอียด" @@ -269,7 +269,7 @@ msgstr "คัดลอกฐานข้อมูล %s ไปเก็บใ msgid "Rename database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "คำสั่ง" @@ -629,7 +629,7 @@ msgstr "วิว" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "การทำข้อมูลซ้ำไปไว้อีกที่หนึ่ง" @@ -740,7 +740,7 @@ msgstr "ตารางที่ถูกติดตาม" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -759,7 +759,7 @@ msgstr "สร้าง" msgid "Updated" msgstr "ปรับปรุงแล้ว" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "สถานะ" @@ -1058,17 +1058,17 @@ msgstr "" msgid "Edit" msgstr "แก้ไข" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "คำค้น SQL" @@ -1080,13 +1080,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "รวม" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1118,7 +1118,7 @@ msgstr "ตัวเลือกเซิร์ฟเวอร์" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "โพรเซส" @@ -1137,7 +1137,7 @@ msgstr "" msgid "Issued queries" msgstr "คำค้น SQL" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "สถิติของแถว" @@ -2014,7 +2014,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "ตาราง" @@ -2145,7 +2145,7 @@ msgid "Documentation" msgstr "เอกสารอ้างอิง" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "คำค้น SQL" @@ -2174,7 +2174,7 @@ msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "เรียกใหม่" @@ -4855,7 +4855,7 @@ msgstr "บีบอัดข้อมูล" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "ไม่มี" @@ -5105,7 +5105,7 @@ msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "ฆ่าทิ้ง" @@ -5196,7 +5196,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "สถานะของ InnoDB" @@ -5662,7 +5662,7 @@ msgstr "MIME-types ที่มีอยู่" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "โฮสต์" @@ -6360,13 +6360,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "ตัวแปร" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "ค่า" @@ -6606,13 +6606,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr " ข้อมูลไบนารี " #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "ตัวแปร" @@ -6902,7 +6902,7 @@ msgstr "" msgid "+ Add a new value" msgstr "เพิ่มผู้ใช้ใหม่" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "เวลา" @@ -7070,7 +7070,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "ผู้ใช้" @@ -7530,18 +7530,18 @@ msgstr "ไม่มีตาราง \"%s\"!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "จำนวนฟิลด์" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "ตัดทอนคำค้นที่แสดง" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "แสดงคำค้นแบบเต็ม" @@ -8064,7 +8064,7 @@ msgstr "สิทธิได้ถูกเรียกใช้ใหม่เ msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8203,256 +8203,249 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้." - -#: server_status.php:248 -msgid "Handler" -msgstr "" - -#: server_status.php:249 -#, fuzzy -msgid "Query cache" -msgstr "ชนิดคำค้น" - -#: server_status.php:250 -msgid "Threads" -msgstr "" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "" - -#: server_status.php:253 -#, fuzzy -msgid "Delayed inserts" -msgstr "แทรกหลายระเบียนในคราวเดียว" - -#: server_status.php:254 -msgid "Key cache" -msgstr "" - -#: server_status.php:255 -msgid "Joins" -msgstr "" - -#: server_status.php:257 -msgid "Sorting" -msgstr "" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:272 -#, fuzzy -msgid "Show open tables" -msgstr "แสดงตาราง" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "ข้อมูลรันไทม์" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "ตัวเลือกเซิร์ฟเวอร์" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "เรียกใหม่" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "ต่อวินาที" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "ต่อวินาที" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "in use" -msgid "minutes" -msgstr "ใช้อยู่" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "ใช้อยู่" +msgstr[1] "ใช้อยู่" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "ต่อวินาที" +msgstr[1] "ต่อวินาที" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้." + +#: server_status.php:263 +msgid "Handler" +msgstr "" + +#: server_status.php:264 +#, fuzzy +msgid "Query cache" +msgstr "ชนิดคำค้น" + +#: server_status.php:265 +msgid "Threads" +msgstr "" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "" + +#: server_status.php:268 +#, fuzzy +msgid "Delayed inserts" +msgstr "แทรกหลายระเบียนในคราวเดียว" + +#: server_status.php:269 +msgid "Key cache" +msgstr "" + +#: server_status.php:270 +msgid "Joins" +msgstr "" + +#: server_status.php:272 +msgid "Sorting" +msgstr "" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:287 +#, fuzzy +msgid "Show open tables" +msgstr "แสดงตาราง" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "ข้อมูลรันไทม์" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "ตัวเลือกเซิร์ฟเวอร์" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy msgid "Show only alert values" msgstr "แสดงตาราง" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "รีเลชัน" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "ต่อชั่วโมง" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "ต่อนาที" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "ต่อวินาที" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "ชนิดคำค้น" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "เซิร์ฟเวอร์ MySQL นี้รันมาเป็นเวลา %s. เริ่มตอน %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "การจราจร" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "ได้รับ" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "ถูกส่ง" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "การเชื่อมต่อ" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "ความพยายามล้มเหลว" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "ยกเลิก" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8460,78 +8453,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8539,7 +8532,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8547,42 +8540,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8590,33 +8583,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8625,227 +8618,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8853,99 +8846,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8953,18 +8946,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8972,7 +8965,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -10106,6 +10099,11 @@ msgstr "" msgid "Rename view to" msgstr "เปลี่ยนชื่อตารางเป็น" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "ต่อวินาที" + #, fuzzy #~| msgid "SQL result" #~ msgid "Query results" diff --git a/po/tr.po b/po/tr.po index 2d132dceaa..fd07041cd8 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-16 21:00+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" @@ -84,7 +84,7 @@ msgstr "Anahtar adı" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Açıklama" @@ -271,7 +271,7 @@ msgstr "%s veritabanı %s veritabanına kopyalandı" msgid "Rename database to" msgstr "Veritabanını şuna yeniden adlandır" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Komut" @@ -621,7 +621,7 @@ msgstr "Görünüm" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Kopya Etme" @@ -728,7 +728,7 @@ msgstr "İzlenen tablolar" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -746,7 +746,7 @@ msgstr "Oluşturuldu" msgid "Updated" msgstr "Güncellendi" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Durum" @@ -1052,15 +1052,15 @@ msgstr "Kapat" msgid "Edit" msgstr "Düzenle" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 msgid "Live traffic chart" msgstr "Canlı trafik çizelgesi" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "Canlı bağ./işlem çizelgesi" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 msgid "Live query chart" msgstr "Canlı sorgu çizelgesi" @@ -1071,13 +1071,13 @@ msgstr "Sabit veri" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Toplam" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "Diğer" @@ -1109,7 +1109,7 @@ msgstr "Sunucu trafiği" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "İşlemler" @@ -1129,7 +1129,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL sorguları" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Sorgu istatistikleri" @@ -1934,7 +1934,7 @@ msgstr "paylaşılmış" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tablolar" @@ -2068,7 +2068,7 @@ msgid "Documentation" msgstr "Belgeler" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL sorgusu" @@ -2097,7 +2097,7 @@ msgid "Create PHP Code" msgstr "PHP Kodu oluştur" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Yenile" @@ -4847,7 +4847,7 @@ msgstr "Sıkıştırma:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Yok" @@ -5082,7 +5082,7 @@ msgid "The row has been deleted" msgstr "Satır silindi" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Sonlandır" @@ -5172,7 +5172,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Ara Bellek Havuzu" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB Durumu" @@ -5676,7 +5676,7 @@ msgstr "MIME türlerini göster" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Anamakine" @@ -6397,13 +6397,13 @@ msgid "Slave status" msgstr "Slave durumu" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Değişken" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Değer" @@ -6632,12 +6632,12 @@ msgid "Synchronize" msgstr "Eşitle" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binari günlüğü" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Değişkenler" @@ -6920,7 +6920,7 @@ msgstr "PARTITION tanımı" msgid "+ Add a new value" msgstr "+ Yeni bir değer ekle" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Süre" @@ -7119,7 +7119,7 @@ msgid "Protocol version" msgstr "Protokol sürümü" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Kullanıcı" @@ -7568,17 +7568,17 @@ msgstr "Dosya mevcut değil" msgid "Select binary log to view" msgstr "Görüntülemek için binari günlüğünü seçin" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Dosyalar" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Gösterilen Sorguları Kısalt" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Tüm Sorguları Göster" @@ -8103,7 +8103,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Bu sunucu kopya etme işlemi sırasında master sunucu olarak yapılandırıldı." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Master durumunu göster" @@ -8253,155 +8253,152 @@ msgstr "" "Bu sunucu, kopya etme işlemi sırasında slave sunucu olarak yapılandırılmaz. " "Bunu yapılandırmak istiyor musunuz?" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "Oranı yenile" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "minutes" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "dakika" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "saniye" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "%s işlemi başarılı olarak sonlandırıldı." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s işlemini sonlandıramadı. Muhtemelen zaten kapatılmış." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Denetimci" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "Sorgu önbelleği" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "İşlemler" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Geçici veri" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Gecikmiş eklemeler" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Anahtar önbelleği" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Birleştirmeler" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Sıralama" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "İşlem koordinatörü" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Tüm tabloları temizle (kapat)" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Açık tabloları göster" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Slave anamakineleri göster" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Slave durumunu göster" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "Sorgu önbelleğini temizle" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Çalışma Süresi Bilgisi" -#: server_status.php:385 +#: server_status.php:400 msgid "Server traffic" msgstr "Sunucu trafiği" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "Tüm durum değişkenleri" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "Oranı yenile" - -#: server_status.php:398 server_status.php:431 -msgid "second" -msgstr "saniye" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -msgid "seconds" -msgstr "saniye" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -msgid "minutes" -msgstr "dakika" - -#: server_status.php:460 +#: server_status.php:455 msgid "Containing the word:" msgstr "İçerdiği kelime:" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "Sadece uyarı değerlerini göster" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "Kategoriye göre süz..." -#: server_status.php:482 +#: server_status.php:477 msgid "Related links:" msgstr "İlgili bağlantılar:" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "saat başına" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "dakika başına" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "saniye başına" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Sorgu türü" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "#" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "Başlangıçtan bu yana ağ trafiği: %s" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Bu MySQL sunucusunun çalışma süresi: %s. Başlatıldığı zaman: %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." @@ -8409,19 +8406,19 @@ msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında master ve " "slave olarak çalışır." -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında master olarak " "çalışır." -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında slave olarak " "çalışır." -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8429,15 +8426,15 @@ msgstr "" "Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Kopya etme durumu" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Trafik" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8445,39 +8442,39 @@ msgstr "" "Meşgul sunucu üzerinde, bayt sayaçları aşırı işleyebilir, bu yüzden MySQL " "sunucusu tarafından raporlanan istatistikler doğru olmayabilir." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Alınan" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Gönderilen" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Bağlantılar" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "En fazla eşzamanlı bağlantı" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Başarısız deneme" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "İptal edilen" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL sunucusuna bağlanmak için başarısız girişim sayısı." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8487,16 +8484,16 @@ msgstr "" "binlog_cache_size değerini aştı ve işlemdeki ifadeleri depolamak için geçici " "dosya kullandı." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısı." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL sunucusuna bağlantı girişimi (başarılı ya da değil) sayısı." -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8508,11 +8505,11 @@ msgstr "" "büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olamasına " "sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8520,7 +8517,7 @@ msgstr "" "İfadeler çalıştırılırken sunucu tarafından bellek içindeki geçici tabloların " "sayısı otomatik olarak oluşturuldu." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8528,7 +8525,7 @@ msgstr "" "INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır " "sayısı (muhtemelen kopya anahtar)." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8536,23 +8533,23 @@ msgstr "" "Kullanımda olan INSERT DELAYED işleticisi işlem sayısı. INSERT DELAYED " "komutunu kullanan her farklı tablodan biri kendi işlemini alır." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED satır yazımı sayısıdır." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Dahili COMMIT ifadesi sayısıdır." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Tablodan satırın kaç kez silindiği sayısıdır." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8562,7 +8559,7 @@ msgstr "" "motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez " "keşfedildiğini gösterir." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8572,7 +8569,7 @@ msgstr "" "sunucunun çok fazla indeks taraması yapıyor olduğunu gösterir; örneğin, " "SELECT col1 FROM foo, anlaşılıyor ki col1 indekslenmiş." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8581,7 +8578,7 @@ msgstr "" "sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi " "olduğu belirtisidir." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8591,7 +8588,7 @@ msgstr "" "aralık ile indeks sütununu sorguluyorsanız ya da indeks taraması " "yapıyorsanız, bu arttırılan miktardır." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8599,7 +8596,7 @@ msgstr "" "Anahtar sırasında önceki satırı okumak için istek sayısıdır. Bu okuma " "yöntemi başlıca ORDER BY ... DESC komutunu uyarlamak için kullanılır." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8612,7 +8609,7 @@ msgstr "" "fazla sorgulamanız vardır veya düzgün bir şekilde anahtarları " "kullanmamaktasınız." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8624,35 +8621,35 @@ msgstr "" "düzgün bir şekilde indekslenmediğinde ya da sorgularınız, sahip olduğunuz " "indeksleri çıkarına kullanmak için yazmadığında önerilir." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "Dahili ROLLBACK ifadesi sayısıdır." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Tablo içinde satır güncellemek için istek sayısıdır." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Tablo içinde satır eklemek için istek sayısıdır." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Veri içeren sayfa sayısıdır (dolu veya temiz)." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "Şu anki dolu sayfa sayısıdır." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Temizlenmesi için istenmiş ara bellek havuz sayfa sayısıdır." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Boş sayfa sayısıdır." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8662,7 +8659,7 @@ msgstr "" "okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya " "taşınamayan sayfalardır." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8674,11 +8671,11 @@ msgstr "" "zamanda Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data değerleri gibi hesaplanabilir." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Sayfalardaki ara bellek havuzunun toplam boyutudur." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8686,7 +8683,7 @@ msgstr "" "InnoDB \"rastgele\" önden okuma başlatımı sayısıdır. Sorgu tablonun büyük " "bir kısmını taradığı zaman bu olur ama rastgele düzende." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8694,11 +8691,11 @@ msgstr "" "InnoDB sıralı önden okuma başlatımı sayısıdır. InnoDB sıralı tam tablo " "taraması yaptığı zaman bu olur." -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB'nin bitirdiği veya yaptığı mantıksal okuma isteği sayısıdır." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8706,7 +8703,7 @@ msgstr "" "InnoDB'nin ara bellek havuzundan tatmin olamadığı ve tek-sayfa okuması " "yapmak zorunda olduğu mantıksal okuma sayısıdır." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8720,55 +8717,55 @@ msgstr "" "durumlarını sayar. Eğer ara bellek havuzu boyutu düzgün bir şekilde " "ayarlandıysa, bu değer küçük olmalıdır." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB ara bellek havuzuna bitti yazma sayısıdır." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Şimdiye kadarki fsync() işlem sayısıdır." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Şu anki bekleyen fsync() işlem sayısıdır." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Şu anki bekleyen okuma sayısıdır." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Şu anki bekleyen yazma sayısıdır." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Toplam veri okuma sayısıdır." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Toplam veri yazma sayısıdır." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8776,35 +8773,35 @@ msgstr "" "Sahip olunan bekleme sayısıdır çünkü günlük ara belleği çok küçük ve devam " "etmeden önce temizlenmesi için beklemek zorundayız." -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Günlük yazma isteği sayısıdır." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Günlük dosyasına fiziksel yazma sayısıdır." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Günlük dosyasına bitmiş fsync() yazma sayısıdır." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "Bekleyen günlük dosyası fsyncs sayısıdır." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Bekleyen günlük dosyası yazma sayısıdır." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Günlük dosyasına yazılı bayt sayısıdır." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Oluşturulmuş sayfa sayısıdır." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8812,52 +8809,52 @@ msgstr "" "Derlenen InnoDB sayfa boyutu (varsayılan 16KB). Birçok değer sayfalarda " "sayılır; sayfa boyutu bunların kolaylıkla bayt'a dönüştürülmesine izin verir." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Okunan sayfa sayısıdır." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Yazılmış sayfa sayısıdır." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Şu anki beklenen satır kilidi sayısıdır." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için ortalama süredir." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Milisaniye cinsinden satır kilidi elde ederken harcanmış toplam süredir." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için en fazla süredir." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Satır kilidinin beklemek zorunda kaldığı süre sayısıdır." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tablolarından silinen satır sayısıdır." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tablolarına eklenen satır sayısıdır." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tablolarından okunan satır sayısıdır." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tablolarında güncellenen satır sayısıdır." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8865,7 +8862,7 @@ msgstr "" "Anahtar önbelleğindeki değiştirilmiş ama diskte henüz temizlenmemiş anahtar " "bloğu sayısıdır. Not_flushed_key_blocks olarak bilinip kullanılır." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8874,7 +8871,7 @@ msgstr "" "önbelleğinin ne kadarının kullanımda olmasını belirlemek için " "kullanabilirsiniz." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8883,11 +8880,11 @@ msgstr "" "Anahtar önbelleğinde kullanılan blok sayısıdır. Bu değerin en uç noktada " "olması bir kerede en fazla blok sayısının kullanımda olmamasını gösterir." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Önbellekten anahtar bloğunun okunması için istek sayısıdır." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8897,15 +8894,15 @@ msgstr "" "büyükse, key_buffer_size değeriniz muhtemelen çok küçüktür. Eksik önbellek " "oranı Key_reads/Key_read_requests olarak hesaplanabilir." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Önbelleğe anahtar bloğu yazmak için istek sayısıdır." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Diske anahtar bloğunu fiziksel yazma sayısıdır." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8916,7 +8913,7 @@ msgstr "" "karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu " "olmadığı anlamına gelir." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -8924,11 +8921,11 @@ msgstr "" "Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla " "bağlantı sayısı." -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED sıralarında yazılmak için bekleyen satır sayısıdır." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8936,19 +8933,19 @@ msgstr "" "Açık olan tablo sayısıdır. Eğer açık tablolar büyükse, tablo önbellek " "değeriniz muhtemelen çok küçüktür." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Açık olan dosya sayısıdır." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "Açık olan akış sayısıdır (başlıca günlükleme için kullanılır)." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Açık olan tablo sayısıdır." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -8958,19 +8955,19 @@ msgstr "" "QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret " "edebilir." -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Sorgu önbelleği için boş bellek miktarıdır." -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Önbelleğe ulaşma sayısıdır." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Önbelleğe eklenen sorgu sayısıdır." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8982,7 +8979,7 @@ msgstr "" "yardımcı olabilir. Önbellekten hangi sorguların kaldırılacağına karar vermek " "için sorgu önbelleği en az son kullanılmış (LRU) stratejisini kullanır." -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8990,19 +8987,19 @@ msgstr "" "Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type " "ayarından dolayı önbelleklenmedi)." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Önbellekte kayıtlı sorgu sayısıdır." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Sorgu önbelleği içindeki toplam blok sayısıdır." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9010,11 +9007,11 @@ msgstr "" "İndeksler kullanmayan birleştirme sayısıdır. Eğer bu değer 0 değilse, " "tablolarınızın indekslerini dikkatli olarak kontrol etmelisiniz." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "Referans tablosunda aralık araması kullanan birleştirme sayısıdır." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9023,7 +9020,7 @@ msgstr "" "birleştirme sayısıdır. (Eğer bu değer 0 değilse, tablolarınızın indekslerini " "dikkatli olarak kontrol etmelisiniz.)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9031,15 +9028,15 @@ msgstr "" "İlk tabloda aralıkları kullanan birleştirme sayısıdır. (Normal olarak " "kusurlu değildir, eğer büyükse bile.)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "İlk tablonun tam taramasının yapıldığı birleştirme sayısıdır." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Slave SQL işlemi tarafından şu anki açık geçici tablo sayısıdır." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9047,11 +9044,11 @@ msgstr "" "Kopya edilen slave SQL işleminin yeniden denediği işlerin toplam " "(başlangıçtan beri) süre sayısıdır." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Eğer sunucu master'a bağlı slave ise, bu AÇIKTIR." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9059,12 +9056,12 @@ msgstr "" "Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem " "sayısıdır." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Long_query_time saniyeden daha uzun zaman almış sorgu sayısıdır." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9074,23 +9071,23 @@ msgstr "" "değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı " "dikkate almalısınız." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Aralıklarla yapılmış sıralama sayısıdır." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Sıralanmış satır sayısıdır." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "Taranan tablo tarafından yapılmış sıralama sayısıdır." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Tablo kilidinin hemen tanındığı süre sayısıdır." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9102,7 +9099,7 @@ msgstr "" "uyarlamalısınız ve sonra ya tablonuzu ya da tablolarınızı bölün veya kopya " "etmeyi kullanın." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9112,11 +9109,11 @@ msgstr "" "Threads_created/Bağlantılar olarak hesaplanabilir. Eğer bu değer kırmızı " "ise, thread_cache_size boyutunuzu yükseltmelisiniz." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Şu anki açık bağlantı sayısıdır." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9128,7 +9125,7 @@ msgstr "" "(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer " "bir performans artışı vermez.)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Hala faaliyette olan işlemler sayısıdır." @@ -10272,6 +10269,9 @@ msgstr "GÖRÜNÜM adı" msgid "Rename view to" msgstr "Görünümü yeniden şuna adlandır" +#~ msgid "seconds" +#~ msgstr "saniye" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "Sorgu işletim süresi karşılaştırması (mikro saniye olarak)" diff --git a/po/tt.po b/po/tt.po index 06d1566a50..f7e6faa356 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" @@ -84,7 +84,7 @@ msgstr "Tezeş adı" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Açıqlama" @@ -271,7 +271,7 @@ msgstr "Database %s has been copied to %s" msgid "Rename database to" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Ämer" @@ -640,7 +640,7 @@ msgstr "Qaraş" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 #, fuzzy msgid "Replication" msgstr "Bäyläneşlär" @@ -754,7 +754,7 @@ msgstr "Tüşämä tikşerü" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -774,7 +774,7 @@ msgstr "Yarat" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Torış" @@ -1085,17 +1085,17 @@ msgstr "" msgid "Edit" msgstr "Tözätü" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Server Saylaw" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy msgid "Live query chart" msgstr "SQL-soraw" @@ -1107,13 +1107,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Tulayım" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1145,7 +1145,7 @@ msgstr "Server Saylaw" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Proseslar" @@ -1164,7 +1164,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL-soraw" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy msgid "Query statistics" msgstr "Kerem Nöfüse" @@ -2051,7 +2051,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Tüşämä" @@ -2187,7 +2187,7 @@ msgid "Documentation" msgstr "Qullanma" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-soraw" @@ -2216,7 +2216,7 @@ msgid "Create PHP Code" msgstr "PHP-Kod yasa" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Yañart" @@ -4926,7 +4926,7 @@ msgstr "Qısu" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Buş" @@ -5180,7 +5180,7 @@ msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Üter" @@ -5271,7 +5271,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Bufer Pulı" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB Torışı" @@ -5753,7 +5753,7 @@ msgstr "Barlıq MIME-törlär" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Host" @@ -6456,13 +6456,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Üzgärmä" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Bäyä" @@ -6703,12 +6703,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Binar köndälek" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Üzgärmälär" @@ -7006,7 +7006,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Yaña qullanuçı östäw" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Waqıt" @@ -7228,7 +7228,7 @@ msgid "Protocol version" msgstr "Protokol söreme" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Qullanuçı" @@ -7699,18 +7699,18 @@ msgstr "\"%s\" atlı tüşämä yuq äle!" msgid "Select binary log to view" msgstr "Qaraw öçen binar köndälek saylaw" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 #, fuzzy msgid "Files" msgstr "Alan" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Sorawnı Qısqartıp Kürsätäse" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Tulı Sorawlar Kürsät" @@ -8240,7 +8240,7 @@ msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8380,255 +8380,246 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "%s cebe uñışlı üterelgän buldı." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin %s ceben üterä almadı. Bälki ul yabılğan bulğan da inde." - -#: server_status.php:248 -msgid "Handler" -msgstr "Eşkärtkeç" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Soraw alxätere" - -#: server_status.php:250 -msgid "Threads" -msgstr "Ceplär" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "Çaqlı birem" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Kiçerelgän östäw" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Tezeş alxätere" - -#: server_status.php:255 -msgid "Joins" -msgstr "Bäylär" - -#: server_status.php:257 -msgid "Sorting" -msgstr "Tezü" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Eş-ara idäräçese" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "Tüşämälärne yabıp beteräse" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Açıq tüşämä tezmäse" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "Soraw alxäteren awdar" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "Eşläw Torışı" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Server Saylaw" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Yañart" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "sekund sayın" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "sekund sayın" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "in use" -msgid "minutes" -msgstr "totıla" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "totıla" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "sekund sayın" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "%s cebe uñışlı üterelgän buldı." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin %s ceben üterä almadı. Bälki ul yabılğan bulğan da inde." + +#: server_status.php:263 +msgid "Handler" +msgstr "Eşkärtkeç" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Soraw alxätere" + +#: server_status.php:265 +msgid "Threads" +msgstr "Ceplär" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "Çaqlı birem" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Kiçerelgän östäw" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Tezeş alxätere" + +#: server_status.php:270 +msgid "Joins" +msgstr "Bäylär" + +#: server_status.php:272 +msgid "Sorting" +msgstr "Tezü" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Eş-ara idäräçese" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "Tüşämälärne yabıp beteräse" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Açıq tüşämä tezmäse" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "Soraw alxäteren awdar" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "Eşläw Torışı" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Server Saylaw" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Sersüzen üzgärtäse tügel" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Açıq tüşämä tezmäse" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Bäyläneşlär" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "säğät sayın" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "minut sayın" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "sekund sayın" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Soraw töre" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Bu MySQL-server %s eşli. %s çorında cibärelgän ide ul." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 #, fuzzy msgid "Replication status" msgstr "Bäyläneşlär" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Taşım" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Alındı" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Cibärelde" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Totaşular" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Failed attempts" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Özderelde" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8636,78 +8627,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8715,7 +8706,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8723,43 +8714,43 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 #, fuzzy msgid "The number of pages currently dirty." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Buş bitlär sanı." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8767,33 +8758,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8802,92 +8793,92 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 #, fuzzy msgid "The current number of pending reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:893 +#: server_status.php:888 #, fuzzy msgid "The current number of pending writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 #, fuzzy msgid "The total number of data reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:896 +#: server_status.php:891 #, fuzzy msgid "The total number of data writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 #, fuzzy msgid "The number of log write requests." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:902 +#: server_status.php:897 #, fuzzy msgid "The number of physical writes to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:903 +#: server_status.php:898 #, fuzzy msgid "The number of fsync() writes done to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8896,144 +8887,144 @@ msgstr "" "values are counted in pages; the page size allows them to be easily " "converted to bytes." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Uqılğan bit sanı bu." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Yazılğan bit sanı bu." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 #, fuzzy msgid "The number of physical writes of a key block to disk." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Açıq toruçı birem sanı." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Açıq toruçı tüşämä sanı." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "Alxätergä turı kilü sanı bu." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9041,99 +9032,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9141,18 +9132,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Biredä açıq bulğan totaşu sanı." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9160,7 +9151,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Açıq toruçı birem sanı." @@ -10304,6 +10295,11 @@ msgstr "" msgid "Rename view to" msgstr "Tüşämä adın üzgärtü" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "sekund sayın" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/ug.po b/po/ug.po index 01af29c9b3..a6e6027a2d 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" @@ -86,7 +86,7 @@ msgstr "قىممەت ئىسمى" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "ئىزاھات" @@ -271,7 +271,7 @@ msgstr "ساندان %s غا كۆچۈرۈلدى %s" msgid "Rename database to" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "بۇيرۇق" @@ -625,7 +625,7 @@ msgstr "قاراش" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "كۆچۈرۈش" @@ -734,7 +734,7 @@ msgstr "ئىزلانغان جەدۋەل" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -752,7 +752,7 @@ msgstr "قۇرۇش" msgid "Updated" msgstr "يېڭلاش" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "ھالەت" @@ -1066,17 +1066,17 @@ msgstr "" msgid "Edit" msgstr "تەھىرلەش" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "مۇلازىمىتېر تاللاش" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "SQL query" msgid "Live query chart" @@ -1089,13 +1089,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "يىغىندىسى" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "مۇلازىمىتېر تاللاش" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "" @@ -1143,7 +1143,7 @@ msgstr "" msgid "Issued queries" msgstr "" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "" @@ -1979,7 +1979,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "" @@ -2108,7 +2108,7 @@ msgid "Documentation" msgstr "قوللانما" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL سورىقى" @@ -2137,7 +2137,7 @@ msgid "Create PHP Code" msgstr "PHP كودى قۇرۇش" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "يېڭلاش" @@ -4755,7 +4755,7 @@ msgstr "پىرىسلاش" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "يوق" @@ -5002,7 +5002,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "" @@ -5092,7 +5092,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "" @@ -5555,7 +5555,7 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "ئاساسىي ماشىنا" @@ -6243,13 +6243,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6484,12 +6484,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "" @@ -6744,7 +6744,7 @@ msgstr "" msgid "+ Add a new value" msgstr "" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "ۋاقىت" @@ -6907,7 +6907,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "" @@ -7347,17 +7347,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "" @@ -7862,7 +7862,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -7999,249 +7999,240 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_status.php:248 -msgid "Handler" -msgstr "" - -#: server_status.php:249 -msgid "Query cache" -msgstr "" - -#: server_status.php:250 -msgid "Threads" -msgstr "" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:254 -msgid "Key cache" -msgstr "" - -#: server_status.php:255 -msgid "Joins" -msgstr "" - -#: server_status.php:257 -msgid "Sorting" -msgstr "" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "مۇلازىمىتېر تاللاش" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "يېڭلاش" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "سېكنۇت" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "سېكنۇت" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "Minute" -msgid "minutes" -msgstr "مىنۇت" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "مىنۇت" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "سېكنۇت" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:263 +msgid "Handler" +msgstr "" + +#: server_status.php:264 +msgid "Query cache" +msgstr "" + +#: server_status.php:265 +msgid "Threads" +msgstr "" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:269 +msgid "Key cache" +msgstr "" + +#: server_status.php:270 +msgid "Joins" +msgstr "" + +#: server_status.php:272 +msgid "Sorting" +msgstr "" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "مۇلازىمىتېر تاللاش" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 msgid "Containing the word:" msgstr "" -#: server_status.php:465 +#: server_status.php:460 msgid "Show only alert values" msgstr "" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "مۇناسىۋىتى" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8249,78 +8240,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8328,7 +8319,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8336,42 +8327,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8379,33 +8370,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8414,227 +8405,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8642,99 +8633,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8742,18 +8733,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8761,7 +8752,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -9858,6 +9849,11 @@ msgstr "" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "سېكنۇت" + #, fuzzy #~| msgid "" #~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" diff --git a/po/uk.po b/po/uk.po index 196b5629f4..65eda18de7 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-12-28 22:26+0200\n" "Last-Translator: Olexiy Zagorskyi \n" "Language-Team: ukrainian \n" @@ -85,7 +85,7 @@ msgstr "Ім'я ключа" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Опис" @@ -270,7 +270,7 @@ msgstr "Базу даних %s скопійовано в %s" msgid "Rename database to" msgstr "Перейменувати базу даних в" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Команда" @@ -625,7 +625,7 @@ msgstr "" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "" @@ -736,7 +736,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -754,7 +754,7 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Статус" @@ -1049,17 +1049,17 @@ msgstr "" msgid "Edit" msgstr "Редагувати" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Вибір сервера" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "SQL query" msgid "Live query chart" @@ -1072,13 +1072,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Разом" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "Вибір сервера" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Процеси" @@ -1128,7 +1128,7 @@ msgstr "" msgid "Issued queries" msgstr "" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "Статистика запиту" @@ -1931,7 +1931,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Таблиць" @@ -2064,7 +2064,7 @@ msgid "Documentation" msgstr "Документація" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL-запит" @@ -2093,7 +2093,7 @@ msgid "Create PHP Code" msgstr "Створити PHP код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "" @@ -4650,7 +4650,7 @@ msgstr "Стискання:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Немає" @@ -4889,7 +4889,7 @@ msgid "The row has been deleted" msgstr "Рядок видалено" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Вбити" @@ -4979,7 +4979,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "Статус InnoDB" @@ -5442,7 +5442,7 @@ msgstr "Доступні MIME-types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Хост" @@ -6133,13 +6133,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Змінна" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Значення" @@ -6380,12 +6380,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Змінні" @@ -6677,7 +6677,7 @@ msgstr "" msgid "+ Add a new value" msgstr "Додати нового користувача" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Час" @@ -6875,7 +6875,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Користувач" @@ -7331,17 +7331,17 @@ msgstr "Таблиці \"%s\" не існує!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Обрізати показані запити" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Показати повні запити" @@ -7873,7 +7873,7 @@ msgstr "Права успішно перезавантажено." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -8010,251 +8010,246 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 +#: server_status.php:27 +msgid "Refresh rate" +msgstr "" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Хвилина" +msgstr[1] "Хвилина" +msgstr[2] "Хвилина" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Секунда" +msgstr[1] "Секунда" +msgstr[2] "Секунда" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s припинено." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "Інформація про роботу сервера" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Вибір сервера" -#: server_status.php:387 +#: server_status.php:402 msgid "All status variables" msgstr "" -#: server_status.php:397 server_status.php:430 -msgid "Refresh rate" -msgstr "" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "Секунда" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "Секунда" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "Minute" -msgid "minutes" -msgstr "Хвилина" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Не змінювати пароль" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show tables" msgid "Show only alert values" msgstr "Показати таблиці" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Зв'язки" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "за годину" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "за хвилину" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "за секунду" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Тип запиту" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Цей MySQL сервер працює %s. Стартував %s." -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Трафік" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Отримано" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Відправлено" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "З'єднань" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Невдалих спроб" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Перервано" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8262,78 +8257,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8341,7 +8336,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8349,42 +8344,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8392,33 +8387,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8427,227 +8422,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8655,99 +8650,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8755,18 +8750,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8774,7 +8769,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -9891,6 +9886,11 @@ msgstr "" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "Секунда" + #~ msgid "Query results" #~ msgstr "Результати запиту" diff --git a/po/ur.po b/po/ur.po index b35833e7d3..0bfc1e3c89 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" @@ -86,7 +86,7 @@ msgstr "کلید نام" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "وضاحت" @@ -276,7 +276,7 @@ msgstr "کوائفیہ %s نام %s میں نقل کیا جاچکا ہے" msgid "Rename database to" msgstr "کوائفیہ نام بدلیں" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "حکم" @@ -630,7 +630,7 @@ msgstr "نقل جدول" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "چربہ کاری" @@ -741,7 +741,7 @@ msgstr "کھوج شدہ جداول" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -759,7 +759,7 @@ msgstr "بنایا" msgid "Updated" msgstr "تازہ کی گئی" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "حالت" @@ -1070,17 +1070,17 @@ msgstr "بند کریں" msgid "Edit" msgstr "تدوین" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "سرور انتخاب" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Hide query box" msgid "Live query chart" @@ -1093,13 +1093,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "میزان" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1131,7 +1131,7 @@ msgstr "سرور انتخاب" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "" @@ -1151,7 +1151,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL طلب" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "طلب شماریات" @@ -1966,7 +1966,7 @@ msgstr "حصہ دارانہ" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "جداول" @@ -2096,7 +2096,7 @@ msgid "Documentation" msgstr "دستاویزات" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL طلب" @@ -2125,7 +2125,7 @@ msgid "Create PHP Code" msgstr "PHP کوڈ بنائیں" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "تازہ کریں" @@ -4789,7 +4789,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "" @@ -5016,7 +5016,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "" @@ -5106,7 +5106,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "" @@ -5553,7 +5553,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "" @@ -6239,13 +6239,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6478,12 +6478,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "" @@ -6742,7 +6742,7 @@ msgstr "" msgid "+ Add a new value" msgstr "" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "وقت" @@ -6903,7 +6903,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "" @@ -7339,17 +7339,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "" @@ -7854,7 +7854,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "" @@ -7991,251 +7991,244 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_status.php:248 -msgid "Handler" -msgstr "" - -#: server_status.php:249 -msgid "Query cache" -msgstr "" - -#: server_status.php:250 -msgid "Threads" -msgstr "" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:254 -msgid "Key cache" -msgstr "" - -#: server_status.php:255 -msgid "Joins" -msgstr "" - -#: server_status.php:257 -msgid "Sorting" -msgstr "" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "سرور انتخاب" - -#: server_status.php:387 -msgid "All status variables" -msgstr "" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "تازہ کریں" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "سیکنڈ" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "سیکنڈ" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "Minute" -msgid "minutes" -msgstr "منٹ" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "منٹ" +msgstr[1] "منٹ" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "سیکنڈ" +msgstr[1] "سیکنڈ" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:263 +msgid "Handler" +msgstr "" + +#: server_status.php:264 +msgid "Query cache" +msgstr "" + +#: server_status.php:265 +msgid "Threads" +msgstr "" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:269 +msgid "Key cache" +msgstr "" + +#: server_status.php:270 +msgid "Joins" +msgstr "" + +#: server_status.php:272 +msgid "Sorting" +msgstr "" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "سرور انتخاب" + +#: server_status.php:402 +msgid "All status variables" +msgstr "" + +#: server_status.php:455 msgid "Containing the word:" msgstr "" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show logo in left frame" msgid "Show only alert values" msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Replication" msgid "Related links:" msgstr "لپیٹنا" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "" -#: server_status.php:854 +#: server_status.php:849 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8243,78 +8236,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8322,7 +8315,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8330,42 +8323,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8373,33 +8366,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8408,227 +8401,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8636,99 +8629,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8736,18 +8729,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8755,7 +8748,7 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "" @@ -9853,6 +9846,11 @@ msgstr "" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "سیکنڈ" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "طلب چلت وقت موازنہ (مائیکروسیکنڈ میں)" diff --git a/po/uz.po b/po/uz.po index 4c693d3f91..fb4cd43100 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" @@ -83,7 +83,7 @@ msgstr "Индекс номи" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Тавсифи" @@ -272,7 +272,7 @@ msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха msgid "Rename database to" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Буйруқ" @@ -647,7 +647,7 @@ msgstr "Намойиш" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" @@ -760,7 +760,7 @@ msgstr "Кузатилган жадваллар" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -778,7 +778,7 @@ msgstr "Тузилди" msgid "Updated" msgstr "Янгиланди" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Ҳолат" @@ -1105,17 +1105,17 @@ msgstr "Ёпиш" msgid "Edit" msgstr "Таҳрирлаш" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Серверни танланг" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -1128,13 +1128,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Жами" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1166,7 +1166,7 @@ msgstr "Серверни танланг" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Жараёнлар" @@ -1186,7 +1186,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL сўровлари" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -2104,7 +2104,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Жадваллар" @@ -2246,7 +2246,7 @@ msgid "Documentation" msgstr "Документация" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL сўрови" @@ -2277,7 +2277,7 @@ msgid "Create PHP Code" msgstr "PHP-код" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Янгилаш" @@ -5217,7 +5217,7 @@ msgstr "Сиқиш" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Йўқ" @@ -5489,7 +5489,7 @@ msgid "The row has been deleted" msgstr "Ёзув ўчирилди" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Тугатиш" @@ -5583,7 +5583,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Буфер пули" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB аҳволи" @@ -6105,7 +6105,7 @@ msgstr "Мавжуд MIME турлари" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Хост" @@ -6828,13 +6828,13 @@ msgid "Slave status" msgstr "Тобе сервер статуси" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "Ўзгарувчи" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Қиймати" @@ -7081,12 +7081,12 @@ msgid "Synchronize" msgstr "Синхронизация қилиш" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Иккилик журнал" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "Ўзгарувчилар" @@ -7383,7 +7383,7 @@ msgstr "Бўлакларни (PARTITIONS) белгилаш" msgid "+ Add a new value" msgstr "Янги фойдаланувчи қўшиш" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Вақт" @@ -7631,7 +7631,7 @@ msgid "Protocol version" msgstr "Протокол версияси" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Фойдаланувчи" @@ -8139,17 +8139,17 @@ msgstr "\"%s\" жадвали мавжуд эмас!" msgid "Select binary log to view" msgstr "Кўриш учун бинар журнални танланг" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Файллар сони " -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "Сўровларни қисқартириб кўрсатиш" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "Сўровларнинг кенгайтирилган кўриниши" @@ -8696,7 +8696,7 @@ msgstr "Бош репликация сервери қуйидагига ўзга msgid "This server is configured as master in a replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Уланган бош серверларни кўрсатиш" @@ -8857,173 +8857,164 @@ msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация " "қилинмаган. Сиз уни конфигурация қилмоқчимисиз?" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr " \"%s\" жараёни муваффақиятли якунланди." - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ." - -#: server_status.php:248 -msgid "Handler" -msgstr "Қайта ишловчи дастур" - -#: server_status.php:249 -msgid "Query cache" -msgstr "Сўровлар кеши" - -#: server_status.php:250 -msgid "Threads" -msgstr "Оқимлар" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "Вақтинчалик маълумотлар" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "Кечиктирилган қўйилмалар" - -#: server_status.php:254 -msgid "Key cache" -msgstr "Индекс кеши" - -#: server_status.php:255 -msgid "Joins" -msgstr "Бирлашишлар" - -#: server_status.php:257 -msgid "Sorting" -msgstr "Сортировка" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "Транзакциялар координатори" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "Барча жадвалларни ёпиш" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "Очиқ жадваллар рўйхати" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "Тобе серверлар ҳақида маълумот" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "Репликация сервери аҳволи ҳақида маълумот" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "Сўровлар кешини дефрагментация қилиш" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "MySQL-сервернинг ҳозирги ҳолати" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "Серверни танланг" - -#: server_status.php:387 -#, fuzzy -#| msgid "See slave status table" -msgid "All status variables" -msgstr "Тобе сервер статуси жадвалини кўриш" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Янгилаш" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "секундига" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "секундига" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "in use" -msgid "minutes" -msgstr "ишлатилмоқда" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "ишлатилмоқда" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "секундига" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr " \"%s\" жараёни муваффақиятли якунланди." + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ." + +#: server_status.php:263 +msgid "Handler" +msgstr "Қайта ишловчи дастур" + +#: server_status.php:264 +msgid "Query cache" +msgstr "Сўровлар кеши" + +#: server_status.php:265 +msgid "Threads" +msgstr "Оқимлар" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "Вақтинчалик маълумотлар" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "Кечиктирилган қўйилмалар" + +#: server_status.php:269 +msgid "Key cache" +msgstr "Индекс кеши" + +#: server_status.php:270 +msgid "Joins" +msgstr "Бирлашишлар" + +#: server_status.php:272 +msgid "Sorting" +msgstr "Сортировка" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "Транзакциялар координатори" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "Барча жадвалларни ёпиш" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "Очиқ жадваллар рўйхати" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "Тобе серверлар ҳақида маълумот" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "Репликация сервери аҳволи ҳақида маълумот" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "Сўровлар кешини дефрагментация қилиш" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "MySQL-сервернинг ҳозирги ҳолати" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Серверни танланг" + +#: server_status.php:402 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Тобе сервер статуси жадвалини кўриш" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Паролни ўзгартирмаслик" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Очиқ жадваллар рўйхати" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Алоқалар" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "соатига" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "минутига" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "секундига" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "Сўров тури" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL-сервер \"%s\" давомида ишламоқда. Ишга туширилган вақт: \"%s\"." -#: server_status.php:641 +#: server_status.php:636 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -9031,19 +9022,19 @@ msgid "" "b> process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:643 +#: server_status.php:638 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:645 +#: server_status.php:640 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:647 +#: server_status.php:642 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -9057,15 +9048,15 @@ msgstr "" "сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот " "учун, <a href=\"#replication\">репликация бўлими</a>га киринг." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Репликация статуси" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Трафик" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9073,41 +9064,41 @@ msgstr "" "Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг " "учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Қабул қилинди" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Юборилди" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Уланишлар" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "Максимал уланишлар сони " -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Муваффақиятсиз уринишлар сони: " -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Узилди" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-серверга уланиб бўлмади" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -9116,16 +9107,16 @@ msgstr "" "Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз " "ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Бинар журнал кешини ишлатган транзакциялар сони." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9138,11 +9129,11 @@ msgstr "" "сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини " "ошириш тавсия этилади." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9150,7 +9141,7 @@ msgstr "" "Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик " "тузилган вақтинчалик жадваллар сони." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9158,31 +9149,31 @@ msgstr "" "\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар " "(масалан, калитлар такрорланиши оқибатида) сони." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Бажариладиган \"INSERT DELAYED\" сўровлар сони." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" "Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган " "қаторлар сони." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Бажарилган \"FLUSH\" буйруқлар сони." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Ички \"COMMIT\" буйруқлари сони." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -9192,7 +9183,7 @@ msgstr "" "бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган " "жадваллар сони." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -9201,7 +9192,7 @@ msgstr "" "Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати " "катта бўлса, сервер бир неча маротиба индексни кўриб чиқади." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -9210,7 +9201,7 @@ msgstr "" "Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан " "далолат беради." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -9220,7 +9211,7 @@ msgstr "" "Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш " "вақтида ўзгарувчи қиймати ошади." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9229,7 +9220,7 @@ msgstr "" "бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... " "DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9242,7 +9233,7 @@ msgstr "" "чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри " "фойдаланадиган бирлашмаларнинг мавжудлиги." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9254,35 +9245,35 @@ msgstr "" "индексланганлигини ёки сўровлар индексларнинг афзалликларидан " "фойдаланмаётганлигини билдиради." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ички буйруқлар сони." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "\"Кир\" саҳифаларнинг жорий сони." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Бўш саҳифалар сони." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -9292,7 +9283,7 @@ msgstr "" "устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра " "тозалаш ёки ўчириш имконияти йўқ." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9304,11 +9295,11 @@ msgstr "" "\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -9317,7 +9308,7 @@ msgstr "" "сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй " "беради." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9326,12 +9317,12 @@ msgstr "" "сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй " "беради" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9339,7 +9330,7 @@ msgstr "" "InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга " "бўлган кетма-кет сўровлар сони." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9352,51 +9343,51 @@ msgstr "" "Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми " "тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Тугалланмаган \"fsync()\" операциялари сони." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Тугалланмаган ўқиш операциялари сони." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Тугалланмаган ёзиш операциялари сони." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Умумий маълумотларни ўқиш операциялари сони." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Умумий маълумотларни ёзиш операциялари сони." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "Бажарилган \"doublewrite\" операциялари сони." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9404,35 +9395,35 @@ msgstr "" "Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган " "ёзувлар сони" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Журналга ёзишга бўлган сўровларсони." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Журнал файлидаги жисмоний ёзувлар сони." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Тугалланмаган журналга ёзиш сўровлари сони." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Тузилган саҳифалар сони." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9441,51 +9432,51 @@ msgstr "" "Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, " "уларни байтларга ўтказиш мумкин." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "Ўқилган саҳифалар сони." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Ёзилган саҳифалар сони." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Ҳозирда кутилаётган қатор блокировкалари сони." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Умумий кутилаётган қатор блокировкалари сони." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB жадвалидан ўчирилган қаторлар сони." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB жадвалига ёзилган қаторлар сони." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB жадвалларидан ўқилган қаторлар сони." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB жадвалларида янгиланган қаторлар сони." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9493,7 +9484,7 @@ msgstr "" "Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. " "Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9501,7 +9492,7 @@ msgstr "" "Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши " "ишлатилиш даражасини белгилайди." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9510,11 +9501,11 @@ msgstr "" "Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида " "ишлатилиши мумкин бўлган блоклар сонини билдиради." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9525,15 +9516,15 @@ msgstr "" "қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти " "қуйидагича ҳисобланди: Key_reads/Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9544,19 +9535,19 @@ msgstr "" "эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров " "компиляция жараёни бажарилмаганлигини билдиради." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" " "сўровларида қўйилишини кутаётган қаторлар сони." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9564,42 +9555,42 @@ msgstr "" "Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта " "бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Очиқ файллар сони." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" "()\" функцияси ёрдамида очилган файлга айтилади." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Очиқ жадваллар сони." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "Сўровлар кеши учун бўш хотира ҳажми" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" "Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан " "қониқтирилган сўровлар сони." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "Сўровлар кешига қўшилган сўровлар сони." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9611,7 +9602,7 @@ msgstr "" "кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги " "ишлатилган) стратегиясидан фойдаланади" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9619,19 +9610,19 @@ msgstr "" "Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида " "сўндирилган сўровлар сони." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Кешда регистрация қилинган сўровлар сони." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9639,13 +9630,13 @@ msgstr "" "Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати " "0 бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда " "бажарилган бирлашма сўровлар сони." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9654,7 +9645,7 @@ msgstr "" "ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 " "бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9663,17 +9654,17 @@ msgstr "" "сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса " "ҳам, унчалик муҳим эмас." -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" "Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " "бирлашма сўровлар сони." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9681,13 +9672,13 @@ msgstr "" "Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта " "транзакцияларнинг умумий сони." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган " "бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9695,12 +9686,12 @@ msgstr "" "Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар " "сони." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9710,25 +9701,25 @@ msgstr "" "қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш " "зарур." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Сортировка қилинган қаторлар сони" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" "Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари " "сони." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9740,7 +9731,7 @@ msgstr "" "пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал" "(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9751,11 +9742,11 @@ msgstr "" "ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" " "ўзгарувчисининг қийматини ошириш зарур." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Очиқ жорий уланишлар сони." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9767,7 +9758,7 @@ msgstr "" "ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам " "оширмайди)." -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Фаол ҳолатда бўлган жараёнлар сони." @@ -11025,6 +11016,11 @@ msgstr "Ном кўриниши" msgid "Rename view to" msgstr "Кўриниш номини ўзгартириш" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "секундига" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/uz@latin.po b/po/uz@latin.po index 1cde5c14b5..ec2566bb9b 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" @@ -84,7 +84,7 @@ msgstr "Indeks nomi" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "Tavsifi" @@ -273,7 +273,7 @@ msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi." msgid "Rename database to" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "Buyruq" @@ -649,7 +649,7 @@ msgstr "Namoyish" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" @@ -762,7 +762,7 @@ msgstr "Kuzatilgan jadvallar" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -780,7 +780,7 @@ msgstr "Tuzildi" msgid "Updated" msgstr "Yangilandi" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Holat" @@ -1110,17 +1110,17 @@ msgstr "Yopish" msgid "Edit" msgstr "Tahrirlash" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Serverni tanlang" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -1133,13 +1133,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "Jami" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1171,7 +1171,7 @@ msgstr "Serverni tanlang" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "Jarayonlar" @@ -1191,7 +1191,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL so‘rovlari" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -2110,7 +2110,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "Jadvallar" @@ -2254,7 +2254,7 @@ msgid "Documentation" msgstr "Dokumentatsiya" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL so‘rovi" @@ -2285,7 +2285,7 @@ msgid "Create PHP Code" msgstr "PHP-kod" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "Yangilash" @@ -5238,7 +5238,7 @@ msgstr "Siqish" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "Yo‘q" @@ -5512,7 +5512,7 @@ msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "Tugatish" @@ -5607,7 +5607,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Bufer puli" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB ahvoli" @@ -6131,7 +6131,7 @@ msgstr "Mavjud MIME turlari" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "Xost" @@ -6858,13 +6858,13 @@ msgid "Slave status" msgstr "Tobе rеplikatsiya sеrvеri statusi" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "O‘zgaruvchi" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "Qiymati" @@ -7111,12 +7111,12 @@ msgid "Synchronize" msgstr "Sinxronizatsiya qilish" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "Ikkilik jurnal" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "O‘zgaruvchilar" @@ -7415,7 +7415,7 @@ msgstr "Bo‘laklarni (PARTITIONS) belgilash" msgid "+ Add a new value" msgstr "Yangi foydalanuvchi qo‘shish" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "Vaqt" @@ -7666,7 +7666,7 @@ msgid "Protocol version" msgstr "Protokol versiyasi" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "Foydalanuvchi" @@ -8177,17 +8177,17 @@ msgstr "\"%s\" jadvali mavjud emas!" msgid "Select binary log to view" msgstr "Ko‘rish uchun binar jurnalni tanlang" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "Fayllar soni " -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "So‘rovlarni qisqartirib ko‘rsatish" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "So‘rovlarning kengaytirilgan ko‘rinishi" @@ -8742,7 +8742,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish" @@ -8904,175 +8904,166 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: server_status.php:119 +#: server_status.php:27 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Yangilash" + +#: server_status.php:31 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "ishlatilmoqda" + +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "sekundiga" + +#: server_status.php:134 #, php-format msgid "Thread %s was successfully killed." msgstr " \"%s\" jarayoni muvaffaqiyatli yakunlandi." -#: server_status.php:121 +#: server_status.php:136 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin \"%s\" oqim ishini tuguta olmadi. Ehtimol, u allaqachon yopiq." -#: server_status.php:248 +#: server_status.php:263 msgid "Handler" msgstr "Qayta ishlovchi dastur" -#: server_status.php:249 +#: server_status.php:264 msgid "Query cache" msgstr "So‘rovlar keshi" -#: server_status.php:250 +#: server_status.php:265 msgid "Threads" msgstr "Oqimlar" -#: server_status.php:252 +#: server_status.php:267 msgid "Temporary data" msgstr "Vaqtinchalik ma`lumotlar" -#: server_status.php:253 +#: server_status.php:268 msgid "Delayed inserts" msgstr "Kechiktirilgan qo‘yilmalar" -#: server_status.php:254 +#: server_status.php:269 msgid "Key cache" msgstr "Indeks keshi" -#: server_status.php:255 +#: server_status.php:270 msgid "Joins" msgstr "Birlashishlar" -#: server_status.php:257 +#: server_status.php:272 msgid "Sorting" msgstr "Sortirovka" -#: server_status.php:259 +#: server_status.php:274 msgid "Transaction coordinator" msgstr "Tranzaksiyalar koordinatori" -#: server_status.php:270 +#: server_status.php:285 msgid "Flush (close) all tables" msgstr "Barcha jadvallarni yopish" -#: server_status.php:272 +#: server_status.php:287 msgid "Show open tables" msgstr "Ochiq jadvallar ro‘yxati" -#: server_status.php:277 +#: server_status.php:292 msgid "Show slave hosts" msgstr "Tobe serverlar haqida ma`lumot" -#: server_status.php:283 +#: server_status.php:298 msgid "Show slave status" msgstr "Replikatsiya serveri ahvoli haqida ma`lumot" -#: server_status.php:288 +#: server_status.php:303 msgid "Flush query cache" msgstr "So‘rovlar keshini defragmentatsiya qilish" -#: server_status.php:380 +#: server_status.php:395 msgid "Runtime Information" msgstr "MySQL-serverning hozirgi holati" -#: server_status.php:385 +#: server_status.php:400 #, fuzzy #| msgid "Server Choice" msgid "Server traffic" msgstr "Serverni tanlang" -#: server_status.php:387 +#: server_status.php:402 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" -#: server_status.php:397 server_status.php:430 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Yangilash" - -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "per second" -msgid "second" -msgstr "sekundiga" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "per second" -msgid "seconds" -msgstr "sekundiga" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy -#| msgid "in use" -msgid "minutes" -msgstr "ishlatilmoqda" - -#: server_status.php:460 +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Parolni o‘zgartirmaslik" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Ochiq jadvallar ro‘yxati" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Aloqalar" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "soatiga" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "minutiga" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "sekundiga" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "So‘rov turi" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" "MySQL-server \"%s\" davomida ishlamoqda. Ishga tushirilgan vaqt: \"%s\"." -#: server_status.php:641 +#: server_status.php:636 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -9081,21 +9072,21 @@ msgid "" msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:643 +#: server_status.php:638 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:645 +#: server_status.php:640 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:647 +#: server_status.php:642 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -9110,15 +9101,15 @@ msgstr "" "uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga " "kiring." -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "Replikatsiya statusi" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "Trafik" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9127,41 +9118,41 @@ msgstr "" "shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi " "mumkin." -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "Qabul qilindi" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "Yuborildi" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "Ulanishlar" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "Maksimal ulanishlar soni " -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "Muvaffaqiyatsiz urinishlar soni: " -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "Uzildi" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-serverga ulanib bo‘lmadi" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -9170,16 +9161,16 @@ msgstr "" "Binar jurnali keshini ishlatib, \"binlog_cache_size\" qiymatidan oshib, o‘z " "ichiga olgan SQL-jumlalari vaqtinchalik faylga saqlangan tranzaksiyalar soni." -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni." -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9192,11 +9183,11 @@ msgstr "" "saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini " "oshirish tavsiya etiladi." -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni." -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9204,7 +9195,7 @@ msgstr "" "Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik " "tuzilgan vaqtinchalik jadvallar soni." -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9212,31 +9203,31 @@ msgstr "" "\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar " "(masalan, kalitlar takrorlanishi oqibatida) soni." -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Bajariladigan \"INSERT DELAYED\" so‘rovlar soni." -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan " "qatorlar soni." -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "Bajarilgan \"FLUSH\" buyruqlar soni." -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "Ichki \"COMMIT\" buyruqlari soni." -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni." -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -9246,7 +9237,7 @@ msgstr "" "berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan " "jadvallar soni." -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -9255,7 +9246,7 @@ msgstr "" "Indeksdan birinchi yozuvni o‘qishga bo‘lgan so‘rovlar soni. O‘zgaruvchining " "qiymati katta bo‘lsa, server bir necha marotiba indeksni ko‘rib chiqadi." -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -9264,7 +9255,7 @@ msgstr "" "soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri " "indekslanganidan dalolat beradi." -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -9274,7 +9265,7 @@ msgstr "" "soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib " "chiqish vaqtida o‘zgaruvchi qiymati oshadi." -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9283,7 +9274,7 @@ msgstr "" "o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun " "qo‘llaniladi: ORDER BY ... DESC." -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9297,7 +9288,7 @@ msgstr "" "bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning " "mavjudligi." -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9309,35 +9300,35 @@ msgstr "" "jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning " "afzalliklaridan foydalanmayotganligini bildiradi." -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ichki buyruqlar soni." -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni." -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "Jadvalga yozuv qo‘yishga bo‘lgan so‘rovlar soni." -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")." -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "\"Kir\" sahifalarning joriy soni." -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Bufer pulidagi tozalash jarayoni (FLUSH) qo‘llanilgan sahifalar soni." -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "Bo‘sh sahifalar soni." -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -9347,7 +9338,7 @@ msgstr "" "ustidan o‘qish yoki yozish jarayoni bajarilmoqda, yoki ularni boshqa " "sabablarga ko‘ra tozalash yoki o‘chirish imkoniyati yo‘q." -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9359,11 +9350,11 @@ msgstr "" "mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "Bufer pulining umumiy hajmi (sahifalarda)." -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -9372,7 +9363,7 @@ msgstr "" "o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib " "chiqayotganda ro‘y beradi." -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9381,12 +9372,12 @@ msgstr "" "soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda " "ro‘y beradi" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB tomonidan amalga oshirilgan o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9394,7 +9385,7 @@ msgstr "" "InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan " "o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9408,51 +9399,51 @@ msgstr "" "bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta " "bo‘lmasligi kerak." -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni." -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni." -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "Tugallanmagan o‘qish operatsiyalari soni." -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "Tugallanmagan yozish operatsiyalari soni." -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni." -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni." -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni." -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni." -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -9460,35 +9451,35 @@ msgstr "" "Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi " "kutayotgan yozuvlar soni" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni." -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "Jurnal faylidagi jismoniy yozuvlar soni." -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni." -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni." -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)." -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "Tuzilgan sahifalar soni." -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -9497,51 +9488,51 @@ msgstr "" "Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, " "ularni baytlarga o‘tkazish mumkin." -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "O‘qilgan sahifalar soni." -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "Yozilgan sahifalar soni." -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "Hozirda kutilayotgan qator blokirovkalari soni." -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)." -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)." -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)." -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "Umumiy kutilayotgan qator blokirovkalari soni." -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni." -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB jadvaliga yozilgan qatorlar soni." -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni." -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB jadvallarida yangilangan qatorlar soni." -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -9549,7 +9540,7 @@ msgstr "" "Indeks keshidagi o‘zgartirilgan, lekin hali diskka yozilmagan bloklar soni. " "Ushbu parametr, shuningdek, \"Not_flushed_key_blocks\" nomi bilan ham ma`lum." -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -9557,7 +9548,7 @@ msgstr "" "Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi " "ishlatilish darajasini belgilaydi." -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -9566,11 +9557,11 @@ msgstr "" "Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning " "o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi." -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "Indeks keshidagi bloklarni o‘qishga bo‘lgan so‘rovlar soni." -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9582,15 +9573,15 @@ msgstr "" "murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/" "Key_read_requests." -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "Blokni indeks keshiga yozishga bo‘lgan so‘rovlar soni." -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni." -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9601,19 +9592,19 @@ msgstr "" "effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov " "kompilyatsiya jarayoni bajarilmaganligini bildiradi." -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kolichestvo strok, ojidayushix vstavki v zaprosax \"INSERT DELAYED\" " "so‘rovlarida qo‘yilishini kutayotgan qatorlar soni." -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9621,42 +9612,42 @@ msgstr "" "Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta " "bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi." -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "Ochiq fayllar soni." -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ochiq oqimlar soni (jurnal fayllarida ko‘llaniladi). Oqim deb \"fopen" "()\" funksiyasi yordamida ochilgan faylga aytiladi." -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "Ochiq jadvallar soni." -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "" "So‘rovlar keshiga \"tushishlar\" soni, ya`ni keshda turgan so‘rovlar " "tomonidan qoniqtirilgan so‘rovlar soni." -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni." -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9668,7 +9659,7 @@ msgstr "" "beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least " "Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9676,19 +9667,19 @@ msgstr "" "Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida " "so‘ndirilgan so‘rovlar soni." -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "Keshda registratsiya qilingan so‘rovlar soni." -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni." -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)." -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9696,13 +9687,13 @@ msgstr "" "Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi " "qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi." -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "" "Bog‘lanish mavjud bo‘lgan jadvalda diapazon bo‘yicha qidiruv ishlatgan holda " "bajarilgan birlashma so‘rovlar soni." -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9712,7 +9703,7 @@ msgstr "" "o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya " "etiladi." -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9721,17 +9712,17 @@ msgstr "" "birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda " "katta bo‘lsa ham, unchalik muhim emas." -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "" "Birinchi jadvalga nisbatan to‘laligicha qidiruv ishlatgan holda bajarilgan " "birlashma so‘rovlar soni." -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Tobe oqim tomonidan joriy vaqtda ochilgan vaqtinchalik jadvallar soni." -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9739,13 +9730,13 @@ msgstr "" "Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan " "qayta tranzaksiyalarning umumiy soni." -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Agar ushbu server bosh serverga ulangan holda tobe server sifatida " "ishlayotgan bo‘lsa, ushbu o‘zgaruvchiga \"ON\" qiymati belgilanadi." -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9753,12 +9744,12 @@ msgstr "" "Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan " "oqimlar soni." -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time sekunddan ko‘proq vaqt bajarilgan so‘rovlar soni." -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9768,26 +9759,26 @@ msgstr "" "o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining " "qiymatini oshirish zarur." -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni." -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "Sortirovka qilingan qatorlar soni" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "" "Jadvalni to‘laligicha ko‘rib chiqish yordamida bajarilgan sortirovka " "operatsiyalari soni." -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Darhol qoniqtirilgan jadvalni blokirovka qilishga bo‘lgan so‘rovlar soni." -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9800,7 +9791,7 @@ msgstr "" "so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish " "kerak." -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9811,11 +9802,11 @@ msgstr "" "Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda " "\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur." -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "Ochiq joriy ulanishlar soni." -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9827,7 +9818,7 @@ msgstr "" "o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik " "ham oshirmaydi)." -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "Faol holatda bo‘lgan jarayonlar soni." @@ -11091,6 +11082,11 @@ msgstr "Nom ko‘rinishi" msgid "Rename view to" msgstr "Ko‘rinish nomini o‘zgartirish" +#, fuzzy +#~| msgid "per second" +#~ msgid "seconds" +#~ msgstr "sekundiga" + #, fuzzy #~| msgid "Query results operations" #~ msgid "Query results" diff --git a/po/zh_CN.po b/po/zh_CN.po index 4ebc2abbda..e32a277eb0 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-08 05:00+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" @@ -83,7 +83,7 @@ msgstr "键名" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "说明" @@ -268,7 +268,7 @@ msgstr "已将数据库 %s 复制为 %s" msgid "Rename database to" msgstr "将数据库改名为" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "命令" @@ -615,7 +615,7 @@ msgstr "视图" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "复制" @@ -722,7 +722,7 @@ msgstr "已追踪的表" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -740,7 +740,7 @@ msgstr "创建" msgid "Updated" msgstr "更新" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "状态" @@ -1036,17 +1036,17 @@ msgstr "关闭" msgid "Edit" msgstr "编辑" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "选择服务器" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -1059,13 +1059,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "总计" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1097,7 +1097,7 @@ msgstr "选择服务器" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "进程" @@ -1117,7 +1117,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL 查询" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "查询统计" @@ -1916,7 +1916,7 @@ msgstr "已共享" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "数据表" @@ -2044,7 +2044,7 @@ msgid "Documentation" msgstr "文档" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL 查询" @@ -2073,7 +2073,7 @@ msgid "Create PHP Code" msgstr "创建 PHP 代码" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "刷新" @@ -4715,7 +4715,7 @@ msgstr "压缩:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "无" @@ -4944,7 +4944,7 @@ msgid "The row has been deleted" msgstr "已删除该行" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "杀死" @@ -5030,7 +5030,7 @@ msgstr "InnoDB 用于缓存数据和索引要使用的内存缓冲大小。" msgid "Buffer Pool" msgstr "缓冲池" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB 状态" @@ -5499,7 +5499,7 @@ msgstr "显示 MIME 类型" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "主机" @@ -6196,13 +6196,13 @@ msgid "Slave status" msgstr "从服务器状态" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "变量" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "值" @@ -6425,12 +6425,12 @@ msgid "Synchronize" msgstr "同步" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "二进制日志" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "变量" @@ -6698,7 +6698,7 @@ msgstr "分区定义" msgid "+ Add a new value" msgstr "+ 添加" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "时间" @@ -6874,7 +6874,7 @@ msgid "Protocol version" msgstr "协议版本" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "用户" @@ -7308,17 +7308,17 @@ msgstr "文件不存在" msgid "Select binary log to view" msgstr "选择要查看的二进制日志" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "文件" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "截断显示的查询" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "显示完整查询" @@ -7829,7 +7829,7 @@ msgstr "已成功修改主服务器到 %s" msgid "This server is configured as master in a replication process." msgstr "此服务器已被配置为一个复制进程中的主服务器。" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "查看主服务器状态" @@ -7970,187 +7970,178 @@ msgstr "" "此服务器尚未配置为一个复制进程中的从服务器。你想现在配置" "吗?" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "已杀死线程 %s 。" - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" - -#: server_status.php:248 -msgid "Handler" -msgstr "句柄" - -#: server_status.php:249 -msgid "Query cache" -msgstr "查询缓存" - -#: server_status.php:250 -msgid "Threads" -msgstr "线程" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "临时数据" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "延迟插入" - -#: server_status.php:254 -msgid "Key cache" -msgstr "键缓存" - -#: server_status.php:255 -msgid "Joins" -msgstr "多表查询" - -#: server_status.php:257 -msgid "Sorting" -msgstr "排序" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "事务协调" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "强制更新 (关闭) 所有表" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "显示打开的表" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "显示从服务器" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "显示从服务器状态" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "强制更新查询缓存" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "运行信息" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "选择服务器" - -#: server_status.php:387 -#, fuzzy -#| msgid "See slave status table" -msgid "All status variables" -msgstr "查看从服务器状态" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "刷新" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "秒" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "秒" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "Minute" -msgid "minutes" -msgstr "分" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "分" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "秒" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "已杀死线程 %s 。" + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" + +#: server_status.php:263 +msgid "Handler" +msgstr "句柄" + +#: server_status.php:264 +msgid "Query cache" +msgstr "查询缓存" + +#: server_status.php:265 +msgid "Threads" +msgstr "线程" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "临时数据" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "延迟插入" + +#: server_status.php:269 +msgid "Key cache" +msgstr "键缓存" + +#: server_status.php:270 +msgid "Joins" +msgstr "多表查询" + +#: server_status.php:272 +msgid "Sorting" +msgstr "排序" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "事务协调" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "强制更新 (关闭) 所有表" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "显示打开的表" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "显示从服务器" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "显示从服务器状态" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "强制更新查询缓存" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "运行信息" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "选择服务器" + +#: server_status.php:402 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "查看从服务器状态" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "保持原密码" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "显示打开的表" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "相关链接" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "每小时" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "每分钟" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "每秒" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "查询方式" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "此 MySQL 服务器已经运行了 %s,启动时间为 %s。" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8158,15 +8149,15 @@ msgstr "" "要获得更多关于此服务器的复制状态,请查看复制状态信息。" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "复制状态" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "流量" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8174,41 +8165,41 @@ msgstr "" "在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正" "确" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "已接收" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "已发送" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "连接" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "最大并发连接数" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "已失败" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "已取消" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." msgstr "设置连接到 MySQL 服务器时是否使用 SSL 安全连接。" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8217,16 +8208,16 @@ msgstr "" "因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储" "的数量。" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "事务所用的临时二进制日志缓存的数量。" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8236,17 +8227,17 @@ msgstr "" "服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables " "很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "mysqld 已创建的临时文件的数量。" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "服务器执行语句时自动在内存中创建的临时表的数量。" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8254,29 +8245,29 @@ msgstr "" "发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复" "值) 。" -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延迟插入处理线程的数量。每张使用延迟插入的表都有自己的线程。" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "延迟插入已写入的行数。" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "已执行的强制更新 (FLUSH) 语句数。" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "已执行的内部提交 (COMMIT) 语句数。" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "从表中删除行的次数。" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8285,7 +8276,7 @@ msgstr "" "如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。" "Handler_discovery 表明了一张表被发现的次数。" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8294,14 +8285,14 @@ msgstr "" "读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫" "描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。" -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" "根据索引读取行的请求数。如果该值很大,说明你的查询和表都建立了很好的索引。" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8310,7 +8301,7 @@ msgstr "" "根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或" "进行完整表扫描,该值将会不断增长。" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8318,7 +8309,7 @@ msgstr "" "根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... " "DESC 的查询。" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8328,7 +8319,7 @@ msgstr "" "根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能" "有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8338,35 +8329,35 @@ msgstr "" "从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味" "着你的表没有做好索引,或者你的查询语句没有使用好索引字段。" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "内部回滚 (ROLLBACK) 语句数。" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "表中更新行的请求数。" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "表中插入行的请求数。" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "非空页数 (含脏页) 。" -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "当前脏页数。" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "请求更新的缓冲池页数。" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "空闲页数。" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8375,7 +8366,7 @@ msgstr "" "InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能" "被刷新或删除的。" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8386,11 +8377,11 @@ msgstr "" "公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data 。" -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "缓冲池总大小 (单位:页)。" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8398,24 +8389,24 @@ msgstr "" "InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发" "生。" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" "InnoDB 初始化的顺序预读数。这会在 InnoDB 执行一个顺序完整表扫描时发生。" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的逻辑读请求数。" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 进行逻辑读取时无法从缓冲池中获取而执行单页读取的次数。" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8427,85 +8418,85 @@ msgstr "" "必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这" "个值应该会很小。" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "写入 InnoDB 缓冲池的次数。" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "fsync() 总操作的次数。" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "当前挂起 fsync() 操作的数量。" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "当前挂起的读操作数。" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "当前挂起的写操作数。" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "读取的总数据量 (单位:字节)。" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "数据读取总数。" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "数据写入总数。" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "写入的总数据量 (单位:字节)。" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "以双写入操作写入的页数。" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "已经执行的双写入次数。" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因日志缓存太小而必须等待其被写入所造成的等待数。" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "日志写入请求数。" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "日志物理写入次数。" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 写入日志文件的次数。" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "当前挂起的 fsync 日志文件数。" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "当前挂起的日志写入数。" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "写入日志文件的字节数。" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "创建的页数。" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8513,75 +8504,75 @@ msgstr "" "编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方" "便地将这些值转化为字节数。" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "读取的页数。" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "写入的页数。" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "正在等待行锁的数量。" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的平均时间 (单位:毫秒)。" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待获得行锁的总时间 (单位:毫秒)。" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的最大时间 (单位:毫秒)。" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "等待行锁的次数。" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "从 InnoDB 表中删除的行数。" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 表中的行数。" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "从 InnoDB 表中读取的行数。" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行数。" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "键缓存中还没有被写入到磁盘的键块数。该值过去名为 Not_flushed_key_blocks 。" -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "键缓存中未使用的块数。你可以根据这个值判断当前使用了多少键缓存。" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "键缓存中已经使用的块数。该值指示在某个时刻使用了最多块数的数量。" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "从缓存中读取键块的请求次数。" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8590,15 +8581,15 @@ msgstr "" "从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size " "可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "将一个键块写入缓存的请求数。" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "将键块物理写入到磁盘的次数。" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8607,54 +8598,54 @@ msgstr "" "最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行" "相同的查询时的效率差异。默认值0表示还没有查询被编译。" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待写入延迟插入队列的行数。" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已经打开的表个数。如果该值很大,则说明表缓冲大小可能设置过小。" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "打开的文件个数。" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "打开的流个数 (主要用于日志记录)。" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "打开的数据表个数。" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "查询缓存中空闲的内存总数。" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "缓存命中数。" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "加入到缓存的查询数。" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8664,7 +8655,7 @@ msgstr "" "为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除" "哪个已缓存的查询。该信息可帮助您调整查询缓存大小。" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8672,19 +8663,19 @@ msgstr "" "未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的" "查询)。" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "在缓存中注册的查询数。" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "查询缓存中的总块数。" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "失败保护器的状态 (尚未应用)。" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8692,11 +8683,11 @@ msgstr "" "没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当" "的索引。" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "使用在关联表上使用范围搜索的多表查询的数量。" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8704,7 +8695,7 @@ msgstr "" "没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细" "检查是否已经为表建立了适当的索引。)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8712,36 +8703,36 @@ msgstr "" "在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影" "响。)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "在第一张表上进行了完整表扫描的多表查询数。" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "当前由从 SQL 线程打开的临时表的数量。" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "从 SQL 线程总共重试事务复制数。" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多时间的查询数。" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8750,23 +8741,23 @@ msgstr "" "排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 " "sort_buffer_size 的值。" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "局部范围完成的排序次数。" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "排序的行数。" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "扫描表完成的排序次数。" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要锁定表的次数。" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8776,7 +8767,7 @@ msgstr "" "无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题," "则应该首先检查您的查询语句,然后使用复制操作来分开表。" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8785,11 +8776,11 @@ msgstr "" "线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。" "如果该值是红色的,则应该增加 thread_cache_size 的值。" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "当前打开的连接数。" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8800,7 +8791,7 @@ msgstr "" "thread_cache_size 的值 (如果线程状况良好,这么做通常并不会带来显著的性能提" "升)。" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "非睡眠状态的线程数量。" @@ -9916,6 +9907,11 @@ msgstr "视图名" msgid "Rename view to" msgstr "将视图改名为" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "秒" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "查询执行时间对比 (单位:微秒)" diff --git a/po/zh_TW.po b/po/zh_TW.po index 2490ecb0fb..5dad1f16c8 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:06+0200\n" +"POT-Creation-Date: 2011-06-17 10:36+0200\n" "PO-Revision-Date: 2011-06-12 05:41+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" @@ -82,7 +82,7 @@ msgstr "鍵名" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:1028 +#: server_status.php:1023 msgid "Description" msgstr "說明" @@ -267,7 +267,7 @@ msgstr "已將資料庫 %s 複製爲 %s" msgid "Rename database to" msgstr "將資料庫改名為" -#: db_operations.php:409 server_status.php:797 +#: db_operations.php:409 server_status.php:792 msgid "Command" msgstr "命令" @@ -614,7 +614,7 @@ msgstr " view" #: db_structure.php:445 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:256 +#: server_replication.php:162 server_status.php:271 msgid "Replication" msgstr "複製" @@ -721,7 +721,7 @@ msgstr "已追蹤的表" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_status.php:796 +#: server_privileges.php:2059 server_status.php:791 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -739,7 +739,7 @@ msgstr "建立" msgid "Updated" msgstr "更新" -#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:799 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "狀態" @@ -1038,17 +1038,17 @@ msgstr "關閉" msgid "Edit" msgstr "編輯" -#: js/messages.php:66 server_status.php:411 +#: js/messages.php:66 server_status.php:416 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "選擇伺服器" -#: js/messages.php:67 server_status.php:414 +#: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:68 server_status.php:443 +#: js/messages.php:68 server_status.php:438 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -1061,13 +1061,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 #: libraries/engines/innodb.lib.php:168 server_databases.php:219 -#: server_status.php:699 server_status.php:760 tbl_printview.php:348 +#: server_status.php:694 server_status.php:755 tbl_printview.php:348 #: tbl_structure.php:790 msgid "Total" msgstr "總計" #. l10n: Other, small valued, queries -#: js/messages.php:74 server_status.php:600 +#: js/messages.php:74 server_status.php:595 msgid "Other" msgstr "" @@ -1099,7 +1099,7 @@ msgstr "選擇伺服器" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:84 server_status.php:792 +#: js/messages.php:84 server_status.php:787 msgid "Processes" msgstr "處理" @@ -1119,7 +1119,7 @@ msgstr "" msgid "Issued queries" msgstr "SQL 查詢" -#: js/messages.php:89 server_status.php:386 +#: js/messages.php:89 server_status.php:401 msgid "Query statistics" msgstr "查詢統計" @@ -1908,7 +1908,7 @@ msgstr "已共享" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:258 +#: server_status.php:273 msgid "Tables" msgstr "資料表" @@ -2036,7 +2036,7 @@ msgid "Documentation" msgstr "文件" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_status.php:245 server_status.php:801 +#: server_status.php:260 server_status.php:796 msgid "SQL query" msgstr "SQL 查詢" @@ -2065,7 +2065,7 @@ msgid "Create PHP Code" msgstr "建立 PHP 程式碼" #: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473 -#: server_status.php:394 server_status.php:427 server_status.php:455 +#: server_status.php:409 server_status.php:432 server_status.php:450 msgid "Refresh" msgstr "重新整理" @@ -4733,7 +4733,7 @@ msgstr "壓縮:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_status.php:833 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828 msgid "None" msgstr "無" @@ -4981,7 +4981,7 @@ msgid "The row has been deleted" msgstr "已刪除該行" #: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272 -#: server_status.php:829 +#: server_status.php:824 msgid "Kill" msgstr "中止" @@ -5070,7 +5070,7 @@ msgstr "InnoDB 用於快取資料和索引要使用的記憶體快取大小" msgid "Buffer Pool" msgstr "快取池" -#: libraries/engines/innodb.lib.php:135 server_status.php:305 +#: libraries/engines/innodb.lib.php:135 server_status.php:320 msgid "InnoDB Status" msgstr "InnoDB 狀態" @@ -5537,7 +5537,7 @@ msgstr "顯示 MIME 類型" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:795 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790 msgid "Host" msgstr "主機" @@ -6236,13 +6236,13 @@ msgid "Slave status" msgstr "從伺服器狀態" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:1026 server_variables.php:66 +#: server_status.php:1021 server_variables.php:66 msgid "Variable" msgstr "變數" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:1027 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:117 tbl_structure.php:823 msgid "Value" msgstr "值" @@ -6467,12 +6467,12 @@ msgid "Synchronize" msgstr "同步" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:251 test/theme.php:119 +#: server_status.php:266 test/theme.php:119 msgid "Binary log" msgstr "二進制日誌" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:303 test/theme.php:103 +#: server_engines.php:129 server_status.php:318 test/theme.php:103 msgid "Variables" msgstr "變數" @@ -6747,7 +6747,7 @@ msgstr "分區定義" msgid "+ Add a new value" msgstr "+ 新增" -#: libraries/tbl_triggers.inc.php:27 server_status.php:798 sql.php:926 +#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" msgstr "時間" @@ -6924,7 +6924,7 @@ msgid "Protocol version" msgstr "協定版本" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:794 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789 msgid "User" msgstr "使用者" @@ -7367,17 +7367,17 @@ msgstr "檔案不存在" msgid "Select binary log to view" msgstr "選擇要查看的二進制日誌" -#: server_binlog.php:122 server_status.php:260 +#: server_binlog.php:122 server_status.php:275 msgid "Files" msgstr "檔案" -#: server_binlog.php:169 server_binlog.php:171 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:799 +#: server_status.php:801 msgid "Truncate Shown Queries" msgstr "截斷顯示的查詢" -#: server_binlog.php:177 server_binlog.php:179 server_status.php:804 -#: server_status.php:806 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:799 +#: server_status.php:801 msgid "Show Full Queries" msgstr "顯示完整查詢" @@ -7889,7 +7889,7 @@ msgstr "權限已成功重新讀取." msgid "This server is configured as master in a replication process." msgstr "此伺服器已被設定爲一個複製程序中的主伺服器" -#: server_replication.php:182 server_status.php:280 +#: server_replication.php:182 server_status.php:295 msgid "Show master status" msgstr "查看主伺服器狀態" @@ -8030,202 +8030,193 @@ msgstr "" "此伺服器尚未設定爲一個複製程序中的從伺服器。您想現在設定" "嗎?" -#: server_status.php:119 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "已中止程序 %s " - -#: server_status.php:121 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉" - -#: server_status.php:248 -msgid "Handler" -msgstr "處理器" - -#: server_status.php:249 -msgid "Query cache" -msgstr "查詢快取" - -#: server_status.php:250 -msgid "Threads" -msgstr "程序" - -#: server_status.php:252 -msgid "Temporary data" -msgstr "臨時資料" - -#: server_status.php:253 -msgid "Delayed inserts" -msgstr "延遲插入" - -#: server_status.php:254 -msgid "Key cache" -msgstr "鍵快取" - -#: server_status.php:255 -msgid "Joins" -msgstr "多表查詢" - -#: server_status.php:257 -msgid "Sorting" -msgstr "排序" - -#: server_status.php:259 -msgid "Transaction coordinator" -msgstr "交易協調" - -#: server_status.php:270 -msgid "Flush (close) all tables" -msgstr "強制更新 (關閉) 所有表" - -#: server_status.php:272 -msgid "Show open tables" -msgstr "顯示開啟的表" - -#: server_status.php:277 -msgid "Show slave hosts" -msgstr "顯示從伺服器" - -#: server_status.php:283 -msgid "Show slave status" -msgstr "顯示從伺服器狀態" - -#: server_status.php:288 -msgid "Flush query cache" -msgstr "強制更新查詢快取" - -#: server_status.php:380 -msgid "Runtime Information" -msgstr "運行資訊" - -#: server_status.php:385 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic" -msgstr "選擇伺服器" - -#: server_status.php:387 -#, fuzzy -#| msgid "See slave status table" -msgid "All status variables" -msgstr "查看從伺服器狀態" - -#: server_status.php:397 server_status.php:430 +#: server_status.php:27 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "重新整理" -#: server_status.php:398 server_status.php:431 -#, fuzzy -#| msgid "Second" -msgid "second" -msgstr "秒" - -#: server_status.php:399 server_status.php:400 server_status.php:401 -#: server_status.php:402 server_status.php:403 server_status.php:432 -#: server_status.php:433 server_status.php:434 server_status.php:435 -#: server_status.php:436 -#, fuzzy -#| msgid "Second" -msgid "seconds" -msgstr "秒" - -#: server_status.php:404 server_status.php:405 server_status.php:406 -#: server_status.php:407 server_status.php:437 server_status.php:438 -#: server_status.php:439 server_status.php:440 -#, fuzzy +#: server_status.php:31 +#, fuzzy, php-format #| msgid "Minute" -msgid "minutes" -msgstr "分" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "分" -#: server_status.php:460 +#: server_status.php:33 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "秒" + +#: server_status.php:134 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "已中止程序 %s " + +#: server_status.php:136 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉" + +#: server_status.php:263 +msgid "Handler" +msgstr "處理器" + +#: server_status.php:264 +msgid "Query cache" +msgstr "查詢快取" + +#: server_status.php:265 +msgid "Threads" +msgstr "程序" + +#: server_status.php:267 +msgid "Temporary data" +msgstr "臨時資料" + +#: server_status.php:268 +msgid "Delayed inserts" +msgstr "延遲插入" + +#: server_status.php:269 +msgid "Key cache" +msgstr "鍵快取" + +#: server_status.php:270 +msgid "Joins" +msgstr "多表查詢" + +#: server_status.php:272 +msgid "Sorting" +msgstr "排序" + +#: server_status.php:274 +msgid "Transaction coordinator" +msgstr "交易協調" + +#: server_status.php:285 +msgid "Flush (close) all tables" +msgstr "強制更新 (關閉) 所有表" + +#: server_status.php:287 +msgid "Show open tables" +msgstr "顯示開啟的表" + +#: server_status.php:292 +msgid "Show slave hosts" +msgstr "顯示從伺服器" + +#: server_status.php:298 +msgid "Show slave status" +msgstr "顯示從伺服器狀態" + +#: server_status.php:303 +msgid "Flush query cache" +msgstr "強制更新查詢快取" + +#: server_status.php:395 +msgid "Runtime Information" +msgstr "運行資訊" + +#: server_status.php:400 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "選擇伺服器" + +#: server_status.php:402 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "查看從伺服器狀態" + +#: server_status.php:455 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "保持原密碼" -#: server_status.php:465 +#: server_status.php:460 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "顯示開啟的表" -#: server_status.php:469 +#: server_status.php:464 msgid "Filter by category..." msgstr "" -#: server_status.php:482 +#: server_status.php:477 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "相關連結" -#: server_status.php:526 server_status.php:561 server_status.php:674 -#: server_status.php:719 +#: server_status.php:521 server_status.php:556 server_status.php:669 +#: server_status.php:714 msgid "per hour" msgstr "每小時" -#: server_status.php:530 +#: server_status.php:525 msgid "per minute" msgstr "每分鐘" -#: server_status.php:535 +#: server_status.php:530 msgid "per second" msgstr "每秒" -#: server_status.php:556 +#: server_status.php:551 msgid "Query type" msgstr "查詢方式" #. l10n: # = Amount of queries -#: server_status.php:559 +#: server_status.php:554 msgid "#" msgstr "" -#: server_status.php:623 +#: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:631 +#: server_status.php:626 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s" -#: server_status.php:641 +#: server_status.php:636 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:643 +#: server_status.php:638 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:645 +#: server_status.php:640 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:647 +#: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" "要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊" -#: server_status.php:657 +#: server_status.php:652 msgid "Replication status" msgstr "複製狀態" -#: server_status.php:673 +#: server_status.php:668 msgid "Traffic" msgstr "流量" -#: server_status.php:673 +#: server_status.php:668 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8233,41 +8224,41 @@ msgstr "" "在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正" "確" -#: server_status.php:679 +#: server_status.php:674 msgid "Received" msgstr "已接收" -#: server_status.php:689 +#: server_status.php:684 msgid "Sent" msgstr "已發送" -#: server_status.php:718 +#: server_status.php:713 msgid "Connections" msgstr "連線" -#: server_status.php:725 +#: server_status.php:720 msgid "max. concurrent connections" msgstr "最大同時連線數" -#: server_status.php:732 +#: server_status.php:727 msgid "Failed attempts" msgstr "已失敗" -#: server_status.php:746 +#: server_status.php:741 msgid "Aborted" msgstr "已取消" -#: server_status.php:793 +#: server_status.php:788 msgid "ID" msgstr "ID" -#: server_status.php:854 +#: server_status.php:849 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "無法連線到 MySQL 伺服器" -#: server_status.php:855 +#: server_status.php:850 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8276,16 +8267,16 @@ msgstr "" "因交易使用的臨時二進制日誌快取超出 binlog_cache_size 的設定而使用臨時檔案儲存" "的數量" -#: server_status.php:856 +#: server_status.php:851 msgid "The number of transactions that used the temporary binary log cache." msgstr "交易所用的臨時二進制日誌快取的數量" -#: server_status.php:857 +#: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:858 +#: server_status.php:853 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8295,46 +8286,46 @@ msgstr "" "伺服器執行指令時自動在硬碟上建立的臨時表的數量。如果 Created_tmp_disk_tables " "很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存臨時表而非硬碟" -#: server_status.php:859 +#: server_status.php:854 msgid "How many temporary files mysqld has created." msgstr "mysqld 已建立的臨時檔案的數量" -#: server_status.php:860 +#: server_status.php:855 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量" -#: server_status.php:861 +#: server_status.php:856 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值) " -#: server_status.php:862 +#: server_status.php:857 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延遲插入處理程序的數量。每張使用延遲插入的表都有自己的程序" -#: server_status.php:863 +#: server_status.php:858 msgid "The number of INSERT DELAYED rows written." msgstr "延遲插入已寫入的行數" -#: server_status.php:864 +#: server_status.php:859 msgid "The number of executed FLUSH statements." msgstr "已執行的強制更新 (FLUSH) 指令數" -#: server_status.php:865 +#: server_status.php:860 msgid "The number of internal COMMIT statements." msgstr "已執行的內部送出 (COMMIT) 指令數" -#: server_status.php:866 +#: server_status.php:861 msgid "The number of times a row was deleted from a table." msgstr "從資料表中刪除行的次數" -#: server_status.php:867 +#: server_status.php:862 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8343,7 +8334,7 @@ msgstr "" "如果知道一個資料表的名字,MySQL 伺服器可以詢問 NDB 集羣儲存引擎,這被稱爲“發" "現”Handler_discovery 表明瞭一個資料表被發現的次數" -#: server_status.php:868 +#: server_status.php:863 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8352,14 +8343,14 @@ msgstr "" "讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃" "描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo " -#: server_status.php:869 +#: server_status.php:864 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" "根據索引讀取行的請求數。如果該值很大,說明您的查詢和表都建立了很好的索引" -#: server_status.php:870 +#: server_status.php:865 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8368,7 +8359,7 @@ msgstr "" "根據索引順序讀取下一行的請求數。如果您在查詢一個已索引的欄位且限制了範圍,或" "進行完整表掃描,該值將會不斷增長" -#: server_status.php:871 +#: server_status.php:866 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8376,7 +8367,7 @@ msgstr "" "根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY ... " "DESC 的查詢" -#: server_status.php:872 +#: server_status.php:867 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8386,7 +8377,7 @@ msgstr "" "根據固定位置讀取行的請求數。如果您執行很多需要排序的查詢,該值會很高。您可能" "有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢" -#: server_status.php:873 +#: server_status.php:868 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8396,35 +8387,35 @@ msgstr "" "從資料檔案中讀取行的請求數。如果您在掃描很多表,該值會很大。通常情況下這意味" "着您的表沒有做好索引,或者您的查詢指令沒有使用好索引欄位" -#: server_status.php:874 +#: server_status.php:869 msgid "The number of internal ROLLBACK statements." msgstr "內部回滾 (ROLLBACK) 指令數" -#: server_status.php:875 +#: server_status.php:870 msgid "The number of requests to update a row in a table." msgstr "資料表中更新行的請求數" -#: server_status.php:876 +#: server_status.php:871 msgid "The number of requests to insert a row in a table." msgstr "資料表中插入行的請求數" -#: server_status.php:877 +#: server_status.php:872 msgid "The number of pages containing data (dirty or clean)." msgstr "非空頁數 (含髒頁) " -#: server_status.php:878 +#: server_status.php:873 msgid "The number of pages currently dirty." msgstr "目前髒頁數" -#: server_status.php:879 +#: server_status.php:874 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "請求更新的快取池頁數" -#: server_status.php:880 +#: server_status.php:875 msgid "The number of free pages." msgstr "空閒頁數" -#: server_status.php:881 +#: server_status.php:876 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8433,7 +8424,7 @@ msgstr "" "InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能" "被重新整理或刪除的" -#: server_status.php:882 +#: server_status.php:877 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8444,11 +8435,11 @@ msgstr "" "公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data " -#: server_status.php:883 +#: server_status.php:878 msgid "Total size of buffer pool, in pages." msgstr "快取池總大小 (單位:頁)" -#: server_status.php:884 +#: server_status.php:879 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8456,23 +8447,23 @@ msgstr "" "InnoDB 原始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時" "發生" -#: server_status.php:885 +#: server_status.php:880 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "InnoDB 原始化的順序預讀數。這會在 InnoDB 執行一個順序完整表掃描時發生" -#: server_status.php:886 +#: server_status.php:881 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的邏輯讀請求數" -#: server_status.php:887 +#: server_status.php:882 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 進行邏輯讀取時無法從快取池中取得而執行單頁讀取的次數" -#: server_status.php:888 +#: server_status.php:883 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8484,85 +8475,85 @@ msgstr "" "必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正" "確,這個值應該會很小" -#: server_status.php:889 +#: server_status.php:884 msgid "The number writes done to the InnoDB buffer pool." msgstr "寫入 InnoDB 快取池的次數" -#: server_status.php:890 +#: server_status.php:885 msgid "The number of fsync() operations so far." msgstr "fsync() 總操作的次數" -#: server_status.php:891 +#: server_status.php:886 msgid "The current number of pending fsync() operations." msgstr "目前掛起 fsync() 操作的數量" -#: server_status.php:892 +#: server_status.php:887 msgid "The current number of pending reads." msgstr "目前掛起的讀操作數" -#: server_status.php:893 +#: server_status.php:888 msgid "The current number of pending writes." msgstr "目前掛起的寫操作數" -#: server_status.php:894 +#: server_status.php:889 msgid "The amount of data read so far, in bytes." msgstr "讀取的總資料量 (單位:字元)" -#: server_status.php:895 +#: server_status.php:890 msgid "The total number of data reads." msgstr "資料讀取總數" -#: server_status.php:896 +#: server_status.php:891 msgid "The total number of data writes." msgstr "資料寫入總數" -#: server_status.php:897 +#: server_status.php:892 msgid "The amount of data written so far, in bytes." msgstr "寫入的總資料量 (單位:字元)" -#: server_status.php:898 +#: server_status.php:893 msgid "The number of pages that have been written for doublewrite operations." msgstr "以雙寫入操作寫入的頁數" -#: server_status.php:899 +#: server_status.php:894 msgid "The number of doublewrite operations that have been performed." msgstr "已經執行的雙寫入次數" -#: server_status.php:900 +#: server_status.php:895 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因日誌快取太小而必須等待其被寫入所造成的等待數" -#: server_status.php:901 +#: server_status.php:896 msgid "The number of log write requests." msgstr "日誌寫入請求數" -#: server_status.php:902 +#: server_status.php:897 msgid "The number of physical writes to the log file." msgstr "日誌物理寫入次數" -#: server_status.php:903 +#: server_status.php:898 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 寫入日志檔案的次數" -#: server_status.php:904 +#: server_status.php:899 msgid "The number of pending log file fsyncs." msgstr "目前掛起的 fsync 日志檔案數" -#: server_status.php:905 +#: server_status.php:900 msgid "Pending log file writes." msgstr "目前掛起的日誌寫入數" -#: server_status.php:906 +#: server_status.php:901 msgid "The number of bytes written to the log file." msgstr "寫入日志檔案的字元數" -#: server_status.php:907 +#: server_status.php:902 msgid "The number of pages created." msgstr "建立的頁數" -#: server_status.php:908 +#: server_status.php:903 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8570,75 +8561,75 @@ msgstr "" "編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方" "便地將這些值轉化爲字元數" -#: server_status.php:909 +#: server_status.php:904 msgid "The number of pages read." msgstr "讀取的頁數" -#: server_status.php:910 +#: server_status.php:905 msgid "The number of pages written." msgstr "寫入的頁數" -#: server_status.php:911 +#: server_status.php:906 msgid "The number of row locks currently being waited for." msgstr "正在等待行鎖的數量" -#: server_status.php:912 +#: server_status.php:907 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的平均時間 (單位:毫秒)" -#: server_status.php:913 +#: server_status.php:908 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待取得行鎖的總時間 (單位:毫秒)" -#: server_status.php:914 +#: server_status.php:909 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的最大時間 (單位:毫秒)" -#: server_status.php:915 +#: server_status.php:910 msgid "The number of times a row lock had to be waited for." msgstr "等待行鎖的次數" -#: server_status.php:916 +#: server_status.php:911 msgid "The number of rows deleted from InnoDB tables." msgstr "從 InnoDB 資料表中刪除的行數" -#: server_status.php:917 +#: server_status.php:912 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 資料表中的行數" -#: server_status.php:918 +#: server_status.php:913 msgid "The number of rows read from InnoDB tables." msgstr "從 InnoDB 資料表中讀取的行數" -#: server_status.php:919 +#: server_status.php:914 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行數" -#: server_status.php:920 +#: server_status.php:915 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "鍵快取中還沒有被寫入到硬碟的鍵塊數。該值過去名爲 Not_flushed_key_blocks " -#: server_status.php:921 +#: server_status.php:916 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "鍵快取中未使用的塊數。您可以根據這個值判斷目前使用了多少鍵快取" -#: server_status.php:922 +#: server_status.php:917 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "鍵快取中已經使用的塊數。該值指示在某個時刻使用了最多塊數的數量" -#: server_status.php:923 +#: server_status.php:918 msgid "The number of requests to read a key block from the cache." msgstr "從快取中讀取鍵塊的請求次數" -#: server_status.php:924 +#: server_status.php:919 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8647,15 +8638,15 @@ msgstr "" "從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size " "可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出" -#: server_status.php:925 +#: server_status.php:920 msgid "The number of requests to write a key block to the cache." msgstr "將一個鍵塊寫入快取的請求數" -#: server_status.php:926 +#: server_status.php:921 msgid "The number of physical writes of a key block to disk." msgstr "將鍵塊物理寫入到硬碟的次數" -#: server_status.php:927 +#: server_status.php:922 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8664,54 +8655,54 @@ msgstr "" "最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進" "行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯" -#: server_status.php:928 +#: server_status.php:923 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:929 +#: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待寫入延遲插入隊列的行數" -#: server_status.php:930 +#: server_status.php:925 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已經開啟的表個數。如果該值很大,則說明表快取大小可能設定過小" -#: server_status.php:931 +#: server_status.php:926 msgid "The number of files that are open." msgstr "開啟的檔案個數" -#: server_status.php:932 +#: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "開啟的流個數 (主要用於日誌記錄)" -#: server_status.php:933 +#: server_status.php:928 msgid "The number of tables that are open." msgstr "開啟的資料表個數" -#: server_status.php:934 +#: server_status.php:929 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:935 +#: server_status.php:930 msgid "The amount of free memory for query cache." msgstr "查詢快取中空閒的記憶體總數" -#: server_status.php:936 +#: server_status.php:931 msgid "The number of cache hits." msgstr "快取命中數" -#: server_status.php:937 +#: server_status.php:932 msgid "The number of queries added to the cache." msgstr "加入到快取的查詢數" -#: server_status.php:938 +#: server_status.php:933 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8721,7 +8712,7 @@ msgstr "" "爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除" "哪個已快取的查詢。該資訊可幫助您調整查詢快取大小" -#: server_status.php:939 +#: server_status.php:934 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8729,19 +8720,19 @@ msgstr "" "未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的" "查詢)" -#: server_status.php:940 +#: server_status.php:935 msgid "The number of queries registered in the cache." msgstr "在快取中註冊的查詢數" -#: server_status.php:941 +#: server_status.php:936 msgid "The total number of blocks in the query cache." msgstr "查詢快取中的總塊數" -#: server_status.php:942 +#: server_status.php:937 msgid "The status of failsafe replication (not yet implemented)." msgstr "失敗保護器的狀態 (尚未套用)" -#: server_status.php:943 +#: server_status.php:938 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8749,11 +8740,11 @@ msgstr "" "沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當" "的索引" -#: server_status.php:944 +#: server_status.php:939 msgid "The number of joins that used a range search on a reference table." msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量" -#: server_status.php:945 +#: server_status.php:940 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8761,7 +8752,7 @@ msgstr "" "沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細" "檢查是否已經爲表建立了適當的索引。)" -#: server_status.php:946 +#: server_status.php:941 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8769,36 +8760,36 @@ msgstr "" "在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影" "響。)" -#: server_status.php:947 +#: server_status.php:942 msgid "The number of joins that did a full scan of the first table." msgstr "在第一個資料表上進行了完整表掃描的多表查詢數" -#: server_status.php:948 +#: server_status.php:943 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "目前由從 SQL 程序開啟的臨時表的數量" -#: server_status.php:949 +#: server_status.php:944 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "從 SQL 程序總共重試交易複製數" -#: server_status.php:950 +#: server_status.php:945 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果該值爲 ON,則這臺伺服器是一臺已經連線到主伺服器的從伺服器" -#: server_status.php:951 +#: server_status.php:946 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量" -#: server_status.php:952 +#: server_status.php:947 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多時間的查詢數" -#: server_status.php:953 +#: server_status.php:948 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8807,23 +8798,23 @@ msgstr "" "排序算法使用歸併的次數。如果該值很大,您應該考慮增加系統變數 " "sort_buffer_size 的值" -#: server_status.php:954 +#: server_status.php:949 msgid "The number of sorts that were done with ranges." msgstr "局部範圍完成的排序次數" -#: server_status.php:955 +#: server_status.php:950 msgid "The number of sorted rows." msgstr "排序的行數" -#: server_status.php:956 +#: server_status.php:951 msgid "The number of sorts that were done by scanning the table." msgstr "掃描表完成的排序次數" -#: server_status.php:957 +#: server_status.php:952 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要鎖定表的次數" -#: server_status.php:958 +#: server_status.php:953 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8833,7 +8824,7 @@ msgstr "" "無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題," "則應該首先檢查您的查詢指令,然後使用複製操作來分開表" -#: server_status.php:959 +#: server_status.php:954 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8842,11 +8833,11 @@ msgstr "" "程序快取中程序的數量。快取命中率可以由 Threads_created/Connections 計算得出如" "果該值是紅色的,則應該增加 thread_cache_size 的值" -#: server_status.php:960 +#: server_status.php:955 msgid "The number of currently open connections." msgstr "目前開啟的連線數" -#: server_status.php:961 +#: server_status.php:956 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8856,7 +8847,7 @@ msgstr "" "目前用於控制連線的程序數。如果 Threads_created 很大,您可能需要增加 " "thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" -#: server_status.php:962 +#: server_status.php:957 msgid "The number of threads that are not sleeping." msgstr "非睡眠狀態的程序數量" @@ -9993,6 +9984,11 @@ msgstr " view名" msgid "Rename view to" msgstr "將 view改名爲" +#, fuzzy +#~| msgid "Second" +#~ msgid "seconds" +#~ msgstr "秒" + #~ msgid "Query execution time comparison (in microseconds)" #~ msgstr "查詢執行時間對比 (單位:微秒)" From 84832f2e879911996558deb36f09f9308e6b6c0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:38:42 +0200 Subject: [PATCH 259/340] Translation update done using Pootle. --- po/cs.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/cs.po b/po/cs.po index 28ed5ce563..e263a41b10 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 10:28+0200\n" +"PO-Revision-Date: 2011-06-17 10:38+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -8199,13 +8199,13 @@ msgid "Refresh rate" msgstr "Obnovovací frekvence" #: server_status.php:31 -#, fuzzy, php-format +#, php-format #| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "Minuty" -msgstr[1] "Minuty" -msgstr[2] "Minuty" +msgstr[0] "%d minuta" +msgstr[1] "%d minuty" +msgstr[2] "%d minut" #: server_status.php:33 #, fuzzy, php-format From 191563c5a5191270255894a66d41a3130df82adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:38:59 +0200 Subject: [PATCH 260/340] Translation update done using Pootle. --- po/cs.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/cs.po b/po/cs.po index e263a41b10..2186d731c8 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8208,13 +8208,13 @@ msgstr[1] "%d minuty" msgstr[2] "%d minut" #: server_status.php:33 -#, fuzzy, php-format +#, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" -msgstr[0] "Sekundy" -msgstr[1] "Sekundy" -msgstr[2] "Sekundy" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekundy" +msgstr[2] "%d sekund" #: server_status.php:134 #, php-format From cb3bdd02508dd9a7aa516029e91c22d637dbab44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:39:09 +0200 Subject: [PATCH 261/340] Translation update done using Pootle. --- po/cs.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index 2186d731c8..aec617e831 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 10:38+0200\n" +"PO-Revision-Date: 2011-06-17 10:39+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -8298,10 +8298,9 @@ msgid "All status variables" msgstr "Všechny stavové proměnné" #: server_status.php:455 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "Neměnit heslo" +msgstr "Obsahující slovo:" #: server_status.php:460 #, fuzzy From 1f9593ba4ce167a3fe875a0eb1fdc5a18deba172 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:39:40 +0200 Subject: [PATCH 262/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index aec617e831..6acc705674 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8303,10 +8303,9 @@ msgid "Containing the word:" msgstr "Obsahující slovo:" #: server_status.php:460 -#, fuzzy #| msgid "Show open tables" msgid "Show only alert values" -msgstr "Zobrazit otevřené tabulky" +msgstr "Zobrazit jen hodnoty s upozorněním" #: server_status.php:464 msgid "Filter by category..." From 7fa89b740c6f795ae0b6eacaf0c9212c268a0214 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:39:54 +0200 Subject: [PATCH 263/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 6acc705674..4ae1a10c54 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8309,7 +8309,7 @@ msgstr "Zobrazit jen hodnoty s upozorněním" #: server_status.php:464 msgid "Filter by category..." -msgstr "" +msgstr "Filtrovat podle kategorie..." #: server_status.php:477 #, fuzzy From 201c6ef257e5ef611883186cded478edabea221f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:40:01 +0200 Subject: [PATCH 264/340] Translation update done using Pootle. --- po/cs.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index 4ae1a10c54..1b85b146cd 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 10:39+0200\n" +"PO-Revision-Date: 2011-06-17 10:40+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -8312,10 +8312,9 @@ msgid "Filter by category..." msgstr "Filtrovat podle kategorie..." #: server_status.php:477 -#, fuzzy #| msgid "Related Links" msgid "Related links:" -msgstr "Související odkazy" +msgstr "Související odkazy:" #: server_status.php:521 server_status.php:556 server_status.php:669 #: server_status.php:714 From 888bb7227c384e921e0acceb355bd40b6fdfdad5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:40:26 +0200 Subject: [PATCH 265/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 1b85b146cd..231ae57dea 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8336,7 +8336,7 @@ msgstr "Typ dotazu" #. l10n: # = Amount of queries #: server_status.php:554 msgid "#" -msgstr "" +msgstr "#" #: server_status.php:618 #, php-format From 40c7f24cdeef1f5d4ca67ef621e07d913aa2c04d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:40:42 +0200 Subject: [PATCH 266/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 231ae57dea..190c686ead 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8341,7 +8341,7 @@ msgstr "#" #: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" -msgstr "" +msgstr "Síťový provoz od spuštění: %s" #: server_status.php:626 #, php-format From 39c23548a6371020917e9685f50d3927124cd42b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:41:03 +0200 Subject: [PATCH 267/340] Translation update done using Pootle. --- po/cs.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index 190c686ead..4cba45c72b 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 10:40+0200\n" +"PO-Revision-Date: 2011-06-17 10:41+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -8419,10 +8419,9 @@ msgid "ID" msgstr "ID" #: server_status.php:849 -#, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Nepodařilo se připojit k MySQL serveru" +msgstr "Počet chybných připojení k MySQL serveru." #: server_status.php:850 msgid "" From 827bd8c050894505f1f7c9fb82b284980c7580f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:41:23 +0200 Subject: [PATCH 268/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 4cba45c72b..9ef7be2eb0 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8440,7 +8440,7 @@ msgstr "Počet transakcí, které využily dočasný binární log." #: server_status.php:852 msgid "" "The number of connection attempts (successful or not) to the MySQL server." -msgstr "" +msgstr "Celkový počet připojení (i chybných) k MySQL serveru." #: server_status.php:853 msgid "" From 2e4c93f8461cd904c84e6ecdbdea682ab99a4148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:41:54 +0200 Subject: [PATCH 269/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 9ef7be2eb0..d33bc9f447 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8855,7 +8855,7 @@ msgstr "" msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." -msgstr "" +msgstr "Maximální počet současně používaných připojení od spuštění serveru." #: server_status.php:924 msgid "The number of rows waiting to be written in INSERT DELAYED queues." From 4bf98275522a64ba522eba1df38352289853c6fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:42:32 +0200 Subject: [PATCH 270/340] Translation update done using Pootle. --- po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index d33bc9f447..648b84032a 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 10:41+0200\n" +"PO-Revision-Date: 2011-06-17 10:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -240,7 +240,7 @@ msgstr "Vytisknout" #: db_export.php:30 msgid "View dump (schema) of database" -msgstr "Export databáze" +msgstr "Zobrazit výpis (schéma) databáze" #: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48 #: export.php:371 navigation.php:323 From 3cc00267971067bdeae5d1a191eab7f6053fa2e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:43:16 +0200 Subject: [PATCH 271/340] Translation update done using Pootle. --- po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 648b84032a..fe43f9a83f 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 10:42+0200\n" +"PO-Revision-Date: 2011-06-17 10:43+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -1825,7 +1825,7 @@ msgstr "Dokumentace phpMyAdmina" #: libraries/auth/cookie.auth.lib.php:243 #: libraries/auth/cookie.auth.lib.php:244 msgid "You can enter hostname/IP address and port separated by space." -msgstr "Můžete zadat jméno počítače (nebo IP adresu) a port oddělené mezerou." +msgstr "Můžete zadat jméno počítače nebo IP adresu a port oddělené mezerou." #: libraries/auth/cookie.auth.lib.php:243 msgid "Server:" From 364562529992f738388cfa0f50edb3227e7b27cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:43:43 +0200 Subject: [PATCH 272/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index fe43f9a83f..999f771a5f 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1858,7 +1858,7 @@ msgstr "Přihlášení bez hesla je zakázáno v konfiguraci (viz AllowNoPasswor #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -"Byli jste příliš dlouho neaktivní (déle než %s sekund), prosím přihlaste se " +"Nebyla zaznamenána žádná aktivita po dobu %s sekund, prosím přihlaste se " "znovu" #: libraries/auth/cookie.auth.lib.php:657 From d3ed3ccbf4cf8562dc596750f7c6650151dc66a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:43:52 +0200 Subject: [PATCH 273/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 999f771a5f..d3883ffc9b 100644 --- a/po/cs.po +++ b/po/cs.po @@ -2086,7 +2086,7 @@ msgstr "Vysvětlit SQL" #: libraries/common.lib.php:1124 msgid "Skip Explain SQL" -msgstr "Bez vysvětlení (EXPLAIN) SQL" +msgstr "Bez vysvětlení SQL" #: libraries/common.lib.php:1158 msgid "Without PHP Code" From 0b5c63f7b79bebdbdb7f3b82c934f97a7a52c76f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:44:12 +0200 Subject: [PATCH 274/340] Translation update done using Pootle. --- po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index d3883ffc9b..326cec9e79 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 10:43+0200\n" +"PO-Revision-Date: 2011-06-17 10:44+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -2447,7 +2447,7 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Tajné heslo (fráze) používané pro šifrování cookies při přihlašování pomocí " +"Tajné heslo používané pro šifrování cookies při přihlašování pomocí " "[kbd]cookie[/kbd]" #: libraries/config/messages.inc.php:25 From de1c8ef230519e011253fd5520ec832025020ec7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:44:20 +0200 Subject: [PATCH 275/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 326cec9e79..2d94f379c4 100644 --- a/po/cs.po +++ b/po/cs.po @@ -2452,7 +2452,7 @@ msgstr "" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" -msgstr "Klíč pro šifrování cookies (blowfish_secret)" +msgstr "Klíč pro šifrování cookies" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" From 8ad5bb31b2c7c0aef3fa3fd5ee8b8ee934468df6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:44:45 +0200 Subject: [PATCH 276/340] Translation update done using Pootle. --- po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 2d94f379c4..bce5feb079 100644 --- a/po/cs.po +++ b/po/cs.po @@ -2655,8 +2655,8 @@ msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -"Zadejte počet sekund, po které může skript běžet, nebo ([kbd]0[/kbd] pro " -"žádná omezení" +"Zadejte počet sekund, po které může skript běžet ([kbd]0[/kbd] pro žádná " +"omezení)" #: libraries/config/messages.inc.php:69 msgid "Maximum execution time" From ffe9aaee38e498cf5bcea7d1cb4caa625fb357ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:44:56 +0200 Subject: [PATCH 277/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index bce5feb079..dc59ce946b 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3587,7 +3587,7 @@ msgstr "Výchozí pořadí řazení" #: libraries/config/messages.inc.php:329 msgid "Use persistent connections to MySQL databases" -msgstr "Použije trvalé (persistentní) připojení k MySQL databázi" +msgstr "Použije trvalé připojení k MySQL databázi" #: libraries/config/messages.inc.php:330 msgid "Persistent connections" From f78d1d57c775e48f4dcfc93da19d42328de555a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:45:07 +0200 Subject: [PATCH 278/340] Translation update done using Pootle. --- po/cs.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index dc59ce946b..8478ce026a 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 10:44+0200\n" +"PO-Revision-Date: 2011-06-17 10:45+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -3793,7 +3793,8 @@ msgstr "Komprimovat připojení" #: libraries/config/messages.inc.php:377 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "Jak se připojit k serveru, ponechte tcp pokud si nejste jistí" +msgstr "" +"Jak se připojit k serveru, ponechte [kbd]tcp[/kbd] pokud si nejste jistí" #: libraries/config/messages.inc.php:378 msgid "Connection type" From 3ae79096249cfb8d9d921ef206f0ae879da61c47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:45:35 +0200 Subject: [PATCH 279/340] Translation update done using Pootle. --- po/cs.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index 8478ce026a..9cd4f97edc 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3905,9 +3905,9 @@ msgid "" "alphabetical order." msgstr "" "Můžete použít žolíky MySQL (% a _), escapujte je, pokud je chcete použít " -"jako znaky, např. použijte 'moje\\_db' a ne 'moje_db'. Použitím této volby " -"můžete také změnit pořadí databází, stačí na konci seznamu uvést [kbd]*[/" -"kbd] pro zobrazní ostatních v abecedním pořadí." +"jako znaky, např. použijte [kbd]moje\\_db[/kbd] a ne [kbd]moje_db[/kbd]. " +"Použitím této volby můžete také změnit pořadí databází, stačí na konci " +"seznamu uvést [kbd]*[/kbd] pro zobrazní ostatních v abecedním pořadí." #: libraries/config/messages.inc.php:400 msgid "Show only listed databases" From 617002b0208fc1014d8ff6473520486687bf8271 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:46:12 +0200 Subject: [PATCH 280/340] Translation update done using Pootle. --- po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 9cd4f97edc..fd348449e5 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 10:45+0200\n" +"PO-Revision-Date: 2011-06-17 10:46+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -4164,7 +4164,7 @@ msgstr "Dlouhé jméno tohoto serveru" #: libraries/config/messages.inc.php:448 msgid "Whether a user should be displayed a "show all (rows)" button" -msgstr "Jestli uživateli bude zobrazeno tlačítko "zobrazit vše"" +msgstr "Jestli uživateli bude zobrazeno tlačítko "Zobrazit vše"" #: libraries/config/messages.inc.php:449 msgid "Allow to display all the rows" From 940360875b5df91bdaf649887affdad043ce773f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:46:39 +0200 Subject: [PATCH 281/340] Translation update done using Pootle. --- po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index fd348449e5..fd7152b95d 100644 --- a/po/cs.po +++ b/po/cs.po @@ -4464,8 +4464,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Povolí [a@http://cs.wikipedia.org/wiki/ZIP_%28souborov%C3%BD_form%C3%A1t%29]" -"ZIP[/a] kompresi pro importování a exportování" +"Povolí [a@http://cs.wikipedia.org/wiki/ZIP_%28souborov%C3%BD_form%C3%A1t%" +"29]ZIP[/a] kompresi pro import a export" #: libraries/config/messages.inc.php:512 msgid "ZIP" From 746dd701927c8f33d4b355d8df34d91c7466ca7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:48:01 +0200 Subject: [PATCH 282/340] Translation update done using Pootle. --- po/cs.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index fd7152b95d..9c32558905 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 10:46+0200\n" +"PO-Revision-Date: 2011-06-17 10:48+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -8888,6 +8888,9 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" +"Počet volných bloků paměti ve vyrovnávací paměti dotazů. Velké číslo ukazuje " +"na problému s fragmentací, která může být vyřešena spuštěním příkazu FLUSH " +"QUERY CACHE." #: server_status.php:930 msgid "The amount of free memory for query cache." From bf39b65dc3daa787b04402a4eceb2f35760179a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:48:14 +0200 Subject: [PATCH 283/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 9c32558905..2e4ba749c6 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9620,10 +9620,9 @@ msgid "Line" msgstr "Čára" #: tbl_chart.php:88 -#, fuzzy #| msgid "Inline" msgid "Spline" -msgstr "Upravit zde" +msgstr "Křivka" #: tbl_chart.php:89 msgid "Pie" From f37cd3283f18c901855df5dabafd1fb68f413aad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:48:21 +0200 Subject: [PATCH 284/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 2e4ba749c6..f8eacc077a 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9633,10 +9633,9 @@ msgid "Stacked" msgstr "Skládané" #: tbl_chart.php:94 -#, fuzzy #| msgid "Report title:" msgid "Chart title" -msgstr "Název výpisu:" +msgstr "Název grafu" #: tbl_chart.php:99 msgid "X-Axis:" From 520eebf74783224a56e64292b5e0e043ef9be011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:48:30 +0200 Subject: [PATCH 285/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index f8eacc077a..9250926112 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9639,7 +9639,7 @@ msgstr "Název grafu" #: tbl_chart.php:99 msgid "X-Axis:" -msgstr "" +msgstr "Osa X" #: tbl_chart.php:113 #, fuzzy From 24e2b43d30fce5191ed25f262e6819057ff40707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:48:38 +0200 Subject: [PATCH 286/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 9250926112..7ae0432a35 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9642,10 +9642,9 @@ msgid "X-Axis:" msgstr "Osa X" #: tbl_chart.php:113 -#, fuzzy #| msgid "SQL queries" msgid "Series:" -msgstr "SQL dotazy" +msgstr "Série:" #: tbl_chart.php:115 #, fuzzy From 9d40ae7f7ab20e593bf8314be91adde01253efec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:48:42 +0200 Subject: [PATCH 287/340] Translation update done using Pootle. --- po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 7ae0432a35..aa33607b22 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9639,7 +9639,7 @@ msgstr "Název grafu" #: tbl_chart.php:99 msgid "X-Axis:" -msgstr "Osa X" +msgstr "Osa X:" #: tbl_chart.php:113 #| msgid "SQL queries" From b8709dbde1b126e323a3379cb8b62d04b1d039cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:49:00 +0200 Subject: [PATCH 288/340] Translation update done using Pootle. --- po/cs.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index aa33607b22..10d24c49f1 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 10:48+0200\n" +"PO-Revision-Date: 2011-06-17 10:49+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -9647,10 +9647,9 @@ msgid "Series:" msgstr "Série:" #: tbl_chart.php:115 -#, fuzzy #| msgid "Textarea columns" msgid "The remaining columns" -msgstr "Sloupců v textové oblasti" +msgstr "Zbývající sloupce" #: tbl_chart.php:128 #, fuzzy From d41dbffa3da43c25a18a6e9ec5e2640fc2b7e867 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:49:05 +0200 Subject: [PATCH 289/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 10d24c49f1..fa996da891 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9652,10 +9652,9 @@ msgid "The remaining columns" msgstr "Zbývající sloupce" #: tbl_chart.php:128 -#, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" -msgstr "Popis osy X" +msgstr "Popis osy X:" #: tbl_chart.php:128 #, fuzzy From aeadb04420f1427f0d098b7e402aeea5b67b915d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:49:12 +0200 Subject: [PATCH 290/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index fa996da891..9ae62e92ca 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9657,10 +9657,9 @@ msgid "X-Axis label:" msgstr "Popis osy X:" #: tbl_chart.php:128 -#, fuzzy #| msgid "Value" msgid "X Values" -msgstr "Hodnota" +msgstr "Hodnoty X" #: tbl_chart.php:129 #, fuzzy From 03a20fabfc91da84f26539aea7861ee8cf0695c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:49:16 +0200 Subject: [PATCH 291/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 9ae62e92ca..99cb206718 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9662,10 +9662,9 @@ msgid "X Values" msgstr "Hodnoty X" #: tbl_chart.php:129 -#, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" -msgstr "Popis osy Y" +msgstr "Popis osy Y:" #: tbl_chart.php:129 #, fuzzy From befcbbb8111ed4b67bb891ab31087c972942cf37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:49:20 +0200 Subject: [PATCH 292/340] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 99cb206718..44b43ba4a4 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9667,10 +9667,9 @@ msgid "Y-Axis label:" msgstr "Popis osy Y:" #: tbl_chart.php:129 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "Hodnota" +msgstr "Hodnoty Y" #: tbl_create.php:56 #, php-format From 75fe6d5c49e1764383497c504c401c7b74b41d2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:55:28 +0200 Subject: [PATCH 293/340] Translation update done using Pootle. --- po/uk.po | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/po/uk.po b/po/uk.po index 65eda18de7..4e01500804 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2010-12-28 22:26+0200\n" -"Last-Translator: Olexiy Zagorskyi \n" +"PO-Revision-Date: 2011-06-17 10:55+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -113,6 +113,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" +"файл %s недоступний на сервері, будь ласка завітайте на www.phpmyadmin.net " +"за додатковою інформацією." #: db_create.php:58 #, php-format From e2ebf7f6678031e270dbc32ff13bd0275f4bbe2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:55:38 +0200 Subject: [PATCH 294/340] Translation update done using Pootle. --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 4e01500804..82feff0ecf 100644 --- a/po/uk.po +++ b/po/uk.po @@ -418,7 +418,7 @@ msgstr "Переключитись на" #: db_qbe.php:186 msgid "visual builder" -msgstr "" +msgstr "Візуальний конструктор" #: db_qbe.php:222 libraries/db_structure.lib.php:95 #: libraries/display_tbl.lib.php:914 From f55f399de659b4cdfef547274df023ec4274c910 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 10:55:43 +0200 Subject: [PATCH 295/340] Translation update done using Pootle. --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 82feff0ecf..a8d2bddc1c 100644 --- a/po/uk.po +++ b/po/uk.po @@ -598,7 +598,7 @@ msgstr "Таблицю %s було очищено" #: db_structure.php:287 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" -msgstr "" +msgstr "Вигляд %s знищено" #: db_structure.php:287 tbl_operations.php:705 #, php-format From bcf98e6f9501cdc8b3e24bd6acfbe5c14df335a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 11:00:30 +0200 Subject: [PATCH 296/340] Merge pending translations from pootle --- po/af.po | 2 +- po/ar.po | 16 +- po/az.po | 30 +- po/be.po | 2 +- po/be@latin.po | 20 +- po/bg.po | 6 +- po/bn.po | 19 +- po/bs.po | 2 +- po/ca.po | 4 +- po/cs.po | 26 +- po/cy.po | 14 +- po/da.po | 731 +++++++++++++++++++--------------------------- po/de.po | 4 +- po/el.po | 2 +- po/en_GB.po | 2 +- po/es.po | 4 +- po/et.po | 2 +- po/eu.po | 16 +- po/fa.po | 18 +- po/fi.po | 163 +++-------- po/fr.po | 2 +- po/gl.po | 2 +- po/he.po | 20 +- po/hi.po | 10 +- po/hr.po | 19 +- po/hu.po | 16 +- po/id.po | 38 +-- po/it.po | 17 +- po/ja.po | 2 +- po/ka.po | 21 +- po/ko.po | 20 +- po/lt.po | 4 +- po/lv.po | 2 +- po/mk.po | 49 +--- po/ml.po | 2 +- po/mn.po | 2 +- po/ms.po | 26 +- po/nb.po | 14 +- po/nl.po | 42 +-- po/phpmyadmin.pot | 2 +- po/pl.po | 26 +- po/pt.po | 41 +-- po/pt_BR.po | 190 +++++------- po/ro.po | 19 +- po/ru.po | 2 +- po/si.po | 6 +- po/sk.po | 17 +- po/sl.po | 2 +- po/sq.po | 2 +- po/sr.po | 19 +- po/sr@latin.po | 19 +- po/sv.po | 4 +- po/ta.po | 8 +- po/te.po | 9 +- po/th.po | 16 +- po/tr.po | 2 +- po/tt.po | 19 +- po/ug.po | 12 +- po/uk.po | 10 +- po/ur.po | 6 +- po/uz.po | 24 +- po/uz@latin.po | 22 +- po/zh_CN.po | 4 +- po/zh_TW.po | 166 +++-------- 64 files changed, 598 insertions(+), 1440 deletions(-) diff --git a/po/af.po b/po/af.po index 82d5d0dbe9..a025a1ebf2 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" diff --git a/po/ar.po b/po/ar.po index 82caf98c0f..7f0f2e212b 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-04-21 13:56+0200\n" "Last-Translator: \n" "Language-Team: arabic \n" @@ -10126,21 +10126,15 @@ msgstr "" msgid "Rename view to" msgstr "أعد تسمية العرض الـ" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "الثانية" -#, fuzzy -#~| msgid "SQL result" #~ msgid "Query results" #~ msgstr "ناتج استعلام SQL" #~ msgid "Show processes" #~ msgstr "عرض العمليات" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "إلغاء" @@ -10157,23 +10151,15 @@ msgstr "أعد تسمية العرض الـ" #~ "the server." #~ msgstr "إحصائيات الاستعلام: %s استعلام أرسل إلى الخادم منذ تشغيله." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "نوع الاستعلام" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "أضف مستخدم جديد" -#, fuzzy -#~| msgid "Create" #~ msgid "Create User" #~ msgstr "تكوين" diff --git a/po/az.po b/po/az.po index 6800998e8b..db9b41091c 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" @@ -32,7 +32,7 @@ msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." -msgstr "" +msgstr "alalal" #: browse_foreigners.php:151 libraries/common.lib.php:2763 #: libraries/common.lib.php:2770 libraries/common.lib.php:2952 @@ -87,7 +87,7 @@ msgstr "Haqqında" #: browse_foreigners.php:248 browse_foreigners.php:257 #: browse_foreigners.php:269 browse_foreigners.php:277 msgid "Use this value" -msgstr "" +msgstr "sex" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 #: libraries/blobstreaming.lib.php:331 @@ -100,7 +100,7 @@ msgstr "" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "Uzaqdaki linke qosula bilmedim " #: changelog.php:32 license.php:28 #, php-format @@ -108,11 +108,13 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" +"%s fayli systemde yoxdur,zehmet olmasa www.phpmyadmin.net saytini ziyaret " +"edin" #: db_create.php:58 -#, fuzzy, php-format +#, php-format msgid "Database %1$s has been created." -msgstr "%s bazası leğv edildi." +msgstr "%s bazası yaradildi" #: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " @@ -10201,17 +10203,12 @@ msgstr "" msgid "Rename view to" msgstr "Cedveli yeniden adlandır" -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "saniyede" -#, fuzzy -#~| msgid "SQL result" #~ msgid "Query results" #~ msgstr "SQL result" -#, fuzzy #~ msgctxt "$strShowStatusReset" #~ msgid "Reset" #~ msgstr "Yenile" @@ -10219,8 +10216,6 @@ msgstr "Cedveli yeniden adlandır" #~ msgid "Show processes" #~ msgstr "Prosesleri göster" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Yenile" @@ -10239,30 +10234,21 @@ msgstr "Cedveli yeniden adlandır" #~ "Sorğu Statistikası: Açıldıqdan bu yana, bu servere %s sorğu " #~ "gönderilmişdir." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "The privileges were reloaded successfully." -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Sorğu tipi" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Yeni İstifadeçi elave Et" -#, fuzzy #~ msgid "Create User" #~ msgstr "Server versiyası" #~ msgid "Add a new User" #~ msgstr "Yeni İstifadeçi elave Et" -#, fuzzy -#~| msgid "Dumping data for table" #~ msgid "Delete the matches for the " #~ msgstr "Sxemi çıxarılan cedvel" diff --git a/po/be.po b/po/be.po index 7b5de24001..56b4b3df69 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" diff --git a/po/be@latin.po b/po/be@latin.po index 00a0cf1093..7e2e0b0878 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" @@ -10551,13 +10551,9 @@ msgstr "Nazva prahladu" msgid "Rename view to" msgstr "" -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "u sekundu" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "Dziejańni z vynikami zapytaŭ" @@ -10571,8 +10567,6 @@ msgstr "" #~ msgid "Show processes" #~ msgstr "Pakazać pracesy" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Skinuć" @@ -10591,32 +10585,20 @@ msgstr "" #~ "Statystyka zapytaŭ: Z momantu zapusku %s zapytaŭ było adpraŭlena na " #~ "server." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Typ zapytu" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Dadać novaha karystalnika" -#, fuzzy -#~| msgid "Create" #~ msgid "Create User" #~ msgstr "Stvaryć" diff --git a/po/bg.po b/po/bg.po index d7f7fde74c..31f0ff6c42 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-14 08:31+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" @@ -9735,8 +9735,6 @@ msgstr "Име на ИЗГЛЕД" msgid "Rename view to" msgstr "Преименуване на изгледа на" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "секунда" diff --git a/po/bn.po b/po/bn.po index aef95fdb63..788d4e84b2 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" @@ -10468,13 +10468,9 @@ msgstr "" msgid "Rename view to" msgstr "টেবিল রিনেম করুন" -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "per second" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "Query results operations" @@ -10488,8 +10484,6 @@ msgstr "টেবিল রিনেম করুন" #~ msgid "Show processes" #~ msgstr "প্রসেসসমূহ দেখান" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "রিসেট করুন" @@ -10508,31 +10502,20 @@ msgstr "টেবিল রিনেম করুন" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "The privileges were reloaded successfully." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Query type" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "একটি নতুন ইউজার যোগ করুন" -#, fuzzy #~ msgid "Create User" #~ msgstr "Server version" diff --git a/po/bs.po b/po/bs.po index 5e2c0a120e..e4ef7e5a38 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" diff --git a/po/ca.po b/po/ca.po index d08a9f363d..125ee0bef8 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" @@ -10400,8 +10400,6 @@ msgstr "Nom de VISTA" msgid "Rename view to" msgstr "Reanomena la vista a" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Segon" diff --git a/po/cs.po b/po/cs.po index 44b43ba4a4..e4e22b5e17 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-17 10:49+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" @@ -2447,8 +2447,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Tajné heslo používané pro šifrování cookies při přihlašování pomocí " -"[kbd]cookie[/kbd]" +"Tajné heslo používané pro šifrování cookies při přihlašování pomocí [kbd]" +"cookie[/kbd]" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" @@ -4464,8 +4464,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Povolí [a@http://cs.wikipedia.org/wiki/ZIP_%28souborov%C3%BD_form%C3%A1t%" -"29]ZIP[/a] kompresi pro import a export" +"Povolí [a@http://cs.wikipedia.org/wiki/ZIP_%28souborov%C3%BD_form%C3%A1t%29]" +"ZIP[/a] kompresi pro import a export" #: libraries/config/messages.inc.php:512 msgid "ZIP" @@ -8201,7 +8201,6 @@ msgstr "Obnovovací frekvence" #: server_status.php:31 #, php-format -#| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minuta" @@ -8210,7 +8209,6 @@ msgstr[2] "%d minut" #: server_status.php:33 #, php-format -#| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekunda" @@ -8299,12 +8297,10 @@ msgid "All status variables" msgstr "Všechny stavové proměnné" #: server_status.php:455 -#| msgid "Do not change the password" msgid "Containing the word:" msgstr "Obsahující slovo:" #: server_status.php:460 -#| msgid "Show open tables" msgid "Show only alert values" msgstr "Zobrazit jen hodnoty s upozorněním" @@ -8313,7 +8309,6 @@ msgid "Filter by category..." msgstr "Filtrovat podle kategorie..." #: server_status.php:477 -#| msgid "Related Links" msgid "Related links:" msgstr "Související odkazy:" @@ -8420,7 +8415,6 @@ msgid "ID" msgstr "ID" #: server_status.php:849 -#| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Počet chybných připojení k MySQL serveru." @@ -9620,7 +9614,6 @@ msgid "Line" msgstr "Čára" #: tbl_chart.php:88 -#| msgid "Inline" msgid "Spline" msgstr "Křivka" @@ -9633,7 +9626,6 @@ msgid "Stacked" msgstr "Skládané" #: tbl_chart.php:94 -#| msgid "Report title:" msgid "Chart title" msgstr "Název grafu" @@ -9642,32 +9634,26 @@ msgid "X-Axis:" msgstr "Osa X:" #: tbl_chart.php:113 -#| msgid "SQL queries" msgid "Series:" msgstr "Série:" #: tbl_chart.php:115 -#| msgid "Textarea columns" msgid "The remaining columns" msgstr "Zbývající sloupce" #: tbl_chart.php:128 -#| msgid "X Axis label" msgid "X-Axis label:" msgstr "Popis osy X:" #: tbl_chart.php:128 -#| msgid "Value" msgid "X Values" msgstr "Hodnoty X" #: tbl_chart.php:129 -#| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Popis osy Y:" #: tbl_chart.php:129 -#| msgid "Value" msgid "Y Values" msgstr "Hodnoty Y" @@ -10203,8 +10189,6 @@ msgstr "Jméno pohledu" msgid "Rename view to" msgstr "Přejmenovat pohled na" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Sekundy" diff --git a/po/cy.po b/po/cy.po index e8c2824c82..56fea23702 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-05-19 21:21+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: Welsh \n" "Language: cy\n" "MIME-Version: 1.0\n" @@ -9962,28 +9962,18 @@ msgstr "Enw VIEW" msgid "Rename view to" msgstr "Ailenwch golwg i" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Eiliad" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "Gweithrediadau canlyniadau ymholiad" -#, fuzzy -#~| msgid "Export" #~ msgid "Bar type" #~ msgstr "Allforio" -#, fuzzy -#~| msgid "Add a new server" #~ msgid "Add a New User" #~ msgstr "Ychwanegwch weinydd newydd" -#, fuzzy -#~| msgid "Create version" #~ msgid "Create User" #~ msgstr "Crëwch fersiwn" diff --git a/po/da.po b/po/da.po index 1f4f5c4fba..519481931c 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-03-07 01:17+0200\n" "Last-Translator: \n" "Language-Team: danish \n" @@ -96,7 +96,7 @@ msgstr "Brug denne værdi" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 #: libraries/blobstreaming.lib.php:331 msgid "No blob streaming server configured!" -msgstr "" +msgstr "Ingen blob streaming server konfigureret!" #: bs_disp_as_mime_type.php:35 msgid "Failed to fetch headers" @@ -112,6 +112,7 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" +"Filen %s er ikke tilgængelig, besøg www.phpmyadmin.net for mere information." #: db_create.php:58 #, php-format @@ -337,16 +338,12 @@ msgid "Collation" msgstr "Kollation (Collation)" #: db_operations.php:565 -#, fuzzy, php-format -#| msgid "" -#| "The additional features for working with linked tables have been " -#| "deactivated. To find out why click %shere%s." +#, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"De ekstra features for at arbejde med linkede tabeller er deaktiveret. For " -"at se hvorfor, klik %sher%s." +"phpMyAdmin er ikke sat op til at gemme tabel-relationer. Se her %shvorfor%s." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -536,10 +533,9 @@ msgid "Browse" msgstr "Vis" #: db_search.php:261 -#, fuzzy, php-format -#| msgid "Dumping data for table" +#, php-format msgid "Delete the matches for the %s table?" -msgstr "Data dump for tabellen" +msgstr "Slet match for %s tabellen" #: db_search.php:261 libraries/display_tbl.lib.php:1302 #: libraries/display_tbl.lib.php:2272 @@ -554,12 +550,11 @@ msgid "Delete" msgstr "Slet" #: db_search.php:274 -#, fuzzy, php-format -#| msgid "Total: %s match(es)" +#, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" -msgstr[0] "Total: %s hit(s)" -msgstr[1] "Total: %s hit(s)" +msgstr[0] "I alt: %s hit" +msgstr[1] "I alt %s hits" #: db_search.php:297 msgid "Search in database" @@ -582,16 +577,12 @@ msgid "Inside table(s):" msgstr "Indeni tabel(ler):" #: db_search.php:353 -#, fuzzy -#| msgid "Inside table(s):" msgid "Inside column:" -msgstr "Indeni tabel(ler):" +msgstr "Indeni kolonne:" #: db_structure.php:60 -#, fuzzy -#| msgid "No tables found in database." msgid "No tables found in database" -msgstr "Ingen tabeller fundet i databasen." +msgstr "Ingen tabeller fundet i databasen" #: db_structure.php:278 tbl_operations.php:688 #, php-format @@ -610,11 +601,11 @@ msgstr "Tabel %s er slettet" #: db_structure.php:294 tbl_create.php:295 msgid "Tracking is active." -msgstr "" +msgstr "Sporing er aktiv." #: db_structure.php:296 tbl_create.php:297 msgid "Tracking is not active." -msgstr "" +msgstr "Sporing er ikke aktiv." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format @@ -712,19 +703,15 @@ msgstr "Analysér tabel" #: db_structure.php:522 msgid "Add prefix to table" -msgstr "" +msgstr "Tilføj præfiks til tabel" #: db_structure.php:524 libraries/mult_submits.inc.php:246 -#, fuzzy -#| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "Erstat data i tabellen med filens data" +msgstr "Erstat tabel præfiks" #: db_structure.php:526 libraries/mult_submits.inc.php:246 -#, fuzzy -#| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "Erstat data i tabellen med filens data" +msgstr "Kopier tabel med præfiks" #: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" @@ -732,7 +719,7 @@ msgstr "Data Dictionary" #: db_tracking.php:79 msgid "Tracked tables" -msgstr "" +msgstr "Sporede tabeller" #: db_tracking.php:84 libraries/config/messages.inc.php:491 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 @@ -749,15 +736,15 @@ msgstr "Database" #: db_tracking.php:86 msgid "Last version" -msgstr "" +msgstr "Seneste version" #: db_tracking.php:87 tbl_tracking.php:645 msgid "Created" -msgstr "" +msgstr "Oprettet" #: db_tracking.php:88 tbl_tracking.php:646 msgid "Updated" -msgstr "" +msgstr "Opdateret" #: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 @@ -773,49 +760,49 @@ msgstr "Handling" #: db_tracking.php:101 js/messages.php:36 msgid "Delete tracking data for this table" -msgstr "" +msgstr "Sletter sporingsdata for denne tabel." #: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657 msgid "active" -msgstr "" +msgstr "aktiv" #: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659 msgid "not active" -msgstr "" +msgstr "ikke aktiv" #: db_tracking.php:134 msgid "Versions" -msgstr "" +msgstr "Versioner" #: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676 msgid "Tracking report" -msgstr "" +msgstr "Sporingsrapport" #: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676 msgid "Structure snapshot" -msgstr "" +msgstr "Øjebliksbillede af struktur" #: db_tracking.php:181 msgid "Untracked tables" -msgstr "" +msgstr "Ikke-sporede tabeller" #: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622 #: tbl_structure.php:624 msgid "Track table" -msgstr "" +msgstr "Spor tabel" #: db_tracking.php:229 msgid "Database Log" -msgstr "" +msgstr "Database log" #: enum_editor.php:21 libraries/tbl_properties.inc.php:792 #, php-format msgid "Values for the column \"%s\"" -msgstr "" +msgstr "Værdier for kolonnen \"%s\"" #: enum_editor.php:22 libraries/tbl_properties.inc.php:793 msgid "Enter each value in a separate field." -msgstr "" +msgstr "Indtast hver værdi i et seperat felt." #: enum_editor.php:57 msgid "+ Restart insertion and add a new value" @@ -954,11 +941,11 @@ msgstr "" #: server_synchronize.php:734 server_synchronize.php:762 #: server_synchronize.php:790 server_synchronize.php:802 msgid "Click to select" -msgstr "" +msgstr "Klik for at vælge" #: js/messages.php:26 msgid "Click to unselect" -msgstr "" +msgstr "Klik for at fravælge" #: js/messages.php:27 libraries/import.lib.php:103 sql.php:213 msgid "\"DROP DATABASE\" statements are disabled." @@ -973,10 +960,8 @@ msgid "You are about to DESTROY a complete database!" msgstr "Du er ved at DESTRUERE en komplet database!" #: js/messages.php:32 -#, fuzzy -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "Du er ved at DESTRUERE en komplet database!" +msgstr "Du er ved at DESTRUERE en komplet tabel!" #: js/messages.php:33 #, fuzzy @@ -995,14 +980,12 @@ msgid "Dropping Procedure" msgstr "Procedurer" #: js/messages.php:37 -#, fuzzy -#| msgid "Allows inserting and replacing data." msgid "Deleting tracking data" -msgstr "Tillader indsættelse og erstatning af data." +msgstr "Slet sporingsdata" #: js/messages.php:38 msgid "Dropping Primary Key/Index" -msgstr "" +msgstr "Fjerner primærnøgle/indeks" #: js/messages.php:39 msgid "This operation could take a long time. Proceed anyway?" @@ -1056,21 +1039,17 @@ msgid "Add user" msgstr "Enhver bruger" #: js/messages.php:59 -#, fuzzy -#| msgid "Reloading the privileges" msgid "Reloading Privileges" -msgstr "Genindlæs privilegierne" +msgstr "Genindlæser privillegier" #: js/messages.php:60 -#, fuzzy -#| msgid "Remove selected users" msgid "Removing Selected Users" -msgstr "Fjern valgte brugere" +msgstr "Fjerner valge brugere" #: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" -msgstr "" +msgstr "Luk" #: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1145 @@ -1161,10 +1140,8 @@ msgid "Issued queries" msgstr "" #: js/messages.php:89 server_status.php:401 -#, fuzzy -#| msgid "Databases statistics" msgid "Query statistics" -msgstr "Databasestatistik" +msgstr "Statistik over forespørgsler" #: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 @@ -1174,17 +1151,15 @@ msgstr "Annuller" #: js/messages.php:96 msgid "Loading" -msgstr "" +msgstr "Indlæser" #: js/messages.php:97 -#, fuzzy -#| msgid "Processes" msgid "Processing Request" -msgstr "Processer" +msgstr "Udfører forespørgsel" #: js/messages.php:98 libraries/import/ods.php:80 msgid "Error in Processing Request" -msgstr "" +msgstr "Felj i udførsel af forespørgsel" #: js/messages.php:99 msgid "Dropping Column" @@ -1192,7 +1167,7 @@ msgstr "" #: js/messages.php:100 msgid "Adding Primary Key" -msgstr "" +msgstr "Tilføjer primær nøgle" #: js/messages.php:101 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 @@ -1213,22 +1188,16 @@ msgid "Reload Database" msgstr "Omdøb database til" #: js/messages.php:106 -#, fuzzy -#| msgid "Copy database to" msgid "Copying Database" -msgstr "Kopiér database til" +msgstr "Kopierer database til" #: js/messages.php:107 -#, fuzzy -#| msgid "Charset" msgid "Changing Charset" -msgstr "Tegnsæt" +msgstr "Ændrer tegnsæt" #: js/messages.php:108 -#, fuzzy -#| msgid "Table must have at least one field." msgid "Table must have at least one column" -msgstr "Tabellen skal indeholde mindst ét felt." +msgstr "Tabellen skal have mindst en kolonne" #: js/messages.php:109 #, fuzzy @@ -1243,22 +1212,16 @@ msgid "Insert Table" msgstr "Benyt tabeller" #: js/messages.php:117 -#, fuzzy -#| msgid "Search" msgid "Searching" -msgstr "Søg" +msgstr "Søger" #: js/messages.php:118 -#, fuzzy -#| msgid "in query" msgid "Hide search results" -msgstr "i forespørgsel" +msgstr "Slet søgeresultater" #: js/messages.php:119 -#, fuzzy -#| msgid "Showing SQL query" msgid "Show search results" -msgstr "Viser SQL-forespørgsel" +msgstr "Vis søgeresultater" #: js/messages.php:120 #, fuzzy @@ -1267,33 +1230,26 @@ msgid "Browsing" msgstr "Vis" #: js/messages.php:121 -#, fuzzy -#| msgid "Deleting %s" msgid "Deleting" -msgstr "Sletter %s" +msgstr "Sletter" #: js/messages.php:124 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" +"Note: Hvis filen indeholder flere tabeller, vil de blive kombineret til én." #: js/messages.php:127 -#, fuzzy -#| msgid "in query" msgid "Hide query box" -msgstr "i forespørgsel" +msgstr "Skjul forespørgeselsboks" #: js/messages.php:128 -#, fuzzy -#| msgid "Showing SQL query" msgid "Show query box" -msgstr "Viser SQL-forespørgsel" +msgstr "Vis forespørgselsbox" #: js/messages.php:129 -#, fuzzy -#| msgid "Engines" msgid "Inline Edit" -msgstr "Lagre" +msgstr "Åben redigeringslinje" #: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 @@ -1309,16 +1265,12 @@ msgid "Hide" msgstr "Skjul" #: js/messages.php:135 -#, fuzzy -#| msgid "in query" msgid "Hide search criteria" -msgstr "i forespørgsel" +msgstr "Skjul søgekriterie" #: js/messages.php:136 -#, fuzzy -#| msgid "Showing SQL query" msgid "Show search criteria" -msgstr "Viser SQL-forespørgsel" +msgstr "Vis søgekriterie" #: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 @@ -1338,42 +1290,36 @@ msgid "Please select the primary key or a unique key" msgstr "Vælg venligst den primære nøgle eller en unik nøgle" #: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 -#, fuzzy -#| msgid "Choose field to display" msgid "Choose column to display" -msgstr "Vælg felt der skal vises" +msgstr "Vælg kolonne til visning" #: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" +"Du har ikke gemt ændringerne i layoutet. De vil bleve slettet hvis du ikke " +"gemmer dem. Vil du fortsætte?" #: js/messages.php:149 msgid "Add an option for column " -msgstr "" +msgstr "Tilføj mulighed for kolonne" #: js/messages.php:152 -#, fuzzy -#| msgid "Generate Password" msgid "Generate password" -msgstr "Generér Kodeord" +msgstr "Generér adgangskode" #: js/messages.php:153 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generér" #: js/messages.php:154 -#, fuzzy -#| msgid "Change password" msgid "Change Password" -msgstr "Ændre kodeord" +msgstr "Ændre adgangskode" #: js/messages.php:157 tbl_structure.php:471 -#, fuzzy -#| msgid "Mon" msgid "More" -msgstr "man" +msgstr "Mere" #: js/messages.php:160 setup/lib/index.lib.php:158 #, php-format @@ -1381,11 +1327,13 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" +"En nyere version af phpMyAdmin er tilgængelig og du bør overveje at " +"opgradere. Den nyeste version er %s, udgivet den %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:162 msgid ", latest stable version:" -msgstr "" +msgstr ", seneste stabile version:" #: js/messages.php:163 #, fuzzy @@ -1395,10 +1343,8 @@ msgstr "Ingen databaser" #. l10n: Display text for calendar close link #: js/messages.php:181 -#, fuzzy -#| msgid "None" msgid "Done" -msgstr "Ingen" +msgstr "Færdig" #. l10n: Display text for previous month link in calendar #: js/messages.php:183 @@ -1417,72 +1363,56 @@ msgstr "Næste" #. l10n: Display text for current month link in calendar #: js/messages.php:187 -#, fuzzy -#| msgid "Total" msgid "Today" -msgstr "Total" +msgstr "I dag" #: js/messages.php:190 -#, fuzzy -#| msgid "Binary" msgid "January" -msgstr " Binært " +msgstr "januar" #: js/messages.php:191 msgid "February" -msgstr "" +msgstr "februar" #: js/messages.php:192 -#, fuzzy -#| msgid "Mar" msgid "March" -msgstr "mar" +msgstr "marts" #: js/messages.php:193 -#, fuzzy -#| msgid "Apr" msgid "April" -msgstr "apr" +msgstr "april" #: js/messages.php:194 msgid "May" msgstr "maj" #: js/messages.php:195 -#, fuzzy -#| msgid "Jun" msgid "June" -msgstr "jun" +msgstr "juni" #: js/messages.php:196 -#, fuzzy -#| msgid "Jul" msgid "July" -msgstr "jul" +msgstr "juli" #: js/messages.php:197 -#, fuzzy -#| msgid "Aug" msgid "August" -msgstr "aug" +msgstr "august" #: js/messages.php:198 msgid "September" -msgstr "" +msgstr "september" #: js/messages.php:199 -#, fuzzy -#| msgid "Oct" msgid "October" -msgstr "okt" +msgstr "oktober" #: js/messages.php:200 msgid "November" -msgstr "" +msgstr "november" #: js/messages.php:201 msgid "December" -msgstr "" +msgstr "december" #. l10n: Short month name #: js/messages.php:205 libraries/common.lib.php:1512 @@ -1548,22 +1478,16 @@ msgid "Dec" msgstr "dec" #: js/messages.php:230 -#, fuzzy -#| msgid "Sun" msgid "Sunday" -msgstr "søn" +msgstr "søndag" #: js/messages.php:231 -#, fuzzy -#| msgid "Mon" msgid "Monday" -msgstr "man" +msgstr "mandag" #: js/messages.php:232 -#, fuzzy -#| msgid "Tue" msgid "Tuesday" -msgstr "tir" +msgstr "tirsdag" #: js/messages.php:233 msgid "Wednesday" @@ -1620,73 +1544,55 @@ msgstr "lør" #. l10n: Minimal week day name #: js/messages.php:256 -#, fuzzy -#| msgid "Sun" msgid "Su" -msgstr "søn" +msgstr "sø" #. l10n: Minimal week day name #: js/messages.php:258 -#, fuzzy -#| msgid "Mon" msgid "Mo" -msgstr "man" +msgstr "ma" #. l10n: Minimal week day name #: js/messages.php:260 -#, fuzzy -#| msgid "Tue" msgid "Tu" -msgstr "tir" +msgstr "ti" #. l10n: Minimal week day name #: js/messages.php:262 -#, fuzzy -#| msgid "Wed" msgid "We" -msgstr "ons" +msgstr "on" #. l10n: Minimal week day name #: js/messages.php:264 -#, fuzzy -#| msgid "Thu" msgid "Th" -msgstr "tor" +msgstr "to" #. l10n: Minimal week day name #: js/messages.php:266 -#, fuzzy -#| msgid "Fri" msgid "Fr" -msgstr "fre" +msgstr "fr" #. l10n: Minimal week day name #: js/messages.php:268 -#, fuzzy -#| msgid "Sat" msgid "Sa" -msgstr "lør" +msgstr "lø" #. l10n: Column header for week of the year in calendar #: js/messages.php:270 msgid "Wk" -msgstr "" +msgstr "uge" #: js/messages.php:272 msgid "Hour" -msgstr "" +msgstr "Time" #: js/messages.php:273 -#, fuzzy -#| msgid "in use" msgid "Minute" -msgstr "i brug" +msgstr "Minut" #: js/messages.php:274 -#, fuzzy -#| msgid "per second" msgid "Second" -msgstr "pr. sekund" +msgstr "Sekund" #: libraries/Config.class.php:1190 msgid "Font size" @@ -1747,7 +1653,7 @@ msgstr "Unik" #: libraries/Index.class.php:444 tbl_tracking.php:316 msgid "Packed" -msgstr "" +msgstr "Pakket" #: libraries/Index.class.php:446 tbl_tracking.php:318 msgid "Cardinality" @@ -1755,7 +1661,7 @@ msgstr "Kardinalitet" #: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321 msgid "Comment" -msgstr "" +msgstr "Kommentar" #: libraries/Index.class.php:471 msgid "The primary key has been dropped" @@ -1772,6 +1678,8 @@ msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" +"Indeks %1$ ser ud til at være identisk med indeks %2$, så et af dem kan " +"sikkert fjernes" #: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:100 @@ -1790,40 +1698,34 @@ msgstr "Fejl" #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d række påvirket" +msgstr[1] "%1$d rækker påvirket" #: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "No rows selected" +#, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." -msgstr[0] "Ingen rækker valgt" -msgstr[1] "Ingen rækker valgt" +msgstr[0] "%1$d række slettet" +msgstr[1] "%1$d rækker slettet" #: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "No rows selected" +#, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." -msgstr[0] "Ingen rækker valgt" -msgstr[1] "Ingen rækker valgt" +msgstr[0] "%1$d række sat ind" +msgstr[1] "%1$d rækker sat ind" #: libraries/RecentTable.class.php:113 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" -msgstr "Kunne ikke indlæse standardkonfiguration fra: \"%1$s\"" +msgstr "Kunne ikke gemme seneste tabel" #: libraries/RecentTable.class.php:148 -#, fuzzy -#| msgid "Select Tables" msgid "Recent tables" -msgstr "Vælg Tabeller" +msgstr "Seneste tabeller" #: libraries/RecentTable.class.php:154 msgid "There are no recent tables" -msgstr "" +msgstr "Der er ingen nye tabeller" #: libraries/StorageEngine.class.php:194 msgid "" @@ -1867,7 +1769,7 @@ msgstr "Tabellen %s er nu omdøbt til %s" #: libraries/Table.class.php:1272 msgid "Could not save table UI preferences" -msgstr "" +msgstr "Kunne ikke gemme brugerindstillinger for tabel" #: libraries/Theme.class.php:160 #, php-format @@ -1949,6 +1851,8 @@ msgstr "phpMyAdmin dokumentation" #: libraries/auth/cookie.auth.lib.php:244 msgid "You can enter hostname/IP address and port separated by space." msgstr "" +"Du kan angive værtsnavn/IP adresse og port ved at adskille dem med et " +"mellemrum" #: libraries/auth/cookie.auth.lib.php:243 msgid "Server:" @@ -1975,6 +1879,8 @@ msgstr "Herefter skal cookies være slået til." msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" +"Det er ifølge konfigurationen ikke tilladt at logge ind uden en adgangskkode " +"(se AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:647 #: libraries/auth/signon.auth.lib.php:238 @@ -1995,17 +1901,17 @@ msgstr "Forkert brugernavn/kodeord. Adgang nægtet." #: libraries/auth/signon.auth.lib.php:87 msgid "Can not find signon authentication script:" -msgstr "" +msgstr "Kunne ikke finde skriptet til godkendelse af log ind" #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format msgid "File %s does not contain any key id" -msgstr "" +msgstr "Filen %s indeholder ikke noget nøgle-id" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 msgid "Hardware authentication failed" -msgstr "" +msgstr "Godkendelse af hardware mislykkedes" #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" @@ -2013,50 +1919,48 @@ msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 msgid "Authenticating..." -msgstr "" +msgstr "Godkender..." #: libraries/blobstreaming.lib.php:241 msgid "PBMS error" -msgstr "" +msgstr "PBMS-fejl" #: libraries/blobstreaming.lib.php:267 -#, fuzzy -#| msgid "MySQL connection collation" msgid "PBMS connection failed:" -msgstr "MySQL forbindelses-sammenkøring" +msgstr "Det lykkedes ikke at oprette forbindelse til PBMS" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" -msgstr "" +msgstr "PBMS hent BLOB info mislykkedes" #: libraries/blobstreaming.lib.php:320 msgid "get BLOB Content-Type failed" -msgstr "" +msgstr "hent BLOB Content-Type mislykkedes" #: libraries/blobstreaming.lib.php:347 msgid "View image" -msgstr "" +msgstr "Se billede" #: libraries/blobstreaming.lib.php:351 msgid "Play audio" -msgstr "" +msgstr "Afspil lyd" #: libraries/blobstreaming.lib.php:356 msgid "View video" -msgstr "" +msgstr "Se video" #: libraries/blobstreaming.lib.php:360 msgid "Download file" -msgstr "" +msgstr "Download fil" #: libraries/blobstreaming.lib.php:421 #, php-format msgid "Could not open file: %s" -msgstr "" +msgstr "Kunne ikke åbne filen %s" #: libraries/bookmark.lib.php:83 msgid "shared" -msgstr "" +msgstr "delt" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 @@ -2083,20 +1987,16 @@ msgid "Overhead" msgstr "Overhead" #: libraries/build_html_for_db.lib.php:93 -#, fuzzy -#| msgid "No databases" msgid "Jump to database" -msgstr "Ingen databaser" +msgstr "Gå til database" #: libraries/build_html_for_db.lib.php:130 msgid "Not replicated" -msgstr "" +msgstr "Ikke gentaget" #: libraries/build_html_for_db.lib.php:136 -#, fuzzy -#| msgid "Replication" msgid "Replicated" -msgstr "Replikering" +msgstr "Gentaget" #: libraries/build_html_for_db.lib.php:150 #, php-format @@ -2123,10 +2023,9 @@ msgstr "" "eller et semikolon et sted.
Hvis du får en blank side, er alt i orden." #: libraries/common.inc.php:586 -#, fuzzy, php-format -#| msgid "Could not load default configuration from: \"%1$s\"" +#, php-format msgid "Could not load default configuration from: %1$s" -msgstr "Kunne ikke indlæse standardkonfiguration fra: \"%1$s\"" +msgstr "Kunne ikke indlæse standardkonfiguration fra: %1$s" #: libraries/common.inc.php:591 msgid "" @@ -2137,10 +2036,9 @@ msgstr "" "konfigurationsfil!" #: libraries/common.inc.php:621 -#, fuzzy, php-format -#| msgid "Invalid server index: \"%s\"" +#, php-format msgid "Invalid server index: %s" -msgstr "Ugyldigt server indeks: \"%s\"" +msgstr "Server indekset %s er ugyldigt" #: libraries/common.inc.php:628 #, php-format @@ -2208,7 +2106,7 @@ msgstr "MySQL returnerede: " #: libraries/common.lib.php:1079 msgid "Failed to connect to SQL validator!" -msgstr "" +msgstr "Kunne ikke oprette forbindelse til SQL validator!" #: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472 msgid "Explain SQL" @@ -2241,17 +2139,15 @@ msgstr "Validér SQL" #: libraries/common.lib.php:1246 msgid "Inline edit of this query" -msgstr "" +msgstr "Åben linje til redigering af forespørgslen" #: libraries/common.lib.php:1248 -#, fuzzy -#| msgid "Engines" msgid "Inline" -msgstr "Lagre" +msgstr "I linje" #: libraries/common.lib.php:1315 sql.php:921 msgid "Profiling" -msgstr "" +msgstr "Skitsering" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ #: libraries/common.lib.php:1335 @@ -2354,13 +2250,12 @@ msgstr "Operationer" #: libraries/common.lib.php:2901 msgid "Browse your computer:" -msgstr "" +msgstr "Gennemse din computer" #: libraries/common.lib.php:2917 -#, fuzzy, php-format -#| msgid "web server upload directory" +#, php-format msgid "Select from the web server upload directory %s:" -msgstr "webserver upload-mappe" +msgstr "Vælg fra %s - webserverens upload-mappe" #: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 @@ -2369,41 +2264,39 @@ msgstr "Mappen du har sat til upload-arbejde kan ikke findes" #: libraries/common.lib.php:2937 msgid "There are no files to upload" -msgstr "" +msgstr "Der er ikke nogen filer at uploade" #: libraries/config.values.php:45 libraries/config.values.php:47 #: libraries/config.values.php:51 msgid "Both" -msgstr "" +msgstr "Begge" #: libraries/config.values.php:47 msgid "Nowhere" -msgstr "" +msgstr "Ingen steder" #: libraries/config.values.php:47 msgid "Left" -msgstr "" +msgstr "Venstre" #: libraries/config.values.php:47 msgid "Right" -msgstr "" +msgstr "Højre" #: libraries/config.values.php:75 msgid "Open" -msgstr "" +msgstr "Åben" #: libraries/config.values.php:75 -#, fuzzy -#| msgid "Unclosed quote" msgid "Closed" -msgstr "Ikke-lukket quote" +msgstr "Lukket" #: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:121 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" -msgstr "" +msgstr "struktur" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 @@ -2421,109 +2314,104 @@ msgstr "Struktur og data" #: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" -msgstr "" +msgstr "Hurtig - vis kun de mest nødvendige konfigurationsmuligheder" #: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" -msgstr "" +msgstr "Brugerdefineret - vis alle valgmuligheder for konfigurering" #: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" +"Brugerdefineret - som ovenfor, men uden valgmuligheder for hurtig/" +"brugerdefineret" #: libraries/config.values.php:120 -#, fuzzy -#| msgid "Complete inserts" msgid "complete inserts" -msgstr "Komplette inserts" +msgstr "Komplette indsættelser" #: libraries/config.values.php:121 -#, fuzzy -#| msgid "Extended inserts" msgid "extended inserts" -msgstr "Udvidede inserts" +msgstr "Udvidede indsættelser" #: libraries/config.values.php:122 msgid "both of the above" -msgstr "" +msgstr "Begge de ovenfor anførte" #: libraries/config.values.php:123 msgid "neither of the above" -msgstr "" +msgstr "Ingen af de ovenfor anførte" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:422 msgid "Not a positive number" -msgstr "" +msgstr "Ikke et positivt tal" #: libraries/config/FormDisplay.class.php:84 #: libraries/config/validate.lib.php:435 msgid "Not a non-negative number" -msgstr "" +msgstr "Ikke et ikke-negativt tal" #: libraries/config/FormDisplay.class.php:85 #: libraries/config/validate.lib.php:409 msgid "Not a valid port number" -msgstr "" +msgstr "Ikke et gyldigt port-nummer" #: libraries/config/FormDisplay.class.php:86 #: libraries/config/FormDisplay.class.php:574 #: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450 msgid "Incorrect value" -msgstr "" +msgstr "Ukorrekt værdi" #: libraries/config/FormDisplay.class.php:87 #: libraries/config/validate.lib.php:464 #, php-format msgid "Value must be equal or lower than %s" -msgstr "" +msgstr "Værdien skal være mindre end eller lig med %s" #: libraries/config/FormDisplay.class.php:538 #, php-format msgid "Missing data for %s" -msgstr "" +msgstr "Manglende data for %s" #: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:740 -#, fuzzy -#| msgid "Variable" msgid "unavailable" -msgstr "Variabel" +msgstr "ikke tilgængelig" #: libraries/config/FormDisplay.class.php:737 #: libraries/config/FormDisplay.class.php:741 #, php-format msgid "\"%s\" requires %s extension" -msgstr "" +msgstr "\"%s\" er afhængig af udvidelsen %s" #: libraries/config/FormDisplay.class.php:755 #, php-format msgid "import will not work, missing function (%s)" -msgstr "" +msgstr "importeringen kommer ikke til at fungere, funktionen (%s) mangler" #: libraries/config/FormDisplay.class.php:759 #, php-format msgid "export will not work, missing function (%s)" -msgstr "" +msgstr "eksporten kommer ikke til at fungere, funktionen (%s) mangler" #: libraries/config/FormDisplay.class.php:766 msgid "SQL Validator is disabled" -msgstr "" +msgstr "SQL Validator er deaktiveret" #: libraries/config/FormDisplay.class.php:773 -#, fuzzy -#| msgid "Link not found" msgid "SOAP extension not found" -msgstr "Link ikke fundet" +msgstr "SOAP-udvidelse ikke fundet" #: libraries/config/FormDisplay.class.php:781 #, php-format msgid "maximum %s" -msgstr "" +msgstr "maksimum %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" +"Denne indstilling er deaktiveret og din konfiguration vil ikke anvende den" #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89 #: libraries/relation.lib.php:96 pmd_relation_new.php:68 @@ -2533,16 +2421,16 @@ msgstr "Slået fra" #: libraries/config/FormDisplay.tpl.php:248 #, php-format msgid "Set value: %s" -msgstr "" +msgstr "Indstil værdien %s" #: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/messages.inc.php:356 msgid "Restore default value" -msgstr "" +msgstr "Gendan standardværdi" #: libraries/config/FormDisplay.tpl.php:269 msgid "Allow users to customize this value" -msgstr "" +msgstr "Tillad brugerdefinerede indstillinger for værdien" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320 @@ -2552,22 +2440,22 @@ msgstr "Nulstil" #: libraries/config/messages.inc.php:17 msgid "Improves efficiency of screen refresh" -msgstr "" +msgstr "Forbedrer ydeevnen for skærmopdatering" #: libraries/config/messages.inc.php:18 -#, fuzzy -#| msgid "Enabled" msgid "Enable Ajax" -msgstr "Slået til" +msgstr "Aktivér Ajax" #: libraries/config/messages.inc.php:19 msgid "" "If enabled user can enter any MySQL server in login form for cookie auth" msgstr "" +"Aktivering medfører, at brugeren kan tilgå en hvilken som helst MySQL-server " +"fra log ind-siden ved cookie-godkendelse" #: libraries/config/messages.inc.php:20 msgid "Allow login to any MySQL server" -msgstr "" +msgstr "Tillad log ind til en hvilken som helst MySQL-server" #: libraries/config/messages.inc.php:21 msgid "" @@ -2575,46 +2463,53 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" +"Aktivering indebærer, at en side, som ligger på et andet domæne, har adgang " +"til at kalde phpMyAdmin fra en frame. Det er en potentiel sikkerhedsrisiko, " +"fordi det åbner op for cross-frame skripting angreb" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" -msgstr "" +msgstr "Tillad rammeværk fra tredjepart" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" -msgstr "" +msgstr "Vis linket "Drop database" til almindelige brugere" #: libraries/config/messages.inc.php:24 msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" +"Hemmeligt kodeordsudtryk til kryptering af cookies ved [kbd]cookie[/kbd] " +"godkendelse" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" -msgstr "" +msgstr "Blowfish hemmelighed" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" -msgstr "" +msgstr "Fremhæv valgte rækker" #: libraries/config/messages.inc.php:27 msgid "Row marker" -msgstr "" +msgstr "Rækkemarkør" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" -msgstr "" +msgstr "Fremhæv den række, som musemarkøren peger på" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" -msgstr "" +msgstr "Fremhæv pointer" #: libraries/config/messages.inc.php:30 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" +"Aktivér komprimering af [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] ved " +"import -og eksport arbejdsgange" #: libraries/config/messages.inc.php:31 msgid "Bzip2" @@ -2626,173 +2521,179 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns" msgstr "" +"Definerer typen af redigeringskontroller som skal anvendes i CHAR -og " +"VARCHAR-kolonner. [kbd]input[/kbd] - tillader begrænsning i længden af " +"input, [kbd]textarea[/kbd] - tillader linjeskift i kolonner" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" -msgstr "" +msgstr "Redigering af CHAR-kolonner" #: libraries/config/messages.inc.php:34 msgid "Number of columns for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Bredde på CHAR/VARCHAR tekstbokse" #: libraries/config/messages.inc.php:35 msgid "CHAR textarea columns" -msgstr "" +msgstr "Bredde på tekstbokse" #: libraries/config/messages.inc.php:36 msgid "Number of rows for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Højde på CHAR/VARCHAR-tekstbokse" #: libraries/config/messages.inc.php:37 msgid "CHAR textarea rows" -msgstr "" +msgstr "Højde på CHAR-tekstbokse" #: libraries/config/messages.inc.php:38 msgid "Check config file permissions" -msgstr "" +msgstr "Tjek tilladelser på konfigurationsfil" #: libraries/config/messages.inc.php:39 msgid "" "Compress gzip/bzip2 exports on the fly without the need for much memory; if " "you encounter problems with created gzip/bzip2 files disable this feature" msgstr "" +"Pak gzip/bzip2-eksporter under eksporten uden behov for ret meget " +"hukommelse. Hvis du får problemer med de dannede gzip/bzip2-filer, så " +"deaktivér denne funktion" #: libraries/config/messages.inc.php:40 msgid "Compress on the fly" -msgstr "" +msgstr "Komprimér undervejs" #: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25 #: setup/frames/index.inc.php:165 msgid "Configuration file" -msgstr "" +msgstr "Konfigurationsfil" #: libraries/config/messages.inc.php:42 msgid "" "Whether a warning ("Are your really sure...") should be displayed " "when you're about to lose data" msgstr "" +"Hvorvidt der skal vises en advarsel ("Er du helt sikker...") , når " +"du er ved at miste data" #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" -msgstr "" +msgstr "Bekræft DROP-forespørgsler" #: libraries/config/messages.inc.php:44 msgid "Debug SQL" -msgstr "" +msgstr "Ret fejl i SQL" #: libraries/config/messages.inc.php:45 -#, fuzzy -#| msgid "Relational schema" msgid "Default display direction" -msgstr "Relationel skematik" +msgstr "Standardretning for visning" #: libraries/config/messages.inc.php:46 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" +"[kbd]horisontal[/kbd], [kbd]vertikal[/kbd] eller et tal, som angiver " +"maksimum for den anvendte vertikale model" #: libraries/config/messages.inc.php:47 msgid "Display direction for altering/creating columns" -msgstr "" +msgstr "Vis retning for kolonner, som redigeres/oprettes" #: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" -msgstr "" +msgstr "Fane der skal vises, når man går ind i en database" #: libraries/config/messages.inc.php:49 msgid "Default database tab" -msgstr "" +msgstr "Standard database-fane" #: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a server" -msgstr "" +msgstr "Fane, som skal vises, når man går ind på en server" #: libraries/config/messages.inc.php:51 msgid "Default server tab" -msgstr "" +msgstr "Standard server-fane" #: libraries/config/messages.inc.php:52 msgid "Tab that is displayed when entering a table" -msgstr "" +msgstr "Fane som skal vises, når man går ind i en tabel" #: libraries/config/messages.inc.php:53 msgid "Default table tab" -msgstr "" +msgstr "Standard tabel-fane" #: libraries/config/messages.inc.php:54 msgid "Show binary contents as HEX by default" -msgstr "" +msgstr "Som standard vises binært indhold som HEX" #: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629 msgid "Show binary contents as HEX" -msgstr "" +msgstr "Vis binært indhold som HEX" #: libraries/config/messages.inc.php:56 msgid "Show database listing as a list instead of a drop down" -msgstr "" +msgstr "Vis databaser på en liste i stedet for i en valgboks" #: libraries/config/messages.inc.php:57 msgid "Display databases as a list" -msgstr "" +msgstr "Vis databaser på en liste" #: libraries/config/messages.inc.php:58 msgid "Show server listing as a list instead of a drop down" -msgstr "" +msgstr "Vis servere på en liste i stedet for i en valgboks" #: libraries/config/messages.inc.php:59 msgid "Display servers as a list" -msgstr "" +msgstr "Vis servere på en liste" #: libraries/config/messages.inc.php:60 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" +"Deaktivér masseoperationer for tabelvedligeholdelse såsom optimering eller " +"reperation af tabllerne i en database" #: libraries/config/messages.inc.php:61 -#, fuzzy -#| msgid "Table maintenance" msgid "Disable multi table maintenance" -msgstr "Tabelvedligeholdelse" +msgstr "Deaktivér vedligeholdelse af flere tabeller" #: libraries/config/messages.inc.php:62 msgid "Edit SQL queries in popup window" -msgstr "" +msgstr "Redigér SQL-forespørgsler i et popup vindue" #: libraries/config/messages.inc.php:63 -#, fuzzy -#| msgid "Edit next row" msgid "Edit in window" -msgstr "Redigér næste række" +msgstr "Redigér i et vindue" #: libraries/config/messages.inc.php:64 -#, fuzzy -#| msgid "Display Features" msgid "Display errors" -msgstr "Vis muligheder" +msgstr "Vis fejl" #: libraries/config/messages.inc.php:65 msgid "Gather errors" -msgstr "" +msgstr "Indsaml fejl" #: libraries/config/messages.inc.php:66 msgid "Show icons for warning, error and information messages" -msgstr "" +msgstr "Vis ikoner i advarsels-, fejl-, og informationsmeddelelser" #: libraries/config/messages.inc.php:67 msgid "Iconic errors" -msgstr "" +msgstr "Ikon-fejl" #: libraries/config/messages.inc.php:68 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" +"Bestem antallet af sekunder, som et skript må være om at køre ([kbd]0[/kbd] " +"er lig med ingen tidsgrænse" #: libraries/config/messages.inc.php:69 msgid "Maximum execution time" -msgstr "" +msgstr "Maksimal ekspeditionstid" #: libraries/config/messages.inc.php:70 prefs_manage.php:299 msgid "Save as file" @@ -2800,7 +2701,7 @@ msgstr "Send (download)" #: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 msgid "Character set of the file" -msgstr "" +msgstr "Filens tegnsæt" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 #: tbl_printview.php:373 tbl_structure.php:831 @@ -2828,10 +2729,8 @@ msgstr "Indsæt feltnavne i første række" #: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 #: libraries/config/messages.inc.php:248 libraries/import/csv.php:75 #: libraries/import/ldi.php:41 -#, fuzzy -#| msgid "Fields enclosed by" msgid "Columns enclosed by" -msgstr "Felter indrammet med" +msgstr "Felter skal adskilles med" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 #: libraries/config/messages.inc.php:249 libraries/import/csv.php:80 @@ -2851,15 +2750,13 @@ msgstr "Erstat NULL med" #: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 msgid "Remove CRLF characters within columns" -msgstr "" +msgstr "Fjern karakterer for linjeskift i felterne" #: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 #: libraries/config/messages.inc.php:253 libraries/import/csv.php:62 #: libraries/import/ldi.php:40 -#, fuzzy -#| msgid "Lines terminated by" msgid "Columns terminated by" -msgstr "Linjer afsluttet med" +msgstr "Felter afsluttes med" #: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 #: libraries/import/csv.php:85 libraries/import/ldi.php:43 @@ -2874,25 +2771,23 @@ msgstr "Excel-udgave" #: libraries/config/messages.inc.php:85 msgid "Database name template" -msgstr "" +msgstr "Skabelon for databasenavn" #: libraries/config/messages.inc.php:86 msgid "Server name template" -msgstr "" +msgstr "Maske for servernavn" #: libraries/config/messages.inc.php:87 msgid "Table name template" -msgstr "" +msgstr "Maske for tabelnavn" #: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 #: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 #: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:115 libraries/export/texytext.php:22 -#, fuzzy -#| msgid "%s table(s)" msgid "Dump table" -msgstr "%s tabel(ler)" +msgstr "Dump tabel" #: libraries/config/messages.inc.php:92 libraries/export/latex.php:31 msgid "Include table caption" @@ -2931,7 +2826,7 @@ msgstr "Eksporttype" #: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 msgid "Save on server" -msgstr "" +msgstr "Gem på server" #: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 @@ -2940,13 +2835,11 @@ msgstr "Overskriv eksisterende fil(er)" #: libraries/config/messages.inc.php:118 msgid "Remember file name template" -msgstr "" +msgstr "Husk maske for filnavn" #: libraries/config/messages.inc.php:120 -#, fuzzy -#| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" -msgstr "Brug \"backquotes\" omkring tabeller og felters navne" +msgstr "Brug \"backquotes\" omkring tabel -og feltnavne" #: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 #: libraries/display_export.lib.php:353 @@ -2955,7 +2848,7 @@ msgstr "SQL-kompatibilitetsmodus" #: libraries/config/messages.inc.php:122 libraries/export/sql.php:175 msgid "CREATE TABLE options:" -msgstr "" +msgstr "Muligheder for CREATE TABLE:" #: libraries/config/messages.inc.php:123 msgid "Creation/Update/Check dates" @@ -2979,17 +2872,15 @@ msgstr "Brug ignorér inserts" #: libraries/config/messages.inc.php:132 msgid "Syntax to use when inserting data" -msgstr "" +msgstr "Syntaks som skal bruges, når der indsættes data" #: libraries/config/messages.inc.php:133 libraries/export/sql.php:267 msgid "Maximal length of created query" msgstr "Maksimal længde på oprettet forespørgsel" #: libraries/config/messages.inc.php:138 -#, fuzzy -#| msgid "Export" msgid "Export type" -msgstr "Eksport" +msgstr "Eksporttype" #: libraries/config/messages.inc.php:139 libraries/export/sql.php:70 msgid "Enclose export in a transaction" @@ -2997,50 +2888,50 @@ msgstr "Inkludér eksport i en transaktion" #: libraries/config/messages.inc.php:140 msgid "Export time in UTC" -msgstr "" +msgstr "Angiv eksporteringstidspunktet i UTC (Universal Time Coordinated)" #: libraries/config/messages.inc.php:148 msgid "Force secured connection while using phpMyAdmin" -msgstr "" +msgstr "Gennemtving sikker forbindelse mens phpMyAdmin bruges" #: libraries/config/messages.inc.php:149 msgid "Force SSL connection" -msgstr "" +msgstr "Gennemtving SSL-forbindelse" #: libraries/config/messages.inc.php:150 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" +"Sorteringsrækkefølge for elementer i valgboks med fremmede nøgler; [kbd]" +"content[/kbd] er de refererede data, [kbd]id[/kbd] er nøglens værdi" #: libraries/config/messages.inc.php:151 msgid "Foreign key dropdown order" -msgstr "" +msgstr "Sortër fremmede nøgler i valgboks på:" #: libraries/config/messages.inc.php:152 msgid "A dropdown will be used if fewer items are present" -msgstr "" +msgstr "Der vil blive brugt en valgboks, hvis der er færre elementer til stede" #: libraries/config/messages.inc.php:153 msgid "Foreign key limit" -msgstr "" +msgstr "Øvre grænse for fremmed nøgle" #: libraries/config/messages.inc.php:154 msgid "Browse mode" -msgstr "" +msgstr "Gennemsynstilstand" #: libraries/config/messages.inc.php:155 msgid "Customize browse mode" -msgstr "" +msgstr "Brugerindstilling for gennemsynstilstand" #: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 #: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 #: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 #: libraries/config/messages.inc.php:229 -#, fuzzy -#| msgid "Query results operations" msgid "Customize default options" -msgstr "Forespørgselsresultat operationer" +msgstr "Tilpas standardindstillinger" #: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:236 #: libraries/config/setup.forms.php:315 @@ -3052,42 +2943,40 @@ msgstr "CSV (kommasepareret)" #: libraries/config/messages.inc.php:160 msgid "Developer" -msgstr "" +msgstr "Udvikler" #: libraries/config/messages.inc.php:161 msgid "Settings for phpMyAdmin developers" -msgstr "" +msgstr "Indstillinger for phpMyAdmin udviklere" #: libraries/config/messages.inc.php:162 msgid "Edit mode" -msgstr "" +msgstr "Redigeringstilstand" #: libraries/config/messages.inc.php:163 msgid "Customize edit mode" -msgstr "" +msgstr "Tilpas redigerinstilstand" #: libraries/config/messages.inc.php:165 msgid "Export defaults" -msgstr "" +msgstr "Standardindstillinger for eksport" #: libraries/config/messages.inc.php:166 msgid "Customize default export options" -msgstr "" +msgstr "Tilpas standardindstillinger for eksport" #: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 #: setup/frames/menu.inc.php:16 msgid "Features" -msgstr "" +msgstr "Karakteristika" #: libraries/config/messages.inc.php:168 -#, fuzzy -#| msgid "Generate" msgid "General" -msgstr "Generér" +msgstr "Generelt" #: libraries/config/messages.inc.php:169 msgid "Set some commonly used options" -msgstr "" +msgstr "Bestem indstillinger for nogle af de mest anvendte valgmuligheder" #: libraries/config/messages.inc.php:170 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:82 @@ -3097,19 +2986,21 @@ msgstr "Import" #: libraries/config/messages.inc.php:171 msgid "Import defaults" -msgstr "" +msgstr "Standarder for import" #: libraries/config/messages.inc.php:172 msgid "Customize default common import options" -msgstr "" +msgstr "Tilpas standardindstillinger for import" #: libraries/config/messages.inc.php:173 msgid "Import / export" -msgstr "" +msgstr "Import / eksport" #: libraries/config/messages.inc.php:174 msgid "Set import and export directories and compression options" msgstr "" +"Bestem indstillinger for importerings- og eksporteringsmapper samt " +"komprimering" #: libraries/config/messages.inc.php:175 libraries/export/latex.php:26 msgid "LaTeX" @@ -3117,15 +3008,15 @@ msgstr "LaTeX" #: libraries/config/messages.inc.php:178 msgid "Databases display options" -msgstr "" +msgstr "Indstillinger for visning af databaser" #: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 msgid "Navigation frame" -msgstr "" +msgstr "Navigationsramme" #: libraries/config/messages.inc.php:180 msgid "Customize appearance of the navigation frame" -msgstr "" +msgstr "Tilpas navigationsrammens udseende" #: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:110 @@ -3134,15 +3025,15 @@ msgstr "Servere" #: libraries/config/messages.inc.php:182 msgid "Servers display options" -msgstr "" +msgstr "Indstillinger for visning af servere" #: libraries/config/messages.inc.php:184 msgid "Tables display options" -msgstr "" +msgstr "Indstillinger for visning af tabeller" #: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 msgid "Main frame" -msgstr "" +msgstr "Hovedramme" #: libraries/config/messages.inc.php:186 msgid "Microsoft Office" @@ -3156,24 +3047,22 @@ msgstr "Open Document tekst" #: libraries/config/messages.inc.php:190 msgid "Other core settings" -msgstr "" +msgstr "Andre kerneindstillinger" #: libraries/config/messages.inc.php:191 msgid "Settings that didn't fit enywhere else" -msgstr "" +msgstr "Indstillinger som ikke passer ind andre steder" #: libraries/config/messages.inc.php:192 -#, fuzzy -#| msgid "Page number:" msgid "Page titles" -msgstr "Side nummer:" +msgstr "Sidetitler" #: libraries/config/messages.inc.php:193 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." -msgstr "" +msgstr "Angiv browserens titeltekst. " #: libraries/config/messages.inc.php:194 #: libraries/navigation_header.inc.php:83 @@ -3184,49 +3073,51 @@ msgstr "Foresp. vindue" #: libraries/config/messages.inc.php:195 msgid "Customize query window options" -msgstr "" +msgstr "Tilpas indstillinger for forespørgselsvindue" #: libraries/config/messages.inc.php:196 msgid "Security" -msgstr "" +msgstr "Sikkerhed" #: libraries/config/messages.inc.php:197 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" +"Bemærk venligst at phpMyAdmin blot er en brugerflade, hvis egenskaber ikke " +"begrænser MySQL" #: libraries/config/messages.inc.php:198 msgid "Basic settings" -msgstr "" +msgstr "Grundlæggende indstillinger" #: libraries/config/messages.inc.php:199 -#, fuzzy -#| msgid "Documentation" msgid "Authentication" -msgstr "Dokumentation" +msgstr "Godkendelse" #: libraries/config/messages.inc.php:200 msgid "Authentication settings" -msgstr "" +msgstr "Indstillinger for godkendelse" #: libraries/config/messages.inc.php:201 msgid "Server configuration" -msgstr "" +msgstr "Serverkonfiguration" #: libraries/config/messages.inc.php:202 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" +"Avanceret serverkonfiguration. Lad være med at ændre disse indstillinger med " +"mindre, du ved, hvad de betyder" #: libraries/config/messages.inc.php:203 msgid "Enter server connection parameters" -msgstr "" +msgstr "Indtast parametre for tilslutning til server" #: libraries/config/messages.inc.php:204 msgid "Configuration storage" -msgstr "" +msgstr "Lagring af konfiguration" #: libraries/config/messages.inc.php:205 msgid "" @@ -10402,13 +10293,9 @@ msgstr "VIEW navn" msgid "Rename view to" msgstr "" -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "pr. sekund" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "Forespørgselsresultat operationer" @@ -10422,8 +10309,6 @@ msgstr "" #~ msgid "Show processes" #~ msgstr "Vis tråde" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Nulstil" @@ -10442,32 +10327,20 @@ msgstr "" #~ "Forespørgselsstatistikker: Siden opstarten er der blevet sendt %s " #~ "forespørgsler til serveren." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Privilegierne blev korrekt genindlæst." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "Kan være anslået. Se FAQ 3.11" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Forespørgselstype" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Tilføj en ny bruger" -#, fuzzy -#~| msgid "Create" #~ msgid "Create User" #~ msgstr "Opret" diff --git a/po/de.po b/po/de.po index d8837f2c91..75d4e9db0e 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-04-23 04:28+0200\n" "Last-Translator: Dominik Geyer \n" "Language-Team: german \n" @@ -10449,8 +10449,6 @@ msgstr "VIEW Name" msgid "Rename view to" msgstr "View umbenennen in" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Sekunde" diff --git a/po/el.po b/po/el.po index 90461b8abf..977de985ee 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-16 12:17+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" diff --git a/po/en_GB.po b/po/en_GB.po index 778ad004e5..1ddfabe5db 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-15 16:58+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" diff --git a/po/es.po b/po/es.po index 913eb849d4..8e1802bebd 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-15 23:05+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" @@ -10517,7 +10517,6 @@ msgstr "Cambiar el nombre de la vista a" #~ msgid "Bar type" #~ msgstr "Tipo de barra" -# It is the opposite of "stacked" #~ msgid "Multi" #~ msgstr "Separadas" @@ -10557,7 +10556,6 @@ msgstr "Cambiar el nombre de la vista a" #~ msgid "Add a new User" #~ msgstr "Agregar un nuevo usuario" -# Defines where row-related links are located #~ msgid "Show table row links on left side" #~ msgstr "Mostrar enlaces a la izquierda de filas de tabla" diff --git a/po/et.po b/po/et.po index 159dfb4ae0..a760506a4e 100644 --- a/po/et.po +++ b/po/et.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" diff --git a/po/eu.po b/po/eu.po index e857d94818..4ddfde6aa2 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" @@ -10211,17 +10211,12 @@ msgstr "" msgid "Rename view to" msgstr "Taula berrizendatu izen honetara: " -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "segunduko" -#, fuzzy -#~| msgid "SQL result" #~ msgid "Query results" #~ msgstr "SQL emaitza" -#, fuzzy #~ msgctxt "$strShowStatusReset" #~ msgid "Reset" #~ msgstr "Reset egin" @@ -10229,8 +10224,6 @@ msgstr "Taula berrizendatu izen honetara: " #~ msgid "Show processes" #~ msgstr "Erakutsi prozesuak" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Reset egin" @@ -10249,22 +10242,15 @@ msgstr "Taula berrizendatu izen honetara: " #~ "Kontsultaren estatistikak: Bere hasieratik, %s kontsulta " #~ "zerbitzarira bidali dira." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Pribilegioak arrakastaz berkargatu dira." -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Kontsulta mota" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Erabiltzaile berria gehitu" -#, fuzzy #~ msgid "Create User" #~ msgstr "Zerbitzariaren bertsioa" diff --git a/po/fa.po b/po/fa.po index e22634f55e..ca6c3cfc34 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" @@ -403,7 +403,7 @@ msgstr "" #, php-format msgid "%s table" msgid_plural "%s tables" -msgstr[0] "%s جدول" +msgstr[0] "s% جدولs% جداول" #: db_qbe.php:41 msgid "You have to choose at least one column to display" @@ -526,7 +526,7 @@ msgstr "نتيجه جستجوي \"%s\" %s:" #, php-format msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" -msgstr[0] "%s عبارت همتا در جدول %s" +msgstr[0] "s% عبارت همتا در جدول %ss% عبارت همتا در جدول %s" #: db_search.php:256 libraries/common.lib.php:2765 #: libraries/common.lib.php:2950 libraries/common.lib.php:2951 @@ -9983,17 +9983,12 @@ msgstr "" msgid "Rename view to" msgstr "بازناميدن جدول به" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr " ثانیه" -#, fuzzy -#~| msgid "SQL result" #~ msgid "Query results" #~ msgstr "نتيجه SQL" -#, fuzzy #~ msgctxt "$strShowStatusReset" #~ msgid "Reset" #~ msgstr "Reset" @@ -10001,23 +9996,16 @@ msgstr "بازناميدن جدول به" #~ msgid "Show processes" #~ msgstr "نمايش فرايندها" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Reset" -#, fuzzy -#~| msgid "Export" #~ msgid "Bar type" #~ msgstr "صدور" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "افزودن يك كاربر جديد" -#, fuzzy #~ msgid "Create User" #~ msgstr "نسخه سرور" diff --git a/po/fi.po b/po/fi.po index 9bb49d6d9f..002ea41d50 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" @@ -967,10 +967,8 @@ msgid "You are about to DESTROY a complete database!" msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" #: js/messages.php:32 -#, fuzzy -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" +msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen taulun!" #: js/messages.php:33 #, fuzzy @@ -1041,10 +1039,8 @@ msgstr "Salasanat eivät ole samat!" #: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy -#| msgid "Any user" msgid "Add user" -msgstr "Kuka tahansa käyttäjä" +msgstr "Lisää käyttäjä" #: js/messages.php:59 msgid "Reloading Privileges" @@ -1274,16 +1270,12 @@ msgid "Hide" msgstr "Kätke" #: js/messages.php:135 -#, fuzzy -#| msgid "Hide query box" msgid "Hide search criteria" -msgstr "Piilota SQL-kyselykenttä" +msgstr "Piilota hakusanat" #: js/messages.php:136 -#, fuzzy -#| msgid "Show query box" msgid "Show search criteria" -msgstr "Näytä kyselykenttä" +msgstr "Näytä hakusanat" #: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 @@ -1343,10 +1335,8 @@ msgstr "" #. l10n: Latest available phpMyAdmin version #: js/messages.php:162 -#, fuzzy -#| msgid "Check for latest version" msgid ", latest stable version:" -msgstr "Tarkista uusin versio" +msgstr "Viimeisin vakaa versio" #: js/messages.php:163 #, fuzzy @@ -1976,7 +1966,7 @@ msgstr "Tiedostoa ei voida avata: %s" #: libraries/bookmark.lib.php:83 msgid "shared" -msgstr "" +msgstr "jaettu" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 @@ -2282,29 +2272,27 @@ msgstr "Lähetettäviä tiedostoja ei ole" #: libraries/config.values.php:45 libraries/config.values.php:47 #: libraries/config.values.php:51 msgid "Both" -msgstr "" +msgstr "Molemmat" #: libraries/config.values.php:47 msgid "Nowhere" -msgstr "" +msgstr "Ei missään" #: libraries/config.values.php:47 msgid "Left" -msgstr "" +msgstr "Vasen" #: libraries/config.values.php:47 msgid "Right" -msgstr "" +msgstr "Oikea" #: libraries/config.values.php:75 msgid "Open" -msgstr "" +msgstr "Avaa" #: libraries/config.values.php:75 -#, fuzzy -#| msgid "Close" msgid "Closed" -msgstr "Sulje" +msgstr "Suljettu" #: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 @@ -2453,10 +2441,8 @@ msgid "Improves efficiency of screen refresh" msgstr "" #: libraries/config/messages.inc.php:18 -#, fuzzy -#| msgid "Enabled" msgid "Enable Ajax" -msgstr "Päällä" +msgstr "Aktivoi Ajax" #: libraries/config/messages.inc.php:19 msgid "" @@ -2980,11 +2966,11 @@ msgstr "CSV" #: libraries/config/messages.inc.php:160 msgid "Developer" -msgstr "" +msgstr "Kehittäjä" #: libraries/config/messages.inc.php:161 msgid "Settings for phpMyAdmin developers" -msgstr "" +msgstr "Asetukset phpMyAdmin-kehittäjille" #: libraries/config/messages.inc.php:162 msgid "Edit mode" @@ -3273,14 +3259,12 @@ msgid "Texy! text" msgstr "Texy!-teksti" #: libraries/config/messages.inc.php:230 -#, fuzzy -#| msgid "Warning" msgid "Warnings" -msgstr "Varoitus" +msgstr "Varoitukset" #: libraries/config/messages.inc.php:231 msgid "Disable some of the warnings shown by phpMyAdmin" -msgstr "" +msgstr "Kytke osa phpMyAdminin näyttämistä varoituksista pois päältä" #: libraries/config/messages.inc.php:232 msgid "" @@ -3774,25 +3758,19 @@ msgstr "Oletusarvoinen kyselyikkunavälilehti" #: libraries/config/messages.inc.php:344 msgid "Query window height (in pixels)" -msgstr "" +msgstr "Kyselyikkunan korkeus (pikseleissä)" #: libraries/config/messages.inc.php:345 -#, fuzzy -#| msgid "Query window" msgid "Query window height" -msgstr "Kyselyikkuna" +msgstr "Kyselyikkunan korkeus" #: libraries/config/messages.inc.php:346 -#, fuzzy -#| msgid "Query window" msgid "Query window width (in pixels)" -msgstr "Kyselyikkuna" +msgstr "Kyselyikkunan leveys (pikseleissä)" #: libraries/config/messages.inc.php:347 -#, fuzzy -#| msgid "Query window" msgid "Query window width" -msgstr "Kyselyikkuna" +msgstr "Kyselyikkunan leveys" #: libraries/config/messages.inc.php:348 msgid "Select which functions will be used for character set conversion" @@ -4857,10 +4835,8 @@ msgid "Password Hashing" msgstr "Salasanan salaus" #: libraries/display_change_password.lib.php:65 -#, fuzzy -#| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" -msgstr "MySQL 4.0 -yhteensopiva" +msgstr "MySQL 4.0 -yhteensopiva" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 @@ -5038,22 +5014,16 @@ msgid "None" msgstr "Ei mitään" #: libraries/display_export.lib.php:315 -#, fuzzy -#| msgid "\"zipped\"" msgid "zipped" -msgstr "\"zip-pakattu\"" +msgstr "zip-pakattu" #: libraries/display_export.lib.php:317 -#, fuzzy -#| msgid "\"gzipped\"" msgid "gzipped" -msgstr "\"gzip-pakkaus\"" +msgstr "gzip-pakattu" #: libraries/display_export.lib.php:319 -#, fuzzy -#| msgid "\"bzipped\"" msgid "bzipped" -msgstr "\"bzip-pakkaus\"" +msgstr "bzip-pakattu" #: libraries/display_export.lib.php:328 #, fuzzy @@ -5340,16 +5310,12 @@ msgid "Print view (with full texts)" msgstr "Tulostusversio (kokonaisin tekstein)" #: libraries/display_tbl.lib.php:2454 tbl_chart.php:83 -#, fuzzy -#| msgid "Display PDF schema" msgid "Display chart" -msgstr "Näytä PDF-kaavio" +msgstr "Näytä kaavio" #: libraries/display_tbl.lib.php:2473 -#, fuzzy -#| msgid "Create User" msgid "Create view" -msgstr "Luo käyttäjä" +msgstr "Luo näkymä" #: libraries/display_tbl.lib.php:2588 msgid "Link not found" @@ -5910,10 +5876,8 @@ msgstr "Sarakkeiden kommentit näkyvissä" #: libraries/export/latex.php:62 libraries/export/odt.php:48 #: libraries/export/sql.php:60 -#, fuzzy -#| msgid "Available MIME types" msgid "Display MIME types" -msgstr "Mahdolliset MIME-tyypit" +msgstr "Näytä MIME-tyypit" #: libraries/export/latex.php:139 libraries/export/sql.php:452 #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 @@ -5953,10 +5917,8 @@ msgid "(Generates a report containing the data of a single table)" msgstr "(Luo raportin, joka sisältää yhden taulun tiedot)" #: libraries/export/pdf.php:24 -#, fuzzy -#| msgid "Report title" msgid "Report title:" -msgstr "Raportin otsikko" +msgstr "Raportin otsikko:" #: libraries/export/php_array.php:16 msgid "PHP array" @@ -6764,10 +6726,8 @@ msgid "Create a page" msgstr "Luo uusi sivu" #: libraries/schema/User_Schema.class.php:99 -#, fuzzy -#| msgid "Page number:" msgid "Page name" -msgstr "Sivunumero:" +msgstr "Sivun nimi" #: libraries/schema/User_Schema.class.php:103 #, fuzzy @@ -6836,10 +6796,8 @@ msgid "Portrait" msgstr "Pystytasossa" #: libraries/schema/User_Schema.class.php:394 -#, fuzzy -#| msgid "Creation" msgid "Orientation" -msgstr "Luotu" +msgstr "Suunta" #: libraries/schema/User_Schema.class.php:407 msgid "Paper size" @@ -6875,10 +6833,8 @@ msgid "Current Server" msgstr "Nykyinen palvelin" #: libraries/server_links.inc.php:73 -#, fuzzy -#| msgid "settings" msgid "Settings" -msgstr "asetukset" +msgstr "Asetukset" #: libraries/server_links.inc.php:79 server_synchronize.php:1087 #: server_synchronize.php:1095 @@ -6941,10 +6897,8 @@ msgid "Clear" msgstr "Tyhjennä" #: libraries/sql_query_form.lib.php:301 -#, fuzzy -#| msgid "Column names" msgid "Columns" -msgstr "Sarakkeiden nimet" +msgstr "Sarakkeet" #: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017 msgid "Bookmark this SQL query" @@ -7467,21 +7421,16 @@ msgid "Official Homepage" msgstr "phpMyAdminin kotisivut" #: main.php:217 -#, fuzzy -#| msgid "Attributes" msgid "Contribute" -msgstr "Attribuutit" +msgstr "Osallistu" #: main.php:218 -#, fuzzy msgid "Get support" -msgstr "Vienti" +msgstr "Hanki tukea" #: main.php:219 -#, fuzzy -#| msgid "No change" msgid "List of changes" -msgstr "Ei muutoksia" +msgstr "Muutoslista" #: main.php:243 msgid "" @@ -7718,10 +7667,8 @@ msgid "Rename to" msgstr "Nimeä taulu uudelleen" #: pmd_general.php:482 pmd_general.php:581 -#, fuzzy -#| msgid "User name" msgid "New name" -msgstr "Käyttäjänimi" +msgstr "Uusi nimi" #: pmd_general.php:485 pmd_general.php:700 #, fuzzy @@ -7836,10 +7783,9 @@ msgid "Modifications have been saved" msgstr "Muutokset tallennettu" #: prefs_forms.php:78 -#, fuzzy -#| msgid "Submitted form contains errors" msgid "Cannot save settings, submitted form contains errors" -msgstr "Lähetetyssä lomakkeessa on virheitä" +msgstr "" +"Asetuksia ei voitu tallentaa, sillä lähetetyssä lomakkeessa on virheitä" #: prefs_manage.php:80 #, fuzzy @@ -8474,10 +8420,9 @@ msgid "Unable to change master" msgstr "Pääpalvelinta ei voitu vaihtaa" #: server_replication.php:72 -#, fuzzy, php-format -#| msgid "Master server changed succesfully to %s" +#, php-format msgid "Master server changed successfully to %s" -msgstr "Isäntäpalvelimeksi on onnistuen vaihdettu %s" +msgstr "%s on onnistuneesti vaihdettu isäntäpalvelimeksi" #: server_replication.php:180 msgid "This server is configured as master in a replication process." @@ -9634,13 +9579,11 @@ msgstr "Seuraavat kyselyt on suoritettu:" #: server_synchronize.php:1126 msgid "Enter manually" -msgstr "" +msgstr "Syötä käsin" #: server_synchronize.php:1134 -#, fuzzy -#| msgid "Insecure connection" msgid "Current connection" -msgstr "Salaamaton yhteys" +msgstr "Nykyinen yhteys" #: server_synchronize.php:1163 #, fuzzy, php-format @@ -9718,10 +9661,8 @@ msgid "Insecure connection" msgstr "Salaamaton yhteys" #: setup/frames/index.inc.php:92 -#, fuzzy -#| msgid "Configuration file" msgid "Configuration saved." -msgstr "Asetustiedosto" +msgstr "Asetukset tallennettiin" #: setup/frames/index.inc.php:93 msgid "" @@ -10804,8 +10745,6 @@ msgstr "VIEW-arvon nimi" msgid "Rename view to" msgstr "Nimeä taulu uudelleen" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Sekunti" @@ -10834,8 +10773,6 @@ msgstr "Nimeä taulu uudelleen" #~ msgid "Show processes" #~ msgstr "Näytä prosessit" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Nollaa" @@ -10854,22 +10791,14 @@ msgstr "Nimeä taulu uudelleen" #~ "Kyselytilastot: Tälle palvelimelle on lähetetty viime " #~ "käynnistyksestä lähtien %s kyselyä." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "Saattaa olla summittainen. Katso FAQ 3.11" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Kyselyn tyyppi" @@ -10882,8 +10811,6 @@ msgstr "Nimeä taulu uudelleen" #~ msgid "Add a new User" #~ msgstr "Lisää uusi käyttäjä" -#, fuzzy -#~| msgid "Show logo in left frame" #~ msgid "Show table row links on left side" #~ msgstr "Näytä vasemmassa kehyksessä logo" diff --git a/po/fr.po b/po/fr.po index feaa455197..7da389fc8d 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-15 17:03+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" diff --git a/po/gl.po b/po/gl.po index e7fb96c63c..cbfb744ba2 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" diff --git a/po/he.po b/po/he.po index 361a20684b..ada75c9300 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" @@ -10117,17 +10117,12 @@ msgstr "" msgid "Rename view to" msgstr "שינוי שם טבלה אל" -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "לשנייה" -#, fuzzy -#~| msgid "SQL result" #~ msgid "Query results" #~ msgstr "תוצאת SQL" -#, fuzzy #~ msgctxt "$strShowStatusReset" #~ msgid "Reset" #~ msgstr "איפוס" @@ -10135,8 +10130,6 @@ msgstr "שינוי שם טבלה אל" #~ msgid "Show processes" #~ msgstr "ראיית תהליכים" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "איפוס" @@ -10146,31 +10139,20 @@ msgstr "שינוי שם טבלה אל" #~ "the server." #~ msgstr "סטטיטיקת שאילתות: מאז ההפעלה, %s שאילתות נשלחו לשרת." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "ההרשאות נטענו מחדש בהצלחה." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "יכול להיות הערכה. ראה FAQ 3.11" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "סוג שאילתה" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "הוספת משתמש חדש" -#, fuzzy #~ msgid "Create User" #~ msgstr "גרסת שרת" diff --git a/po/hi.po b/po/hi.po index 98e1a7003d..7c9414d961 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-05-06 09:13+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" "MIME-Version: 1.0\n" @@ -1034,10 +1034,8 @@ msgstr "पासवर्ड मिलते झूलते नहीं ह #: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy -#| msgid "Any user" msgid "Add user" -msgstr "कोई भी यूसर" +msgstr "naya upyokta" #: js/messages.php:59 msgid "Reloading Privileges" @@ -9851,8 +9849,6 @@ msgstr "दृश्य का नाम" msgid "Rename view to" msgstr "दृश्य का नाम बदलो" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "सेकंड" diff --git a/po/hr.po b/po/hr.po index 66e5d3ed34..078a2e4f00 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" @@ -10547,13 +10547,9 @@ msgstr "Naziv prikaza" msgid "Rename view to" msgstr "Preimenuj prikaz u" -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "po sekundi" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "Operacije rezultata upita" @@ -10567,8 +10563,6 @@ msgstr "Preimenuj prikaz u" #~ msgid "Show processes" #~ msgstr "Prikaži procese" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Povrat" @@ -10586,31 +10580,20 @@ msgstr "Preimenuj prikaz u" #~ msgstr "" #~ "Statistike upita: Od pokretanja poslužitelju je upućeno %s upita." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Privilegije su uspješno učitane." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "Može biti približno. Pogledajte ČPP 3.11" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Vrsta upita" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Dodaj novog korisnika" -#, fuzzy #~ msgid "Create User" #~ msgstr "Izradi relaciju" diff --git a/po/hu.po b/po/hu.po index 2c22ba3cdb..ea09be8719 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-05-27 18:52+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" @@ -4830,7 +4830,7 @@ msgstr "Sorok:" #: libraries/display_export.lib.php:157 msgid "Dump some row(s)" -msgstr "" +msgstr "Néhány sor dumpolása" #: libraries/display_export.lib.php:159 msgid "Number of rows:" @@ -4842,7 +4842,7 @@ msgstr "Ettől a sortól kezdve:" #: libraries/display_export.lib.php:173 msgid "Dump all rows" -msgstr "" +msgstr "Összes sor dumpolása" #: libraries/display_export.lib.php:181 libraries/display_export.lib.php:202 msgid "Output:" @@ -10586,8 +10586,6 @@ msgstr "NÉZET neve" msgid "Rename view to" msgstr "Nézet átnevezése" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "másodperc" @@ -10616,8 +10614,6 @@ msgstr "Nézet átnevezése" #~ msgid "Show processes" #~ msgstr "Folyamatok megjelenítése" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Törlés" @@ -10639,10 +10635,6 @@ msgstr "Nézet átnevezése" #~ msgid "Chart generated successfully." #~ msgstr "A grafikon generálása sikeres." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" diff --git a/po/id.po b/po/id.po index 88a73389ab..49b4402751 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-04-16 22:04+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" @@ -403,7 +403,7 @@ msgstr "Pemeriksaan terakhir" #, php-format msgid "%s table" msgid_plural "%s tables" -msgstr[0] "%s tabel" +msgstr[0] "Tunggal% s tabelJamak% s tabel" #: db_qbe.php:41 msgid "You have to choose at least one column to display" @@ -524,7 +524,9 @@ msgstr "Hasil pencarian untuk \"%s\" %s:" #, php-format msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" -msgstr[0] "%s cocok dalam tabel %s" +msgstr[0] "" +"Tunggal% s cocok dalam tabel% s Jamaks% cocok dalam tabel% s " #: db_search.php:256 libraries/common.lib.php:2765 #: libraries/common.lib.php:2950 libraries/common.lib.php:2951 @@ -553,7 +555,9 @@ msgstr "Hapus" #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" -msgstr[0] "Total: %s cocok" +msgstr[0] "" +"Tunggal Total: % s cocokJamak Total: % s " +"cocok" #: db_search.php:297 msgid "Search in database" @@ -2441,7 +2445,7 @@ msgstr "Reset" #: libraries/config/messages.inc.php:17 msgid "Improves efficiency of screen refresh" -msgstr "" +msgstr "Meningkatkan efisiensi refresh layar" #: libraries/config/messages.inc.php:18 msgid "Enable Ajax" @@ -2464,6 +2468,9 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" +"Mengaktifkan ini memungkinkan halaman yang terletak pada domain yang berbeda " +"untuk memanggil phpMyAdmin di dalam frame, dan merupakan [strong]lubang " +"keamanan[/strong] potensial yang memungkinkan serangan scripting lintas-frame" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -10103,11 +10110,11 @@ msgstr "" #: tbl_tracking.php:560 msgid "This option will replace your table and contained data." -msgstr "" +msgstr "Pilihan ini akan mengganti table dan data isi table" #: tbl_tracking.php:560 msgid "SQL execution" -msgstr "" +msgstr "Menjalankan SQL" #: tbl_tracking.php:572 #, php-format @@ -10116,7 +10123,7 @@ msgstr "Ekspor sebagai %s" #: tbl_tracking.php:612 msgid "Show versions" -msgstr "" +msgstr "Tunjukkan Versi" #: tbl_tracking.php:644 msgid "Version" @@ -10168,7 +10175,7 @@ msgstr "" #: themes.php:41 msgid "Get more themes!" -msgstr "" +msgstr "Dapatkan tema lainnya" #: transformation_overview.php:24 msgid "Available MIME types" @@ -10208,8 +10215,6 @@ msgstr "Nama VIEW" msgid "Rename view to" msgstr "Ubah nama tabel menjadi " -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Detik" @@ -10228,7 +10233,6 @@ msgstr "Ubah nama tabel menjadi " #~ msgid "JSON encoder is needed for chart tooltips." #~ msgstr "JSON encoder diperlukan untuk tooltips pada diagram." -#, fuzzy #~ msgctxt "$strShowStatusReset" #~ msgid "Reset" #~ msgstr "Reset" @@ -10236,8 +10240,6 @@ msgstr "Ubah nama tabel menjadi " #~ msgid "Show processes" #~ msgstr "Tampilkan Proses" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Reset" @@ -10256,15 +10258,9 @@ msgstr "Ubah nama tabel menjadi " #~ "Informasi statistik: Sejak dihidupkan, %s pencarian telah dikirim " #~ "kepada server." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Sukses reload Hak Istimewa (Privileges)." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" @@ -10272,8 +10268,6 @@ msgstr "Ubah nama tabel menjadi " #~ "Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation." #~ "html#faq3_11@Dokumentasi]FAQ 3.11[/a]" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Tipe Pencarian" diff --git a/po/it.po b/po/it.po index 88bd6e4a50..1af81587c6 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-05-25 22:43+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" @@ -1715,10 +1715,8 @@ msgid "Could not save recent table" msgstr "Impossibile salvare la configurazione" #: libraries/RecentTable.class.php:148 -#, fuzzy -#| msgid "Count tables" msgid "Recent tables" -msgstr "Conta tabbelle" +msgstr "Conta tabelle" #: libraries/RecentTable.class.php:154 #, fuzzy @@ -10286,16 +10284,13 @@ msgid "Tracking data definition successfully deleted" msgstr "Le definizioni dei dati di monitoraggio eliminati con successo" #: tbl_tracking.php:384 tbl_tracking.php:401 -#, fuzzy -#| msgid "Gather errors" msgid "Query error" -msgstr "Errore della query" +msgstr "Errore nella query" #: tbl_tracking.php:399 -#, fuzzy -#| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" -msgstr "Le manipolazioni dei dati di monitoraggio eliminati con successo" +msgstr "" +"Le manipolazioni dei dati di monitoraggio sono stati cancellati con successo" #: tbl_tracking.php:411 msgid "Tracking statements" @@ -10441,8 +10436,6 @@ msgstr "Nome VISTA" msgid "Rename view to" msgstr "Rinomina la vista in" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Secondo" diff --git a/po/ja.po b/po/ja.po index f12957d381..31d3d5e4b1 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-15 12:47+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" diff --git a/po/ka.po b/po/ka.po index 0c871c38df..500e4a9de3 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" @@ -10848,13 +10848,9 @@ msgstr "VIEW name" msgid "Rename view to" msgstr "Rename table to" -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "წამში" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "Query results operations" @@ -10868,8 +10864,6 @@ msgstr "Rename table to" #~ msgid "Show processes" #~ msgstr "პროცესების ჩვენება" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "დაბრუნება" @@ -10888,15 +10882,9 @@ msgstr "Rename table to" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "The privileges were reloaded successfully." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" @@ -10904,25 +10892,18 @@ msgstr "Rename table to" #~ "შეიძლება იყოს მიახლოებითი. იხილეთ [a@./Documentation." #~ "html#faq3_11@Documentation]FAQ 3.11[/a]" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "მოთხოვნის ტიპი" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "ახალი მომხმარებლის დამატება" -#, fuzzy #~ msgid "Create User" #~ msgstr "Create relation" #~ msgid "Add a new User" #~ msgstr "ახალი მომხმარებლის დამატება" -#, fuzzy -#~| msgid "Show logo in left frame" #~ msgid "Show table row links on left side" #~ msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" diff --git a/po/ko.po b/po/ko.po index 98112d774a..dc5e39561d 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" @@ -10018,17 +10018,12 @@ msgstr "" msgid "Rename view to" msgstr "테이블 이름 바꾸기" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "초" -#, fuzzy -#~| msgid "SQL result" #~ msgid "Query results" #~ msgstr "SQL 결과" -#, fuzzy #~ msgctxt "$strShowStatusReset" #~ msgid "Reset" #~ msgstr "리세트" @@ -10036,8 +10031,6 @@ msgstr "테이블 이름 바꾸기" #~ msgid "Show processes" #~ msgstr "MySQL 프로세스 보기" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "리세트" @@ -10054,15 +10047,9 @@ msgstr "테이블 이름 바꾸기" #~ "the server." #~ msgstr "SQL 질의 통계: 이 서버에 %s 번의 질의가 보내졌습니다." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "권한을 다시 로딩했습니다." -#, fuzzy -#~| msgid "" -#~| "Error moving the uploaded file, see [a@./Documentation." -#~| "html#faq1_11@Documentation]FAQ 1.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" @@ -10070,17 +10057,12 @@ msgstr "테이블 이름 바꾸기" #~ "업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation." #~ "html#faq1_11@Documentation]FAQ 1.11[/a] 참조." -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "질의 종류" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "새 사용자 추가" -#, fuzzy #~ msgid "Create User" #~ msgstr "서버 버전" diff --git a/po/lt.po b/po/lt.po index ceed2f9eda..b941c0aef8 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-04-05 15:52+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" @@ -10243,8 +10243,6 @@ msgstr "VIEW pavadinimas" msgid "Rename view to" msgstr "Pervadinti lentelę į" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Sekundės" diff --git a/po/lv.po b/po/lv.po index 076dbdb184..7acd9ed3cd 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" diff --git a/po/mk.po b/po/mk.po index 748c453083..99c489a69a 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-05-19 17:04+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" "Language: mk\n" "MIME-Version: 1.0\n" @@ -276,10 +276,8 @@ msgid "Command" msgstr "Наредба" #: db_operations.php:440 -#, fuzzy -#| msgid "Rename database to" msgid "Remove database" -msgstr "Преименувај ја базата на податоци во" +msgstr "Избриши ја базата на податоци." #: db_operations.php:452 #, php-format @@ -421,7 +419,7 @@ msgstr "Морате да изберете барем една колона за #: db_qbe.php:186 msgid "Switch to" -msgstr "" +msgstr "Префрли се во" #: db_qbe.php:186 msgid "visual builder" @@ -726,19 +724,15 @@ msgstr "Анализа на табелата" #: db_structure.php:522 msgid "Add prefix to table" -msgstr "" +msgstr "Додај префикс кон табелата" #: db_structure.php:524 libraries/mult_submits.inc.php:246 -#, fuzzy -#| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "Замени ги податоците во табелата со подаците од податотеката" +msgstr "Замени го префиксот на табелата" #: db_structure.php:526 libraries/mult_submits.inc.php:246 -#, fuzzy -#| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "Замени ги податоците во табелата со подаците од податотеката" +msgstr "Копирај табела со префикс" #: db_structure.php:575 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" @@ -763,16 +757,15 @@ msgstr "База на податоци" #: db_tracking.php:86 msgid "Last version" -msgstr "" +msgstr "Последна Верзија" #: db_tracking.php:87 tbl_tracking.php:645 -#, fuzzy msgid "Created" -msgstr "Креирај" +msgstr "Креирано" #: db_tracking.php:88 tbl_tracking.php:646 msgid "Updated" -msgstr "" +msgstr "Ажурирано" #: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794 #: sql.php:925 tbl_tracking.php:647 test/theme.php:99 @@ -788,7 +781,7 @@ msgstr "Акција" #: db_tracking.php:101 js/messages.php:36 msgid "Delete tracking data for this table" -msgstr "" +msgstr "Избришете го податоците за тракирање од табелава" #: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657 msgid "active" @@ -10296,17 +10289,12 @@ msgstr "" msgid "Rename view to" msgstr "Промени го името на табелата во " -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "во секунда" -#, fuzzy -#~| msgid "SQL result" #~ msgid "Query results" #~ msgstr "SQL резултат" -#, fuzzy #~ msgctxt "$strShowStatusReset" #~ msgid "Reset" #~ msgstr "Поништи" @@ -10314,8 +10302,6 @@ msgstr "Промени го името на табелата во " #~ msgid "Show processes" #~ msgstr "Прикажи листа на процеси" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Поништи" @@ -10334,15 +10320,9 @@ msgstr "Промени го името на табелата во " #~ "Статистики на упити: %s упити се поставени на серверот од времето " #~ "на неговото стартување." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Привилегиите се успешно вчитани." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" @@ -10350,25 +10330,18 @@ msgstr "Промени го името на табелата во " #~ "Бројот на записи може да биде приближен. За подетални информации види FAQ " #~ "3.11" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Вид на упит" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Додади нов корисник" -#, fuzzy #~ msgid "Create User" #~ msgstr "Верзија на серверот" #~ msgid "Add a new User" #~ msgstr "Додади нов корисник" -#, fuzzy -#~| msgid "Dumping data for table" #~ msgid "Delete the matches for the " #~ msgstr "Приказ на податоци од табелата" diff --git a/po/ml.po b/po/ml.po index 7a2801af8b..03f1d803de 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" diff --git a/po/mn.po b/po/mn.po index 16e040445f..251796f991 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" diff --git a/po/ms.po b/po/ms.po index fbd66c66df..c764d8bc74 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" @@ -100,7 +100,7 @@ msgstr "" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "Gagal untuk membuka URL " #: changelog.php:32 license.php:28 #, php-format @@ -108,6 +108,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" +"Fail %s tidak ada di dalam sistem, sila ke laman sesawang www.phpmyadmin.net " +"untuk maklumat lanjut" #: db_create.php:58 #, fuzzy, php-format @@ -315,7 +317,7 @@ msgstr "" #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" -msgstr "" +msgstr "Tambah %s" #: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 @@ -328,7 +330,7 @@ msgstr "" #: db_operations.php:528 msgid "Switch to copied database" -msgstr "" +msgstr "Tukar kepada pengkalan data yang di salin" #: db_operations.php:552 libraries/Index.class.php:447 #: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 @@ -405,7 +407,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451 #: tbl_structure.php:919 msgid "Last check" -msgstr "" +msgstr "Semakan Terakhir" #: db_printview.php:220 db_structure.php:440 #, fuzzy, php-format @@ -10052,17 +10054,12 @@ msgstr "" msgid "Rename view to" msgstr "Tukarnama jadual ke" -#, fuzzy -#~| msgid "Records" #~ msgid "seconds" #~ msgstr "Rekod" -#, fuzzy -#~| msgid "SQL result" #~ msgid "Query results" #~ msgstr "Hasil SQL" -#, fuzzy #~ msgctxt "$strShowStatusReset" #~ msgid "Reset" #~ msgstr "Ulangtetap" @@ -10070,8 +10067,6 @@ msgstr "Tukarnama jadual ke" #~ msgid "Show processes" #~ msgstr "Papar proses" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Ulangtetap" @@ -10090,22 +10085,15 @@ msgstr "Tukarnama jadual ke" #~ "Kueri Statistik: Sejak ia dijalankan, %s kueri telah dihantar " #~ "kepada pelayan." -#, fuzzy -#~| msgid "Thread %s was successfully killed." #~ msgid "Chart generated successfully." #~ msgstr "Bebenang %s telah berjaya dimatikan." -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Jenis Kueri" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Tambah Pengguna Baru" -#, fuzzy #~ msgid "Create User" #~ msgstr "Versi Pelayan" diff --git a/po/nb.po b/po/nb.po index e1eb1eff07..929ce8351c 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" @@ -10484,8 +10484,6 @@ msgstr "VIEW navn" msgid "Rename view to" msgstr "Endre tabellens navn" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Sekund" @@ -10532,22 +10530,14 @@ msgstr "Endre tabellens navn" #~ "Spørrings statistikk: Siden oppstart, har %s spørringer blitt " #~ "sendt til tjeneren." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Oppfriskingen av privilegiene lyktes." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "Kan være unøyaktig. Se FAQ 3.11" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Spørringstype" @@ -10560,7 +10550,5 @@ msgstr "Endre tabellens navn" #~ msgid "Add a new User" #~ msgstr "Legg til en ny bruker" -#, fuzzy -#~| msgid "Show logo in left frame" #~ msgid "Show table row links on left side" #~ msgstr "Vis logo i venstre ramme" diff --git a/po/nl.po b/po/nl.po index 4171e358b7..e48d5948ec 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-04 15:19+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" @@ -1015,10 +1015,8 @@ msgstr "Dit is geen cijfer!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#, fuzzy -#| msgid "Log file count" msgid "Total count" -msgstr "Log file aantal" +msgstr "Totaal aantal" #: js/messages.php:54 msgid "The host name is empty!" @@ -1038,10 +1036,8 @@ msgstr "De wachtwoorden zijn niet gelijk!" #: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy -#| msgid "Any user" msgid "Add user" -msgstr "Een willekeurige gebruiker" +msgstr "Gebruiker toevoegen" #: js/messages.php:59 msgid "Reloading Privileges" @@ -1083,7 +1079,7 @@ msgstr "Query grafiek tonen" #: js/messages.php:70 msgid "Static data" -msgstr "" +msgstr "Statische data" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 @@ -1096,7 +1092,7 @@ msgstr "Totaal" #. l10n: Other, small valued, queries #: js/messages.php:74 server_status.php:595 msgid "Other" -msgstr "" +msgstr "Andere" #. l10n: Thousands separator #: js/messages.php:76 libraries/common.lib.php:1375 @@ -1207,10 +1203,8 @@ msgid "Create Table" msgstr "Maak tabel" #: js/messages.php:114 -#, fuzzy -#| msgid "Use Tables" msgid "Insert Table" -msgstr "Gebruik tabellen" +msgstr "Tabel toevoegen" #: js/messages.php:117 msgid "Searching" @@ -5025,24 +5019,20 @@ msgid "Language" msgstr "Taal" #: libraries/display_tbl.lib.php:397 -#, fuzzy -#| msgid "Textarea columns" msgid "Restore column order" -msgstr "Textarea kolommen" +msgstr "Herstel kolom volgorde" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" msgstr "" #: libraries/display_tbl.lib.php:412 -#, fuzzy -#| msgid "Click to select" msgid "Click to sort" -msgstr "Klik om te selecteren" +msgstr "Klik om te sorteren" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" -msgstr "" +msgstr "Klik om te markeren/demarkeren" #: libraries/display_tbl.lib.php:425 #, php-format @@ -8150,10 +8140,8 @@ msgid "wildcard" msgstr "jokerteken" #: server_privileges.php:2295 -#, fuzzy -#| msgid "View %s has been dropped" msgid "User has been added." -msgstr "View %s is verwijderd" +msgstr "Gebruiker is toegevoegd" #: server_replication.php:49 msgid "Unknown error" @@ -8430,16 +8418,12 @@ msgid "Runtime Information" msgstr "Runtime-informatie" #: server_status.php:400 -#, fuzzy -#| msgid "Server Choice" msgid "Server traffic" -msgstr "Serverkeuze" +msgstr "Serververkeer" #: server_status.php:402 -#, fuzzy -#| msgid "See slave status table" msgid "All status variables" -msgstr "Slave status tabel" +msgstr "alle status variabelen" #: server_status.php:455 #, fuzzy @@ -10407,8 +10391,6 @@ msgstr "VIEW-naam" msgid "Rename view to" msgstr "Hernoem view naar" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Seconde" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index adf2e41926..3908db51a1 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/pl.po b/po/pl.po index 0b449c2703..d668729c52 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: polish \n" @@ -715,16 +715,12 @@ msgid "Analyze table" msgstr "Analizuj tabelę" #: db_structure.php:522 -#, fuzzy -#| msgid "Go to table" msgid "Add prefix to table" -msgstr "Przejdź do tabeli" +msgstr "Dodaj prefiks do tabeli" #: db_structure.php:524 libraries/mult_submits.inc.php:246 -#, fuzzy -#| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "Zamiana danych tabeli z plikiem" +msgstr "Zmień prefiks tabeli" #: db_structure.php:526 libraries/mult_submits.inc.php:246 #, fuzzy @@ -10773,8 +10769,6 @@ msgstr "Nazwa widoku" msgid "Rename view to" msgstr "Zmień nazwę perspektywy na" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Sekunda" @@ -10803,8 +10797,6 @@ msgstr "Zmień nazwę perspektywy na" #~ msgid "Show processes" #~ msgstr "Pokaż procesy" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Resetuj" @@ -10823,27 +10815,17 @@ msgstr "Zmień nazwę perspektywy na" #~ "Statystyki zapytań: Od rozpoczęcia jego pracy, do serwera zostało " #~ "wysłanych %s zapytań." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Uprawnienia zostały pomyślnie przeładowane." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "Być może w przybliżeniu. Zobacz FAQ 3.11" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Rodzaj zapytania" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Dodaj nowego użytkownika" @@ -10853,8 +10835,6 @@ msgstr "Zmień nazwę perspektywy na" #~ msgid "Add a new User" #~ msgstr "Dodaj nowego użytkownika" -#, fuzzy -#~| msgid "Show logo in left frame" #~ msgid "Show table row links on left side" #~ msgstr "Pokaż logo w lewej ramce" diff --git a/po/pt.po b/po/pt.po index 851b852f79..b0d3aae322 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-03-26 03:23+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" @@ -113,6 +113,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" +"O ficheiro %s não está disponível no seu sistema, por favor visite www." +"phpmyadmin.net para mais informações." #: db_create.php:58 #, php-format @@ -815,7 +817,7 @@ msgstr "Introduza cada valor num campo separado." #: enum_editor.php:57 msgid "+ Restart insertion and add a new value" -msgstr "" +msgstr "+ Reiniciar inserção e adicionar um novo valor" #: enum_editor.php:67 msgid "Output" @@ -823,7 +825,7 @@ msgstr "" #: enum_editor.php:68 msgid "Copy and paste the joined values into the \"Length/Values\" field" -msgstr "" +msgstr "Copie e cole os valores juntos para o campo \"Comprimento/Valores\"" #: export.php:73 msgid "Selected export type has to be saved in file!" @@ -973,16 +975,12 @@ msgid "You are about to DESTROY a complete database!" msgstr "Estará prestes a DESTRUIR uma base de dados completa!" #: js/messages.php:32 -#, fuzzy -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "Estará prestes a DESTRUIR uma base de dados completa!" +msgstr "Está prestes a DESTRUIR uma base de dados completa!" #: js/messages.php:33 -#, fuzzy -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" -msgstr "Estará prestes a DESTRUIR uma base de dados completa!" +msgstr "Está prestes a TRUNCAR uma base de dados completa!" #: js/messages.php:34 msgid "Dropping Event" @@ -1049,10 +1047,8 @@ msgstr "" #: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy -#| msgid "Any user" msgid "Add user" -msgstr "Qualquer utilizador" +msgstr "Adicionar utilizador" #: js/messages.php:59 #, fuzzy @@ -1278,17 +1274,15 @@ msgstr "Guarda" #: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" -msgstr "" +msgstr "Esconder" #: js/messages.php:135 -#, fuzzy msgid "Hide search criteria" -msgstr "Comando SQL" +msgstr "Esconder critérios de buca" #: js/messages.php:136 -#, fuzzy msgid "Show search criteria" -msgstr "Comando SQL" +msgstr "Mostrar critérios de busca" #: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 @@ -1305,7 +1299,7 @@ msgstr "Seleccione Foreign Key" #: js/messages.php:144 msgid "Please select the primary key or a unique key" -msgstr "" +msgstr "Por favor seleccione a chave primária ou a chave única " #: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 #, fuzzy @@ -10149,17 +10143,12 @@ msgstr "" msgid "Rename view to" msgstr "Renomeia a vista para " -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "por segundo" -#, fuzzy -#~| msgid "SQL result" #~ msgid "Query results" #~ msgstr "Resultado SQL" -#, fuzzy #~ msgctxt "$strShowStatusReset" #~ msgid "Reset" #~ msgstr "Limpa" @@ -10167,8 +10156,6 @@ msgstr "Renomeia a vista para " #~ msgid "Show processes" #~ msgstr "Mostra os Processos" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Limpa" @@ -10187,13 +10174,9 @@ msgstr "Renomeia a vista para " #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "O privilégios foram recarregados com sucesso." -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Tipo de Query" diff --git a/po/pt_BR.po b/po/pt_BR.po index 766ae3de6d..bfffddf3ca 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-15 13:55+0200\n" "Last-Translator: Jose Ivan Bezerra Vilarouca Filho \n" "Language-Team: brazilian_portuguese \n" @@ -1037,10 +1037,8 @@ msgstr "As senhas não são iguais!" #: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy -#| msgid "Any user" msgid "Add user" -msgstr "Qualquer usuário" +msgstr "Adicionar usuário" #: js/messages.php:59 msgid "Reloading Privileges" @@ -1145,9 +1143,8 @@ msgid "Issued queries" msgstr "Consultas SQL" #: js/messages.php:89 server_status.php:401 -#, fuzzy msgid "Query statistics" -msgstr "Estatísticas do registros" +msgstr "Estatísticas de Query" #: js/messages.php:93 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 @@ -1198,57 +1195,41 @@ msgid "Changing Charset" msgstr "Modificando charset" #: js/messages.php:108 -#, fuzzy -#| msgid "Table must have at least one field." msgid "Table must have at least one column" -msgstr "Tabela deve ter pelo menos um campo." +msgstr "A tabela deve ter pelo menos uma coluna" #: js/messages.php:109 -#, fuzzy -#| msgid "Create table" msgid "Create Table" -msgstr "Criar tabela" +msgstr "Criar nova tabela" #: js/messages.php:114 -#, fuzzy -#| msgid "Use Tables" msgid "Insert Table" -msgstr "Usar tabelas" +msgstr "Inserir tabela" #: js/messages.php:117 -#, fuzzy -#| msgid "Search" msgid "Searching" -msgstr "Procurar" +msgstr "Buscando" #: js/messages.php:118 -#, fuzzy -#| msgid "Hide search criteria" msgid "Hide search results" -msgstr "Ocultar critério de pesquisa" +msgstr "Ocultar resultados da pesquisa" #: js/messages.php:119 -#, fuzzy -#| msgid "Show search criteria" msgid "Show search results" -msgstr "Exibir critério de pesquisa" +msgstr "Mostrar resultados da pesquisa" #: js/messages.php:120 -#, fuzzy -#| msgid "Browse" msgid "Browsing" -msgstr "Visualizar" +msgstr "Navegação" #: js/messages.php:121 -#, fuzzy -#| msgid "Deleting %s" msgid "Deleting" -msgstr "Eliminando %s" +msgstr "Apagando %s" #: js/messages.php:124 msgid "" "Note: If the file contains multiple tables, they will be combined into one" -msgstr "" +msgstr "Nota: Se o arquivo contém várias tabelas, elas serão combinadas em uma" #: js/messages.php:127 msgid "Hide query box" @@ -1259,10 +1240,8 @@ msgid "Show query box" msgstr "Mostrar caixa de consulta" #: js/messages.php:129 -#, fuzzy -#| msgid "Engines" msgid "Inline Edit" -msgstr "Engines" +msgstr "Editar linha" #: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 @@ -1303,20 +1282,20 @@ msgid "Please select the primary key or a unique key" msgstr "Por favor, selecione uma chave primária ou uma chave única" #: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545 -#, fuzzy -#| msgid "Choose field to display" msgid "Choose column to display" -msgstr "Escolha o campo para exibir" +msgstr "Marque a coluna para exibir" #: js/messages.php:146 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" +"Você não salvou as mudanças no layout. Eles serão perdidos se você não salva-" +"los. Deseja continuar mesmo assim?" #: js/messages.php:149 msgid "Add an option for column " -msgstr "" +msgstr "Adicionar uma opção para a coluna" #: js/messages.php:152 #, fuzzy @@ -1329,10 +1308,8 @@ msgid "Generate" msgstr "Gerar" #: js/messages.php:154 -#, fuzzy -#| msgid "Change password" msgid "Change Password" -msgstr "Alterar a senha" +msgstr "Alterar senha" #: js/messages.php:157 tbl_structure.php:471 msgid "More" @@ -1344,6 +1321,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" +"Uma nova versão do phpMyAdmin está disponível e você deve fazer a " +"atualização. A nova versão é %s, lançada em %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:162 @@ -1351,9 +1330,8 @@ msgid ", latest stable version:" msgstr ". última versão estável:" #: js/messages.php:163 -#, fuzzy msgid "up to date" -msgstr "Sem bases" +msgstr "até à data" #. l10n: Display text for calendar close link #: js/messages.php:181 @@ -1723,45 +1701,37 @@ msgid "Error" msgstr "Erro" #: libraries/Message.class.php:260 -#, fuzzy, php-format -#| msgid "%1$d row(s) affected." +#, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." -msgstr[0] "%1$d linha(s) afetadas." +msgstr[0] "%1$d linha afetada." msgstr[1] "%1$d linha(s) afetadas." #: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "%1$d row(s) deleted." +#, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d linhas(s) excluídas." +msgstr[0] "%1$d linhas excluída." msgstr[1] "%1$d linhas(s) excluídas." #: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "%1$d row(s) inserted." +#, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d linha(s) inseridas." +msgstr[0] "%1$d linha inserida." msgstr[1] "%1$d linha(s) inseridas." #: libraries/RecentTable.class.php:113 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" -msgstr "Não foi possível carregar configuração padrão de: \"%1$s\"" +msgstr "Não foi possível salvar a tabela recente" #: libraries/RecentTable.class.php:148 -#, fuzzy msgid "Recent tables" -msgstr "Sem tabelas" +msgstr "tabelas recentes" #: libraries/RecentTable.class.php:154 -#, fuzzy -#| msgid "There are no configured servers" msgid "There are no recent tables" -msgstr "Não existem servidores configurados" +msgstr "Não existem tabelas recentes" #: libraries/StorageEngine.class.php:194 msgid "" @@ -1805,7 +1775,7 @@ msgstr "Tabela %s renomeada para %s" #: libraries/Table.class.php:1272 msgid "Could not save table UI preferences" -msgstr "" +msgstr "Não foi possível salvar as preferências da tabela" #: libraries/Theme.class.php:160 #, php-format @@ -1886,7 +1856,7 @@ msgstr "Documentação do phpMyAdmin " #: libraries/auth/cookie.auth.lib.php:243 #: libraries/auth/cookie.auth.lib.php:244 msgid "You can enter hostname/IP address and port separated by space." -msgstr "" +msgstr "Você pode digitar a url/IP e a porta separados por um espaço." #: libraries/auth/cookie.auth.lib.php:243 msgid "Server:" @@ -1933,14 +1903,13 @@ msgid "Wrong username/password. Access denied." msgstr "Usuário ou senha incorreta. Acesso negado." #: libraries/auth/signon.auth.lib.php:87 -#, fuzzy msgid "Can not find signon authentication script:" -msgstr "Falha na autenticação de hardware" +msgstr "Não é possível encontrar o script de autenticação de logon" #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format msgid "File %s does not contain any key id" -msgstr "" +msgstr "Arquivo %s não contém qualquer identificação da chave" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 @@ -1949,7 +1918,7 @@ msgstr "Falha na autenticação de hardware" #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" -msgstr "" +msgstr "Nenhuma chave de autenticação válida foi conectada" #: libraries/auth/swekey/swekey.auth.lib.php:202 msgid "Authenticating..." @@ -1957,21 +1926,19 @@ msgstr "Autenticando..." #: libraries/blobstreaming.lib.php:241 msgid "PBMS error" -msgstr "" +msgstr "Erro PBMS" #: libraries/blobstreaming.lib.php:267 -#, fuzzy -#| msgid "MySQL connection collation" msgid "PBMS connection failed:" -msgstr "Collation de conexão do MySQL" +msgstr "Falha na conexão PBMS:" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" -msgstr "" +msgstr "o PBMS falhou na obtenção de informações BLOB:" #: libraries/blobstreaming.lib.php:320 msgid "get BLOB Content-Type failed" -msgstr "" +msgstr "a obtenção do Tipo de conteúdo do BLOB falhou" #: libraries/blobstreaming.lib.php:347 msgid "View image" @@ -1992,7 +1959,7 @@ msgstr "Baixar arquivo" #: libraries/blobstreaming.lib.php:421 #, php-format msgid "Could not open file: %s" -msgstr "" +msgstr "Não foi possível abrir o arquivo: %s" #: libraries/bookmark.lib.php:83 msgid "shared" @@ -2023,19 +1990,16 @@ msgid "Overhead" msgstr "Sobrecarga" #: libraries/build_html_for_db.lib.php:93 -#, fuzzy msgid "Jump to database" -msgstr "Sem bases" +msgstr "Ir para banco de dados" #: libraries/build_html_for_db.lib.php:130 msgid "Not replicated" -msgstr "" +msgstr "Não aplicavel" #: libraries/build_html_for_db.lib.php:136 -#, fuzzy -#| msgid "Replication" msgid "Replicated" -msgstr "Replicação" +msgstr "Replicado" #: libraries/build_html_for_db.lib.php:150 #, php-format @@ -2146,7 +2110,7 @@ msgstr "Mensagens do MySQL : " #: libraries/common.lib.php:1079 msgid "Failed to connect to SQL validator!" -msgstr "" +msgstr "Falha ao conectar ao validador SQL" #: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472 msgid "Explain SQL" @@ -2179,13 +2143,11 @@ msgstr "Validar SQL" #: libraries/common.lib.php:1246 msgid "Inline edit of this query" -msgstr "" +msgstr "Na linha de edição da presente consulta" #: libraries/common.lib.php:1248 -#, fuzzy -#| msgid "Engines" msgid "Inline" -msgstr "Engines" +msgstr "na linha" #: libraries/common.lib.php:1315 sql.php:921 msgid "Profiling" @@ -2316,17 +2278,15 @@ msgstr "Ambos" #: libraries/config.values.php:47 msgid "Nowhere" -msgstr "" +msgstr "Lugar nenhum" #: libraries/config.values.php:47 msgid "Left" -msgstr "" +msgstr "Esquerda" #: libraries/config.values.php:47 -#, fuzzy -#| msgid "Height" msgid "Right" -msgstr "Altura" +msgstr "Direita" #: libraries/config.values.php:75 msgid "Open" @@ -2387,24 +2347,23 @@ msgid "both of the above" msgstr "ambos acima" #: libraries/config.values.php:123 -#, fuzzy msgid "neither of the above" -msgstr "nenhuma das acima" +msgstr "nenhuma das acima." #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:422 msgid "Not a positive number" -msgstr "" +msgstr "Número não positivo" #: libraries/config/FormDisplay.class.php:84 #: libraries/config/validate.lib.php:435 msgid "Not a non-negative number" -msgstr "" +msgstr "Não é um número negativo" #: libraries/config/FormDisplay.class.php:85 #: libraries/config/validate.lib.php:409 msgid "Not a valid port number" -msgstr "" +msgstr "Número de porta inválido" #: libraries/config/FormDisplay.class.php:86 #: libraries/config/FormDisplay.class.php:574 @@ -2421,7 +2380,7 @@ msgstr "O valor precisa ser igual ou menor que %s" #: libraries/config/FormDisplay.class.php:538 #, php-format msgid "Missing data for %s" -msgstr "" +msgstr "dado faltante para %s" #: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:740 @@ -2432,21 +2391,21 @@ msgstr "indisponível" #: libraries/config/FormDisplay.class.php:741 #, php-format msgid "\"%s\" requires %s extension" -msgstr "" +msgstr "\"%s\" requer a extenção %s " #: libraries/config/FormDisplay.class.php:755 #, php-format msgid "import will not work, missing function (%s)" -msgstr "" +msgstr "Importação não funcionou, função faltante (%s)" #: libraries/config/FormDisplay.class.php:759 #, php-format msgid "export will not work, missing function (%s)" -msgstr "" +msgstr "exportação não vai funcionar, faltando função (%s)" #: libraries/config/FormDisplay.class.php:766 msgid "SQL Validator is disabled" -msgstr "" +msgstr "Validador SQL desativado" #: libraries/config/FormDisplay.class.php:773 msgid "SOAP extension not found" @@ -2460,6 +2419,7 @@ msgstr "máximo %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" +"Essa configuração está desativada, não será aplicado à sua configuração" #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89 #: libraries/relation.lib.php:96 pmd_relation_new.php:68 @@ -2469,16 +2429,16 @@ msgstr "Desabilitado" #: libraries/config/FormDisplay.tpl.php:248 #, php-format msgid "Set value: %s" -msgstr "" +msgstr "Definir valor: %s" #: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/messages.inc.php:356 msgid "Restore default value" -msgstr "" +msgstr "Restaurar valor padrão" #: libraries/config/FormDisplay.tpl.php:269 msgid "Allow users to customize this value" -msgstr "" +msgstr "Permitir a todos os usuários alterar esse valor" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320 @@ -2488,7 +2448,7 @@ msgstr "Restaurar" #: libraries/config/messages.inc.php:17 msgid "Improves efficiency of screen refresh" -msgstr "" +msgstr "Melhora a eficiência de atualização da tela" #: libraries/config/messages.inc.php:18 msgid "Enable Ajax" @@ -2498,11 +2458,12 @@ msgstr "Habilitar Ajax" msgid "" "If enabled user can enter any MySQL server in login form for cookie auth" msgstr "" +"Se o usuário habilitado pode entrar em qualquer servidor MySQL em formulário " +"de login por autenticação cookie" #: libraries/config/messages.inc.php:20 -#, fuzzy msgid "Allow login to any MySQL server" -msgstr "Não foi possível se logar no servidor MySQL" +msgstr "Permitir login para qualquer servidor MySQL" #: libraries/config/messages.inc.php:21 msgid "" @@ -2510,10 +2471,13 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" +"Ativando essa opção permite uma página localizada em um domínio diferente " +"para chamar phpMyAdmin dentro de um quadro, e é um potencial [strong] falha " +"de segurança [/strong], que permite ataques de script cross-frame" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" -msgstr "" +msgstr "Permitir elaboração de terceiros" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" @@ -10389,13 +10353,9 @@ msgstr "Nome da VISÃO" msgid "Rename view to" msgstr "Renomear a visão para " -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Segundo" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "Operações resultantes das consultas" @@ -10415,8 +10375,6 @@ msgstr "Renomear a visão para " #~ msgid "Show processes" #~ msgstr "Mostrar os Processos" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Restaurar" @@ -10435,15 +10393,9 @@ msgstr "Renomear a visão para " #~ "Estatísticas das consultas: Desde o início, %s consultas foram " #~ "enviadas para o servidor." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Os privilégios foram recarregados com sucesso." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" @@ -10458,8 +10410,6 @@ msgstr "Renomear a visão para " #~ msgid "Title" #~ msgstr "Título" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Tipo de consulta" diff --git a/po/ro.po b/po/ro.po index 80e806d529..c89d971b7d 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" @@ -10545,13 +10545,9 @@ msgstr "Denumire VIZIUNE" msgid "Rename view to" msgstr "Redenumire tabel la" -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "pe secundă" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "Operațiuni asupra rezultatelor interogării" @@ -10565,8 +10561,6 @@ msgstr "Redenumire tabel la" #~ msgid "Show processes" #~ msgstr "Afișează procesele" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Resetare" @@ -10585,31 +10579,20 @@ msgstr "Redenumire tabel la" #~ "Statistică interogări: De la început, s-au trimis %s interogări la " #~ "server." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Drepturile au fost reîncarcate cu succes." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "Poate fi aproximativ. Vezi FAQ 3.11" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Tip interogare" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Adaugă un utilizator nou" -#, fuzzy #~ msgid "Create User" #~ msgstr "Creare relație" diff --git a/po/ru.po b/po/ru.po index 2dc25e7b58..f213370b68 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-16 22:26+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" diff --git a/po/si.po b/po/si.po index 3ade63dda4..8f819cb01e 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-04 15:35+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" @@ -10076,8 +10076,6 @@ msgstr "දසුනේ නම" msgid "Rename view to" msgstr "දසුනේ නම වෙනස් කරන්න" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "තත්පර" @@ -10093,8 +10091,6 @@ msgstr "දසුනේ නම වෙනස් කරන්න" #~ msgid "GD extension is needed for charts." #~ msgstr "ප්‍රස්තාර සඳහා GD දිගුව අවැසිය." -# මෙවලම් ඉඟි = tooltips. Source: Glossary of Information Technology Terms - -# ICTA #~ msgid "JSON encoder is needed for chart tooltips." #~ msgstr "ප්‍රස්තාරයේ මෙවලම් ඉඟි සඳහා JSON කේතාංකනය අවැසිය." diff --git a/po/sk.po b/po/sk.po index 1b346b59ce..1b9c8d3393 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-03 14:53+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" @@ -1036,10 +1036,8 @@ msgstr "Heslá sa nezhodujú!" #: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy -#| msgid "Any user" msgid "Add user" -msgstr "Akýkoľvek používateľ" +msgstr "Pridať používateľa" #: js/messages.php:59 msgid "Reloading Privileges" @@ -1205,10 +1203,8 @@ msgid "Create Table" msgstr "Vytvoriť tabuľku" #: js/messages.php:114 -#, fuzzy -#| msgid "Use Tables" msgid "Insert Table" -msgstr "Použiť tabuľky" +msgstr "Pridať tabuľku" #: js/messages.php:117 msgid "Searching" @@ -1712,9 +1708,8 @@ msgstr[1] "Boli vložené %1$d riadky." msgstr[2] "Bolo vložených %1$d riadkov." #: libraries/RecentTable.class.php:113 -#, fuzzy msgid "Could not save recent table" -msgstr "Slave replikácia" +msgstr "Nepodarilo sa uložiť najnovšíu tabuľku" #: libraries/RecentTable.class.php:148 #, fuzzy @@ -10110,8 +10105,6 @@ msgstr "Meno pohľadu" msgid "Rename view to" msgstr "Premenovať pohľad na" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Sekundy" @@ -10189,8 +10182,6 @@ msgstr "Premenovať pohľad na" #~ msgid "Show table row links on right side" #~ msgstr "Zobrazí odkazy riadkov tabuľky na pravej strane" -#, fuzzy -#~| msgid "Dumping data for table" #~ msgid "Delete the matches for the " #~ msgstr "Sťahujem dáta pre tabuľku" diff --git a/po/sl.po b/po/sl.po index 6a19c6e525..3438f2afe4 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-16 22:33+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" diff --git a/po/sq.po b/po/sq.po index ce0998f5cb..0becdc2c6f 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" diff --git a/po/sr.po b/po/sr.po index 9dd1606880..72a93aa6d4 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" @@ -10472,13 +10472,9 @@ msgstr "назив за VIEW" msgid "Rename view to" msgstr "Промени име табеле у " -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "у секунди" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "Операције на резултатима упита" @@ -10492,8 +10488,6 @@ msgstr "Промени име табеле у " #~ msgid "Show processes" #~ msgstr "Прикажи листу процеса" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Поништи" @@ -10512,31 +10506,20 @@ msgstr "Промени име табеле у " #~ "Статистике упита: %s упита је постављено серверу од његовог " #~ "покретања." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Привилегије су успешно поново учитане." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "Може бити приближно. Видите FAQ 3.11" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Врста упита" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Додај новог корисника" -#, fuzzy #~ msgid "Create User" #~ msgstr "Направи релацију" diff --git a/po/sr@latin.po b/po/sr@latin.po index 04c7454728..0de4b34654 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" @@ -10460,13 +10460,9 @@ msgstr "naziv za VIEW" msgid "Rename view to" msgstr "Promeni ime tabele u " -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "u sekundi" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "Operacije na rezultatima upita" @@ -10480,8 +10476,6 @@ msgstr "Promeni ime tabele u " #~ msgid "Show processes" #~ msgstr "Prikaži listu procesa" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Poništi" @@ -10500,31 +10494,20 @@ msgstr "Promeni ime tabele u " #~ "Statistike upita: %s upita je postavljeno serveru od njegovog " #~ "pokretanja." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Privilegije su uspešno ponovo učitane." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "Može biti približno. Vidite FAQ 3.11" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Vrsta upita" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Dodaj novog korisnika" -#, fuzzy #~ msgid "Create User" #~ msgstr "Napravi relaciju" diff --git a/po/sv.po b/po/sv.po index 9eb39cf9be..857b259e56 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-16 00:11+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" diff --git a/po/ta.po b/po/ta.po index e9fafb408b..3886a22765 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" @@ -29,7 +29,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1114 #: libraries/schema/User_Schema.class.php:360 msgid "Page number:" -msgstr "" +msgstr "ஓலை என்" #: browse_foreigners.php:133 msgid "" @@ -43,7 +43,7 @@ msgstr "" #: libraries/common.lib.php:2953 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" -msgstr "" +msgstr "தேடல்" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:360 @@ -9632,8 +9632,6 @@ msgstr "" msgid "Rename view to" msgstr "" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "புதிய பயனாளரை சேர்க்க" diff --git a/po/te.po b/po/te.po index f2e3e500c5..7968bcbb19 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" @@ -9753,8 +9753,6 @@ msgstr "నామధేయమును చూపుము" msgid "Rename view to" msgstr "" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "క్షణం" @@ -9767,20 +9765,15 @@ msgstr "" #~ msgid "Title" #~ msgstr "శీర్షిక" -#, fuzzy -#~| msgid "Export type" #~ msgid "Bar type" #~ msgstr "ఎగుమతి రకం" -# మొదటి అనువాదము #~ msgid "Add a New User" #~ msgstr "కొత్త వాడుకరిని చేర్చు" -# మొదటి అనువాదము #~ msgid "Create User" #~ msgstr "వాడుకరిని సృష్టించు" -# మొదటి అనువాదము #~ msgid "Add a new User" #~ msgstr "క్రొత్త వాడుకరిని చేర్చు" diff --git a/po/th.po b/po/th.po index 8f062a2bbb..f6d5674ab3 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" @@ -10099,17 +10099,12 @@ msgstr "" msgid "Rename view to" msgstr "เปลี่ยนชื่อตารางเป็น" -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "ต่อวินาที" -#, fuzzy -#~| msgid "SQL result" #~ msgid "Query results" #~ msgstr "ผลลัพธ์ SQL" -#, fuzzy #~ msgctxt "$strShowStatusReset" #~ msgid "Reset" #~ msgstr "เริ่มใหม่" @@ -10117,8 +10112,6 @@ msgstr "เปลี่ยนชื่อตารางเป็น" #~ msgid "Show processes" #~ msgstr "แสดงงานที่ทำอยู่ของ MySQL" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "เริ่มใหม่" @@ -10135,22 +10128,15 @@ msgstr "เปลี่ยนชื่อตารางเป็น" #~ "the server." #~ msgstr "สถิติคำค้น: มี %s คำค้น ถูกส่งไปที่เซิร์ฟเวอร์ นับตั้งแต่เริ่มระบบ." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "ชนิดคำค้น" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "เพิ่มผู้ใช้ใหม่" -#, fuzzy #~ msgid "Create User" #~ msgstr "รุ่นของเซิร์ฟเวอร์" diff --git a/po/tr.po b/po/tr.po index fd07041cd8..c4ad269722 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-16 21:00+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" diff --git a/po/tt.po b/po/tt.po index f7e6faa356..de3447dbdf 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" @@ -10295,13 +10295,9 @@ msgstr "" msgid "Rename view to" msgstr "Tüşämä adın üzgärtü" -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "sekund sayın" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "Soraw qaytarmasın eşkärtü" @@ -10312,8 +10308,6 @@ msgstr "Tüşämä adın üzgärtü" #~ msgid "Show processes" #~ msgstr "Proseslär tezmäse" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Awdar" @@ -10331,31 +10325,20 @@ msgstr "Tüşämä adın üzgärtü" #~ msgstr "" #~ "Soraw nöfüse: Bu server yöklännän birle, aña taba %s soraw kilgän." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "Törle buluı bar. YBS 3.11 qarísı" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Soraw töre" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Yaña qullanuçı östäw" -#, fuzzy #~ msgid "Create User" #~ msgstr "Server söreme" diff --git a/po/ug.po b/po/ug.po index a6e6027a2d..5c5033e9ea 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" @@ -9849,15 +9849,9 @@ msgstr "" msgid "Rename view to" msgstr "" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "سېكنۇت" -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" @@ -9865,13 +9859,9 @@ msgstr "" #~ "ئېنىقسىزلىك بولۇشى مۇمكىن. [a@./Documentation.html#faq3_11@Documentation]" #~ "FAQ 3.11[/a] غا قاراڭ." -#, fuzzy -#~| msgid "Export" #~ msgid "Bar type" #~ msgstr "چىقىرىش" -#, fuzzy -#~| msgid "Create version" #~ msgid "Create User" #~ msgstr "نەشىرنى قۇىماق" diff --git a/po/uk.po b/po/uk.po index 65eda18de7..0ba3efc7f1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-12-28 22:26+0200\n" "Last-Translator: Olexiy Zagorskyi \n" "Language-Team: ukrainian \n" @@ -9886,8 +9886,6 @@ msgstr "" msgid "Rename view to" msgstr "" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "Секунда" @@ -9897,8 +9895,6 @@ msgstr "" #~ msgid "Show processes" #~ msgstr "Показати процеси" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Перевстановити" @@ -9917,13 +9913,9 @@ msgstr "" #~ "Статистика запитів: З моменту запуску, до сервера було надіслано " #~ "%s запитів." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Права успішно перезавантажено." -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Тип запиту" diff --git a/po/ur.po b/po/ur.po index 0bfc1e3c89..93d4407a99 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" @@ -9846,8 +9846,6 @@ msgstr "" msgid "Rename view to" msgstr "" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "سیکنڈ" @@ -9866,8 +9864,6 @@ msgstr "" #~ msgid "JSON encoder is needed for chart tooltips." #~ msgstr "JSON ضابطہ کار اس چارٹ ٹول ٹّوٹکے کے لیے درکار ہے۔" -#, fuzzy -#~| msgid "Export" #~ msgid "Bar type" #~ msgstr "برآمد" diff --git a/po/uz.po b/po/uz.po index fb4cd43100..245a6765c6 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" @@ -11016,13 +11016,9 @@ msgstr "Ном кўриниши" msgid "Rename view to" msgstr "Кўриниш номини ўзгартириш" -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "секундига" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "Сўров натижаларини ишлатиш" @@ -11036,8 +11032,6 @@ msgstr "Кўриниш номини ўзгартириш" #~ msgid "Show processes" #~ msgstr "Жараёнлар рўйхати" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Тозалаш" @@ -11056,15 +11050,9 @@ msgstr "Кўриниш номини ўзгартириш" #~ "Сўровлар статискаси: ишга туширилгандан вақтдан бошлаб серверга юборилган " #~ "сўровлар сони - \"%s\"." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Привилегиялар муваффақиятли қайта юкланди." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" @@ -11072,31 +11060,21 @@ msgstr "Кўриниш номини ўзгартириш" #~ "Тахминий бўлиши мумкин. [a@./Documentation." #~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "Сўров тури" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Янги фойдаланувчи қўшиш" -#, fuzzy -#~| msgid "Create version" #~ msgid "Create User" #~ msgstr "Версиясини тузиш" #~ msgid "Add a new User" #~ msgstr "Янги фойдаланувчи қўшиш" -#, fuzzy -#~| msgid "Show logo in left frame" #~ msgid "Show table row links on left side" #~ msgstr "Чап рамкада логотипни кўрсатиш" -#, fuzzy -#~| msgid "Delete tracking data for this table" #~ msgid "Delete the matches for the " #~ msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" diff --git a/po/uz@latin.po b/po/uz@latin.po index ec2566bb9b..8830456111 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" @@ -11082,13 +11082,9 @@ msgstr "Nom ko‘rinishi" msgid "Rename view to" msgstr "Ko‘rinish nomini o‘zgartirish" -#, fuzzy -#~| msgid "per second" #~ msgid "seconds" #~ msgstr "sekundiga" -#, fuzzy -#~| msgid "Query results operations" #~ msgid "Query results" #~ msgstr "So‘rov natijalarini ishlatish" @@ -11102,8 +11098,6 @@ msgstr "Ko‘rinish nomini o‘zgartirish" #~ msgid "Show processes" #~ msgstr "Jarayonlar ro‘yxati" -#, fuzzy -#~| msgid "Reset" #~ msgctxt "for Show status" #~ msgid "Reset" #~ msgstr "Tozalash" @@ -11122,15 +11116,9 @@ msgstr "Ko‘rinish nomini o‘zgartirish" #~ "So‘rovlar statiskasi: ishga tushirilgandan vaqtdan boshlab serverga " #~ "yuborilgan so‘rovlar soni - \"%s\"." -#, fuzzy -#~| msgid "The privileges were reloaded successfully." #~ msgid "Chart generated successfully." #~ msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#, fuzzy -#~| msgid "" -#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" -#~| "FAQ 3.11[/a]" #~ msgid "" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" @@ -11138,26 +11126,18 @@ msgstr "Ko‘rinish nomini o‘zgartirish" #~ "Taxminiy bo‘lishi mumkin. [a@./Documentation." #~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" -#, fuzzy -#~| msgid "Query type" #~ msgid "Bar type" #~ msgstr "So‘rov turi" -#, fuzzy -#~| msgid "Add a new User" #~ msgid "Add a New User" #~ msgstr "Yangi foydalanuvchi qo‘shish" -#, fuzzy -#~| msgid "Create version" #~ msgid "Create User" #~ msgstr "Vеrsiyasini tuzish" #~ msgid "Add a new User" #~ msgstr "Yangi foydalanuvchi qo‘shish" -#, fuzzy -#~| msgid "Show logo in left frame" #~ msgid "Show table row links on left side" #~ msgstr "Chap ramkada logotipni ko‘rsatish" diff --git a/po/zh_CN.po b/po/zh_CN.po index e32a277eb0..8ed40b3554 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-08 05:00+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" @@ -9907,8 +9907,6 @@ msgstr "视图名" msgid "Rename view to" msgstr "将视图改名为" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "秒" diff --git a/po/zh_TW.po b/po/zh_TW.po index 5dad1f16c8..ae45be86ee 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1,10 +1,11 @@ +# msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:36+0200\n" +"POT-Creation-Date: 2011-06-17 10:58+0200\n" "PO-Revision-Date: 2011-06-12 05:41+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" @@ -3470,9 +3471,8 @@ msgid "" msgstr "一個指令可分配到的記憶體大小,例 [kbd]32MB[kbd] ([kbd]0[/kbd]爲不限制)" #: libraries/config/messages.inc.php:318 -#, fuzzy msgid "Memory limit" -msgstr "記憶體限制" +msgstr "內存限制" #: libraries/config/messages.inc.php:319 msgid "These are Edit, Inline edit, Copy and Delete links" @@ -3487,8 +3487,6 @@ msgid "Use natural order for sorting table and database names" msgstr "爲資料庫和資料資料表名稱使用自然排序" #: libraries/config/messages.inc.php:322 -#, fuzzy -#| msgid "Alter table order by" msgid "Natural order" msgstr "自然排序" @@ -3585,22 +3583,16 @@ msgid "Query window height (in pixels)" msgstr "查詢視窗高度 (單位:像素)" #: libraries/config/messages.inc.php:345 -#, fuzzy -#| msgid "Query window" msgid "Query window height" -msgstr "查詢視窗高度" +msgstr "查詢窗口高度" #: libraries/config/messages.inc.php:346 -#, fuzzy -#| msgid "Query window" msgid "Query window width (in pixels)" -msgstr "查詢視窗寬度 (單位:像素)" +msgstr "查詢窗口寬度 (單位:像素)" #: libraries/config/messages.inc.php:347 -#, fuzzy -#| msgid "Query window" msgid "Query window width" -msgstr "查詢視窗寬度" +msgstr "查詢窗口寬度" #: libraries/config/messages.inc.php:348 msgid "Select which functions will be used for character set conversion" @@ -3625,8 +3617,6 @@ msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "每 X 單元格重複表頭,要禁止此功能請設爲 [kbd]0[/kbd]" #: libraries/config/messages.inc.php:353 -#, fuzzy -#| msgid "Repair threads" msgid "Repeat headers" msgstr "重複表頭" @@ -3643,9 +3633,8 @@ msgid "Directory where exports can be saved on server" msgstr "伺服器上用來儲存匯出檔案的資料夾" #: libraries/config/messages.inc.php:358 -#, fuzzy msgid "Save directory" -msgstr "儲存資料夾" +msgstr "保存文件夾" #: libraries/config/messages.inc.php:359 msgid "Leave blank if not used" @@ -3735,9 +3724,8 @@ msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "怎樣連線到伺服器,如果不確定,請選擇 tcp" #: libraries/config/messages.inc.php:378 -#, fuzzy msgid "Connection type" -msgstr "連線方式" +msgstr "連接方式" #: libraries/config/messages.inc.php:379 msgid "Control user password" @@ -3760,7 +3748,6 @@ msgid "Count tables when showing database list" msgstr "顯示資料庫列表時計算資料表的數量" #: libraries/config/messages.inc.php:383 -#, fuzzy msgid "Count tables" msgstr "統計資料表" @@ -3771,7 +3758,6 @@ msgid "" msgstr "不使用設計功能請留空,預設:[kbd]pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:385 -#, fuzzy msgid "Designer table" msgstr "設計表" @@ -3800,7 +3786,6 @@ msgid "Hide databases matching regular expression (PCRE)" msgstr "該正則表達式 (PCRE,Perl 相容) 所符合的資料庫將被隱藏" #: libraries/config/messages.inc.php:391 -#, fuzzy msgid "Hide databases" msgstr "隱藏資料庫" @@ -3819,7 +3804,6 @@ msgid "Hostname where MySQL server is running" msgstr "MySQL 伺服器的主機名" #: libraries/config/messages.inc.php:395 -#, fuzzy msgid "Server hostname" msgstr "伺服器主機名" @@ -3878,8 +3862,6 @@ msgstr "" "pmadb]pmadb [/a]。不使用請留空。預設: [kbd]phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:406 -#, fuzzy -#| msgid "database name" msgid "Database name" msgstr "資料庫名" @@ -3888,9 +3870,8 @@ msgid "Port on which MySQL server is listening, leave empty for default" msgstr "MySQL 伺服器監聽的連接埠,留空爲預設" #: libraries/config/messages.inc.php:408 -#, fuzzy msgid "Server port" -msgstr "伺服器連接埠" +msgstr "伺服器端口" #: libraries/config/messages.inc.php:409 msgid "" @@ -3913,9 +3894,8 @@ msgstr "" "設:[kbd]pma_relation[/kbd]" #: libraries/config/messages.inc.php:412 -#, fuzzy msgid "Relation table" -msgstr "關聯表" +msgstr "關係表" #: libraries/config/messages.inc.php:413 msgid "SQL command to fetch available databases" @@ -3945,9 +3925,8 @@ msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "MySQL 伺服器監聽的連線埠,留空爲預設" #: libraries/config/messages.inc.php:419 -#, fuzzy msgid "Server socket" -msgstr "伺服器連線埠 (socket)" +msgstr "伺服器套接字 (socket)" #: libraries/config/messages.inc.php:420 msgid "Enable SSL for connection to MySQL server" @@ -3973,10 +3952,8 @@ msgid "" msgstr "描述顯示欄位的表,不使用請留空,預設:[kbd]pma_table_info[/kbd]" #: libraries/config/messages.inc.php:425 -#, fuzzy -#| msgid "Displaying Column Comments" msgid "Display columns table" -msgstr "顯示欄位表" +msgstr "顯示字段表" #: libraries/config/messages.inc.php:426 msgid "" @@ -4025,8 +4002,6 @@ msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "定義自動建立新版的命令列表" #: libraries/config/messages.inc.php:435 -#, fuzzy -#| msgid "Statements" msgid "Statements to track" msgstr "要追蹤的命令" @@ -4047,8 +4022,6 @@ msgid "" msgstr "設定追蹤系統是否自動爲資料表和 view建立版本" #: libraries/config/messages.inc.php:439 -#, fuzzy -#| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "自動建立版本" @@ -4118,10 +4091,8 @@ msgid "" msgstr "定義在編輯/插入模式中是否顯示欄位類型一列" #: libraries/config/messages.inc.php:454 -#, fuzzy -#| msgid "Show open tables" msgid "Show field types" -msgstr "顯示欄位類型" +msgstr "顯示字段類型" #: libraries/config/messages.inc.php:455 msgid "Display the function fields in edit/insert mode" @@ -4151,7 +4122,6 @@ msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "定義是否顯示 phpMyAdmin 產生的 SQL 查詢" #: libraries/config/messages.inc.php:461 -#, fuzzy msgid "Show SQL queries" msgstr "顯示 SQL 查詢" @@ -4160,7 +4130,6 @@ msgid "Allow to display database and table statistics (eg. space usage)" msgstr "允許顯示資料庫和資料表的統計資訊 (如:空間使用)" #: libraries/config/messages.inc.php:463 -#, fuzzy msgid "Show statistics" msgstr "顯示統計" @@ -4200,7 +4169,6 @@ msgid "" msgstr "將已鎖定的資料表在資料庫中顯示爲使用中" #: libraries/config/messages.inc.php:470 -#, fuzzy msgid "Skip locked tables" msgstr "跳過鎖定的表" @@ -4236,9 +4204,8 @@ msgstr "如果您有自己的帳號,請在這裏輸入 (預設爲 [kbd]anonymo #: libraries/config/messages.inc.php:481 tbl_tracking.php:454 #: tbl_tracking.php:511 -#, fuzzy msgid "Username" -msgstr "帳號" +msgstr "使用者名" #: libraries/config/messages.inc.php:482 msgid "" @@ -4267,10 +4234,8 @@ msgstr "" "(*1.25)" #: libraries/config/messages.inc.php:487 -#, fuzzy -#| msgid "Add/Delete Field Columns" msgid "Textarea columns" -msgstr "文字框列" +msgstr "文本框列" #: libraries/config/messages.inc.php:488 msgid "" @@ -4293,10 +4258,8 @@ msgid "Title of browser window when nothing is selected" msgstr "未選擇時瀏覽器視窗的標題" #: libraries/config/messages.inc.php:493 -#, fuzzy -#| msgid "Default" msgid "Default title" -msgstr "預設標題" +msgstr "默認標題" #: libraries/config/messages.inc.php:494 msgid "Title of browser window when a server is selected" @@ -4726,8 +4689,6 @@ msgid "Character set of the file:" msgstr "檔案的字集:" #: libraries/display_export.lib.php:311 -#, fuzzy -#| msgid "Compression" msgid "Compression:" msgstr "壓縮:" @@ -4738,28 +4699,20 @@ msgid "None" msgstr "無" #: libraries/display_export.lib.php:315 -#, fuzzy -#| msgid "\"zipped\"" msgid "zipped" msgstr "zip 壓縮" #: libraries/display_export.lib.php:317 -#, fuzzy -#| msgid "\"gzipped\"" msgid "gzipped" msgstr "gzip 壓縮" #: libraries/display_export.lib.php:319 -#, fuzzy -#| msgid "\"bzipped\"" msgid "bzipped" msgstr "bzip 壓縮" #: libraries/display_export.lib.php:328 -#, fuzzy -#| msgid "Save as file" msgid "View output as text" -msgstr "直接顯示爲文字" +msgstr "直接顯示為文本" #: libraries/display_export.lib.php:333 libraries/display_import.lib.php:244 #: libraries/export/codegen.php:37 @@ -4767,8 +4720,6 @@ msgid "Format:" msgstr "格式:" #: libraries/display_export.lib.php:338 -#, fuzzy -#| msgid "Transformation options" msgid "Format-specific options:" msgstr "格式特定選項:" @@ -4779,7 +4730,6 @@ msgid "" msgstr "請下拉至所選格式並設定選項,其它格式請忽略" #: libraries/display_export.lib.php:347 libraries/display_import.lib.php:260 -#, fuzzy msgid "Encoding Conversion:" msgstr "編碼轉換:" @@ -4932,32 +4882,24 @@ msgstr "主鍵排序" #: libraries/import/sql.php:19 libraries/import/xls.php:27 #: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231 #: tbl_structure.php:847 -#, fuzzy msgid "Options" msgstr "選項" #: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600 -#, fuzzy -#| msgid "Partial Texts" msgid "Partial texts" msgstr "部分內容" #: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604 -#, fuzzy -#| msgid "Full Texts" msgid "Full texts" msgstr "完整內容" #: libraries/display_tbl.lib.php:617 -#, fuzzy msgid "Relational key" msgstr "關聯鍵" #: libraries/display_tbl.lib.php:618 -#, fuzzy -#| msgid "Relational schema" msgid "Relational display column" -msgstr "關聯顯示欄位" +msgstr "關聯顯示字段" #: libraries/display_tbl.lib.php:625 msgid "Show binary contents" @@ -5016,15 +4958,12 @@ msgid "Print view (with full texts)" msgstr "列印預覽 (全文顯示)" #: libraries/display_tbl.lib.php:2454 tbl_chart.php:83 -#, fuzzy -#| msgid "Display PDF schema" msgid "Display chart" msgstr "顯示圖表" #: libraries/display_tbl.lib.php:2473 -#, fuzzy msgid "Create view" -msgstr "建立 view" +msgstr "新建視圖" #: libraries/display_tbl.lib.php:2588 msgid "Link not found" @@ -6456,10 +6395,8 @@ msgid "Current Server" msgstr "目前伺服器" #: libraries/server_links.inc.php:73 -#, fuzzy -#| msgid "General relation features" msgid "Settings" -msgstr "一般關聯功能" +msgstr "設定" #: libraries/server_links.inc.php:79 server_synchronize.php:1087 #: server_synchronize.php:1095 @@ -6518,15 +6455,12 @@ msgstr "在資料庫 %s 運行 SQL 查詢" #: libraries/sql_query_form.lib.php:296 navigation.php:296 #: setup/frames/index.inc.php:231 -#, fuzzy msgid "Clear" msgstr "清除" #: libraries/sql_query_form.lib.php:301 -#, fuzzy -#| msgid "Column names" msgid "Columns" -msgstr "欄位" +msgstr "字段" #: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017 msgid "Bookmark this SQL query" @@ -6722,16 +6656,13 @@ msgid "" msgstr "此轉換沒有說明。
詳細功能請詢問 %s 的作者" #: libraries/tbl_properties.inc.php:625 tbl_structure.php:636 -#, fuzzy, php-format -#| msgid "Add %s field(s)" +#, php-format msgid "Add %s column(s)" -msgstr "新增 %s 個欄位" +msgstr "增加 %s 個字段" #: libraries/tbl_properties.inc.php:627 tbl_structure.php:630 -#, fuzzy -#| msgid "You have to add at least one field." msgid "You have to add at least one column." -msgstr "至少要新增一個欄位" +msgstr "至少要增加一個字段。" #: libraries/tbl_properties.inc.php:735 server_engines.php:56 #: tbl_operations.php:370 @@ -6743,9 +6674,8 @@ msgid "PARTITION definition" msgstr "分區定義" #: libraries/tbl_properties.inc.php:795 -#, fuzzy msgid "+ Add a new value" -msgstr "+ 新增" +msgstr "+ 增加" #: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926 msgid "Time" @@ -6957,19 +6887,14 @@ msgid "Official Homepage" msgstr "官方首頁" #: main.php:217 -#, fuzzy -#| msgid "Attributes" msgid "Contribute" msgstr "貢獻" #: main.php:218 -#, fuzzy msgid "Get support" -msgstr "取得支援" +msgstr "獲取支持" #: main.php:219 -#, fuzzy -#| msgid "No change" msgid "List of changes" msgstr "更新列表" @@ -7036,14 +6961,12 @@ msgstr "" "好,請立即刪除該資料夾" #: main.php:299 -#, fuzzy, php-format -#| msgid "" -#| "The additional features for working with linked tables have been " -#| "deactivated. To find out why click %shere%s." +#, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." -msgstr "phpMyAdmin 進階功能未全部設定,部分功能不可用。要查出原因請%s點這裏%s" +msgstr "" +"phpMyAdmin 高級功能未全部設定,部分功能不可用。要查出原因請%s點這裡%s。" #: main.php:314 msgid "" @@ -7079,16 +7002,13 @@ msgid "Filter" msgstr "過濾" #: navigation.php:297 -#, fuzzy -#| msgid "Alter table order by" msgid "filter tables by name" -msgstr "請輸入部分或完整的資料表名稱" +msgstr "請輸入部分或完整的表名" #: navigation.php:330 navigation.php:331 -#, fuzzy msgctxt "short form" msgid "Create table" -msgstr "建立資料表" +msgstr "新建資料表" #: navigation.php:336 navigation.php:508 msgid "Please select a database" @@ -9059,14 +8979,12 @@ msgid "Display" msgstr "顯示" #: setup/frames/index.inc.php:228 -#, fuzzy msgid "Load" -msgstr "載入" +msgstr "加載" #: setup/frames/index.inc.php:239 -#, fuzzy msgid "phpMyAdmin homepage" -msgstr "phpMyAdmin 首頁 " +msgstr "phpMyAdmin 主頁 (外鏈,英文)" #: setup/frames/index.inc.php:240 msgid "Donate" @@ -9290,10 +9208,8 @@ msgid "Showing SQL query" msgstr "顯示 SQL 查詢" #: sql.php:666 -#, fuzzy -#| msgid "Validate SQL" msgid "Validated SQL" -msgstr "已檢驗的 SQL" +msgstr "已校驗的 SQL" #: sql.php:973 #, php-format @@ -9559,14 +9475,10 @@ msgid "Table %s has been flushed" msgstr "已強制更新表 %s " #: tbl_operations.php:668 -#, fuzzy -#| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" -msgstr "重新整理表 (FLUSH)" +msgstr "刷新表 (FLUSH)" #: tbl_operations.php:677 -#, fuzzy -#| msgid "Dumping data for table" msgid "Delete data or table" msgstr "刪除資料或資料表" @@ -9575,12 +9487,10 @@ msgid "Empty the table (TRUNCATE)" msgstr "清空資料表 (TRUNCATE)" #: tbl_operations.php:712 -#, fuzzy msgid "Delete the table (DROP)" msgstr "刪除資料表 (DROP)" #: tbl_operations.php:733 -#, fuzzy msgid "Partition maintenance" msgstr "分區維護" @@ -9594,7 +9504,6 @@ msgid "Analyze" msgstr "分析" #: tbl_operations.php:745 -#, fuzzy msgid "Check" msgstr "檢查" @@ -9607,7 +9516,6 @@ msgid "Rebuild" msgstr "重建" #: tbl_operations.php:748 -#, fuzzy msgid "Repair" msgstr "修復" @@ -9984,8 +9892,6 @@ msgstr " view名" msgid "Rename view to" msgstr "將 view改名爲" -#, fuzzy -#~| msgid "Second" #~ msgid "seconds" #~ msgstr "秒" From 1c0e4c36f2c497b1e59925625e146ef5f01cea44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 11:02:28 +0200 Subject: [PATCH 297/340] These translations are obviously wrong --- po/az.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/az.po b/po/az.po index db9b41091c..b658a4ceeb 100644 --- a/po/az.po +++ b/po/az.po @@ -32,7 +32,7 @@ msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." -msgstr "alalal" +msgstr "" #: browse_foreigners.php:151 libraries/common.lib.php:2763 #: libraries/common.lib.php:2770 libraries/common.lib.php:2952 @@ -87,7 +87,7 @@ msgstr "Haqqında" #: browse_foreigners.php:248 browse_foreigners.php:257 #: browse_foreigners.php:269 browse_foreigners.php:277 msgid "Use this value" -msgstr "sex" +msgstr "" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 #: libraries/blobstreaming.lib.php:331 From bbe388010b4ce9821fa9bd4d8be02ea92847f5ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 11:03:03 +0200 Subject: [PATCH 298/340] Update based on master --- po/az.po | 4 +- po/da.po | 351 +++++++++++++++++++++++++++++----------------------- po/fi.po | 16 +-- po/hu.po | 4 +- po/id.po | 13 +- po/mk.po | 8 +- po/ms.po | 10 +- po/pt.po | 10 +- po/pt_BR.po | 56 +++++---- po/ta.po | 4 +- 10 files changed, 267 insertions(+), 209 deletions(-) diff --git a/po/az.po b/po/az.po index 94cebcff7e..1b859aab0d 100644 --- a/po/az.po +++ b/po/az.po @@ -100,7 +100,7 @@ msgstr "" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "Uzaqdaki linke qosula bilmedim " #: changelog.php:32 license.php:28 #, php-format @@ -108,6 +108,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" +"%s fayli systemde yoxdur,zehmet olmasa www.phpmyadmin.net saytini ziyaret " +"edin" #: db_create.php:58 #, fuzzy, php-format diff --git a/po/da.po b/po/da.po index 9ba813552d..3d4c194874 100644 --- a/po/da.po +++ b/po/da.po @@ -96,7 +96,7 @@ msgstr "Brug denne værdi" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 #: libraries/blobstreaming.lib.php:331 msgid "No blob streaming server configured!" -msgstr "" +msgstr "Ingen blob streaming server konfigureret!" #: bs_disp_as_mime_type.php:35 msgid "Failed to fetch headers" @@ -112,6 +112,7 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" +"Filen %s er ikke tilgængelig, besøg www.phpmyadmin.net for mere information." #: db_create.php:58 #, php-format @@ -610,11 +611,11 @@ msgstr "Tabel %s er slettet" #: db_structure.php:293 tbl_create.php:295 msgid "Tracking is active." -msgstr "" +msgstr "Sporing er aktiv." #: db_structure.php:295 tbl_create.php:297 msgid "Tracking is not active." -msgstr "" +msgstr "Sporing er ikke aktiv." #: db_structure.php:379 libraries/display_tbl.lib.php:2043 #, php-format @@ -716,7 +717,7 @@ msgstr "Data Dictionary" #: db_tracking.php:79 msgid "Tracked tables" -msgstr "" +msgstr "Sporede tabeller" #: db_tracking.php:84 libraries/config/messages.inc.php:482 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 @@ -733,15 +734,15 @@ msgstr "Database" #: db_tracking.php:86 msgid "Last version" -msgstr "" +msgstr "Seneste version" #: db_tracking.php:87 tbl_tracking.php:588 msgid "Created" -msgstr "" +msgstr "Oprettet" #: db_tracking.php:88 tbl_tracking.php:589 msgid "Updated" -msgstr "" +msgstr "Opdateret" #: db_tracking.php:89 libraries/common.lib.php:1354 #: libraries/server_links.inc.php:50 server_processlist.php:71 @@ -758,49 +759,49 @@ msgstr "Handling" #: db_tracking.php:101 js/messages.php:34 msgid "Delete tracking data for this table" -msgstr "" +msgstr "Sletter sporingsdata for denne tabel." #: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600 msgid "active" -msgstr "" +msgstr "aktiv" #: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602 msgid "not active" -msgstr "" +msgstr "ikke aktiv" #: db_tracking.php:134 msgid "Versions" -msgstr "" +msgstr "Versioner" #: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619 msgid "Tracking report" -msgstr "" +msgstr "Sporingsrapport" #: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619 msgid "Structure snapshot" -msgstr "" +msgstr "Øjebliksbillede af struktur" #: db_tracking.php:181 msgid "Untracked tables" -msgstr "" +msgstr "Ikke-sporede tabeller" #: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622 #: tbl_structure.php:624 msgid "Track table" -msgstr "" +msgstr "Spor tabel" #: db_tracking.php:229 msgid "Database Log" -msgstr "" +msgstr "Database log" #: enum_editor.php:21 libraries/tbl_properties.inc.php:793 #, php-format msgid "Values for the column \"%s\"" -msgstr "" +msgstr "Værdier for kolonnen \"%s\"" #: enum_editor.php:22 libraries/tbl_properties.inc.php:794 msgid "Enter each value in a separate field." -msgstr "" +msgstr "Indtast hver værdi i et seperat felt." #: enum_editor.php:57 msgid "+ Restart insertion and add a new value" @@ -939,11 +940,11 @@ msgstr "" #: server_synchronize.php:738 server_synchronize.php:766 #: server_synchronize.php:794 server_synchronize.php:806 msgid "Click to select" -msgstr "" +msgstr "Klik for at vælge" #: js/messages.php:26 msgid "Click to unselect" -msgstr "" +msgstr "Klik for at fravælge" #: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 msgid "\"DROP DATABASE\" statements are disabled." @@ -975,7 +976,7 @@ msgstr "Tillader indsættelse og erstatning af data." #: js/messages.php:36 msgid "Dropping Primary Key/Index" -msgstr "" +msgstr "Fjerner primærnøgle/indeks" #: js/messages.php:37 msgid "This operation could take a long time. Proceed anyway?" @@ -1041,7 +1042,7 @@ msgstr "Fjern valgte brugere" #: js/messages.php:56 libraries/tbl_properties.inc.php:792 #: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" -msgstr "" +msgstr "Luk" #: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 @@ -1051,7 +1052,7 @@ msgstr "Annuller" #: js/messages.php:63 msgid "Loading" -msgstr "" +msgstr "Indlæser" #: js/messages.php:64 #, fuzzy @@ -1061,7 +1062,7 @@ msgstr "Processer" #: js/messages.php:65 libraries/import/ods.php:80 msgid "Error in Processing Request" -msgstr "" +msgstr "Felj i udførsel af forespørgsel" #: js/messages.php:66 msgid "Dropping Column" @@ -1069,7 +1070,7 @@ msgstr "" #: js/messages.php:67 msgid "Adding Primary Key" -msgstr "" +msgstr "Tilføjer primær nøgle" #: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 @@ -1196,7 +1197,7 @@ msgstr "Vælg felt der skal vises" #: js/messages.php:107 msgid "Add an option for column " -msgstr "" +msgstr "Tilføj mulighed for kolonne" #: js/messages.php:110 #, fuzzy @@ -1226,11 +1227,13 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" +"En nyere version af phpMyAdmin er tilgængelig og du bør overveje at " +"opgradere. Den nyeste version er %s, udgivet den %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:120 msgid ", latest stable version:" -msgstr "" +msgstr ", seneste stabile version:" #. l10n: Display text for calendar close link #: js/messages.php:138 @@ -1269,7 +1272,7 @@ msgstr " Binært " #: js/messages.php:148 msgid "February" -msgstr "" +msgstr "februar" #: js/messages.php:149 #, fuzzy @@ -1307,7 +1310,7 @@ msgstr "aug" #: js/messages.php:155 msgid "September" -msgstr "" +msgstr "september" #: js/messages.php:156 #, fuzzy @@ -1317,11 +1320,11 @@ msgstr "okt" #: js/messages.php:157 msgid "November" -msgstr "" +msgstr "november" #: js/messages.php:158 msgid "December" -msgstr "" +msgstr "december" #. l10n: Short month name #: js/messages.php:162 libraries/common.lib.php:1569 @@ -1509,11 +1512,11 @@ msgstr "lør" #. l10n: Column header for week of the year in calendar #: js/messages.php:227 msgid "Wk" -msgstr "" +msgstr "uge" #: js/messages.php:229 msgid "Hour" -msgstr "" +msgstr "Time" #: js/messages.php:230 #, fuzzy @@ -1586,7 +1589,7 @@ msgstr "Unik" #: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" -msgstr "" +msgstr "Pakket" #: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" @@ -1594,7 +1597,7 @@ msgstr "Kardinalitet" #: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" -msgstr "" +msgstr "Kommentar" #: libraries/Index.class.php:471 msgid "The primary key has been dropped" @@ -1611,6 +1614,8 @@ msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" +"Indeks %1$ ser ud til at være identisk med indeks %2$, så et af dem kan " +"sikkert fjernes" #: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:42 server_databases.php:100 @@ -1768,6 +1773,8 @@ msgstr "phpMyAdmin dokumentation" #: libraries/auth/cookie.auth.lib.php:245 msgid "You can enter hostname/IP address and port separated by space." msgstr "" +"Du kan angive værtsnavn/IP adresse og port ved at adskille dem med et " +"mellemrum" #: libraries/auth/cookie.auth.lib.php:244 msgid "Server:" @@ -1794,6 +1801,8 @@ msgstr "Herefter skal cookies være slået til." msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" +"Det er ifølge konfigurationen ikke tilladt at logge ind uden en adgangskkode " +"(se AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:648 #: libraries/auth/signon.auth.lib.php:226 @@ -1815,12 +1824,12 @@ msgstr "Forkert brugernavn/kodeord. Adgang nægtet." #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format msgid "File %s does not contain any key id" -msgstr "" +msgstr "Filen %s indeholder ikke noget nøgle-id" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 msgid "Hardware authentication failed" -msgstr "" +msgstr "Godkendelse af hardware mislykkedes" #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" @@ -1828,11 +1837,11 @@ msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 msgid "Authenticating..." -msgstr "" +msgstr "Godkender..." #: libraries/blobstreaming.lib.php:241 msgid "PBMS error" -msgstr "" +msgstr "PBMS-fejl" #: libraries/blobstreaming.lib.php:267 #, fuzzy @@ -1842,36 +1851,36 @@ msgstr "MySQL forbindelses-sammenkøring" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" -msgstr "" +msgstr "PBMS hent BLOB info mislykkedes" #: libraries/blobstreaming.lib.php:320 msgid "get BLOB Content-Type failed" -msgstr "" +msgstr "hent BLOB Content-Type mislykkedes" #: libraries/blobstreaming.lib.php:347 msgid "View image" -msgstr "" +msgstr "Se billede" #: libraries/blobstreaming.lib.php:351 msgid "Play audio" -msgstr "" +msgstr "Afspil lyd" #: libraries/blobstreaming.lib.php:356 msgid "View video" -msgstr "" +msgstr "Se video" #: libraries/blobstreaming.lib.php:360 msgid "Download file" -msgstr "" +msgstr "Download fil" #: libraries/blobstreaming.lib.php:421 #, php-format msgid "Could not open file: %s" -msgstr "" +msgstr "Kunne ikke åbne filen %s" #: libraries/bookmark.lib.php:83 msgid "shared" -msgstr "" +msgstr "delt" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:181 libraries/export/xml.php:36 @@ -1911,7 +1920,7 @@ msgstr "Ingen databaser" #: libraries/build_html_for_db.lib.php:130 msgid "Not replicated" -msgstr "" +msgstr "Ikke gentaget" #: libraries/build_html_for_db.lib.php:136 #, fuzzy @@ -2057,7 +2066,7 @@ msgstr "MySQL returnerede: " #: libraries/common.lib.php:1098 msgid "Failed to connect to SQL validator!" -msgstr "" +msgstr "Kunne ikke oprette forbindelse til SQL validator!" #: libraries/common.lib.php:1139 libraries/config/messages.inc.php:463 msgid "Explain SQL" @@ -2090,7 +2099,7 @@ msgstr "Validér SQL" #: libraries/common.lib.php:1265 msgid "Inline edit of this query" -msgstr "" +msgstr "Åben linje til redigering af forespørgslen" #: libraries/common.lib.php:1267 #, fuzzy @@ -2100,7 +2109,7 @@ msgstr "Lagre" #: libraries/common.lib.php:1334 libraries/common.lib.php:1350 msgid "Profiling" -msgstr "" +msgstr "Skitsering" #: libraries/common.lib.php:1355 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:70 @@ -2218,7 +2227,7 @@ msgstr "Operationer" #: libraries/common.lib.php:2966 msgid "Browse your computer:" -msgstr "" +msgstr "Gennemse din computer" #: libraries/common.lib.php:2979 #, fuzzy, php-format @@ -2233,15 +2242,15 @@ msgstr "Mappen du har sat til upload-arbejde kan ikke findes" #: libraries/common.lib.php:2999 msgid "There are no files to upload" -msgstr "" +msgstr "Der er ikke nogen filer at uploade" #: libraries/config.values.php:45 libraries/config.values.php:50 msgid "Both" -msgstr "" +msgstr "Begge" #: libraries/config.values.php:74 msgid "Open" -msgstr "" +msgstr "Åben" #: libraries/config.values.php:74 #, fuzzy @@ -2254,7 +2263,7 @@ msgstr "Ikke-lukket quote" #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" -msgstr "" +msgstr "struktur" #: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 @@ -2272,15 +2281,17 @@ msgstr "Struktur og data" #: libraries/config.values.php:99 msgid "Quick - display only the minimal options to configure" -msgstr "" +msgstr "Hurtig - vis kun de mest nødvendige konfigurationsmuligheder" #: libraries/config.values.php:100 msgid "Custom - display all possible options to configure" -msgstr "" +msgstr "Brugerdefineret - vis alle valgmuligheder for konfigurering" #: libraries/config.values.php:101 msgid "Custom - like above, but without the quick/custom choice" msgstr "" +"Brugerdefineret - som ovenfor, men uden valgmuligheder for hurtig/" +"brugerdefineret" #: libraries/config.values.php:119 #, fuzzy @@ -2296,43 +2307,43 @@ msgstr "Udvidede inserts" #: libraries/config.values.php:121 msgid "both of the above" -msgstr "" +msgstr "Begge de ovenfor anførte" #: libraries/config.values.php:122 msgid "neither of the above" -msgstr "" +msgstr "Ingen af de ovenfor anførte" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:422 msgid "Not a positive number" -msgstr "" +msgstr "Ikke et positivt tal" #: libraries/config/FormDisplay.class.php:84 #: libraries/config/validate.lib.php:435 msgid "Not a non-negative number" -msgstr "" +msgstr "Ikke et ikke-negativt tal" #: libraries/config/FormDisplay.class.php:85 #: libraries/config/validate.lib.php:409 msgid "Not a valid port number" -msgstr "" +msgstr "Ikke et gyldigt port-nummer" #: libraries/config/FormDisplay.class.php:86 #: libraries/config/FormDisplay.class.php:574 #: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450 msgid "Incorrect value" -msgstr "" +msgstr "Ukorrekt værdi" #: libraries/config/FormDisplay.class.php:87 #: libraries/config/validate.lib.php:464 #, php-format msgid "Value must be equal or lower than %s" -msgstr "" +msgstr "Værdien skal være mindre end eller lig med %s" #: libraries/config/FormDisplay.class.php:538 #, php-format msgid "Missing data for %s" -msgstr "" +msgstr "Manglende data for %s" #: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:740 @@ -2345,21 +2356,21 @@ msgstr "Variabel" #: libraries/config/FormDisplay.class.php:741 #, php-format msgid "\"%s\" requires %s extension" -msgstr "" +msgstr "\"%s\" er afhængig af udvidelsen %s" #: libraries/config/FormDisplay.class.php:755 #, php-format msgid "import will not work, missing function (%s)" -msgstr "" +msgstr "importeringen kommer ikke til at fungere, funktionen (%s) mangler" #: libraries/config/FormDisplay.class.php:759 #, php-format msgid "export will not work, missing function (%s)" -msgstr "" +msgstr "eksporten kommer ikke til at fungere, funktionen (%s) mangler" #: libraries/config/FormDisplay.class.php:766 msgid "SQL Validator is disabled" -msgstr "" +msgstr "SQL Validator er deaktiveret" #: libraries/config/FormDisplay.class.php:773 #, fuzzy @@ -2370,11 +2381,12 @@ msgstr "Link ikke fundet" #: libraries/config/FormDisplay.class.php:781 #, php-format msgid "maximum %s" -msgstr "" +msgstr "maksimum %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" +"Denne indstilling er deaktiveret og din konfiguration vil ikke anvende den" #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89 #: libraries/relation.lib.php:96 pmd_relation_new.php:68 @@ -2384,16 +2396,16 @@ msgstr "Slået fra" #: libraries/config/FormDisplay.tpl.php:248 #, php-format msgid "Set value: %s" -msgstr "" +msgstr "Indstil værdien %s" #: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/messages.inc.php:351 msgid "Restore default value" -msgstr "" +msgstr "Gendan standardværdi" #: libraries/config/FormDisplay.tpl.php:269 msgid "Allow users to customize this value" -msgstr "" +msgstr "Tillad brugerdefinerede indstillinger for værdien" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320 @@ -2403,7 +2415,7 @@ msgstr "Nulstil" #: libraries/config/messages.inc.php:17 msgid "Improves efficiency of screen refresh" -msgstr "" +msgstr "Forbedrer ydeevnen for skærmopdatering" #: libraries/config/messages.inc.php:18 #, fuzzy @@ -2415,10 +2427,12 @@ msgstr "Slået til" msgid "" "If enabled user can enter any MySQL server in login form for cookie auth" msgstr "" +"Aktivering medfører, at brugeren kan tilgå en hvilken som helst MySQL-server " +"fra log ind-siden ved cookie-godkendelse" #: libraries/config/messages.inc.php:20 msgid "Allow login to any MySQL server" -msgstr "" +msgstr "Tillad log ind til en hvilken som helst MySQL-server" #: libraries/config/messages.inc.php:21 msgid "" @@ -2426,46 +2440,53 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" +"Aktivering indebærer, at en side, som ligger på et andet domæne, har adgang " +"til at kalde phpMyAdmin fra en frame. Det er en potentiel sikkerhedsrisiko, " +"fordi det åbner op for cross-frame skripting angreb" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" -msgstr "" +msgstr "Tillad rammeværk fra tredjepart" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" -msgstr "" +msgstr "Vis linket "Drop database" til almindelige brugere" #: libraries/config/messages.inc.php:24 msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" +"Hemmeligt kodeordsudtryk til kryptering af cookies ved [kbd]cookie[/kbd] " +"godkendelse" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" -msgstr "" +msgstr "Blowfish hemmelighed" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" -msgstr "" +msgstr "Fremhæv valgte rækker" #: libraries/config/messages.inc.php:27 msgid "Row marker" -msgstr "" +msgstr "Rækkemarkør" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" -msgstr "" +msgstr "Fremhæv den række, som musemarkøren peger på" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" -msgstr "" +msgstr "Fremhæv pointer" #: libraries/config/messages.inc.php:30 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" +"Aktivér komprimering af [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] ved " +"import -og eksport arbejdsgange" #: libraries/config/messages.inc.php:31 msgid "Bzip2" @@ -2477,59 +2498,67 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns" msgstr "" +"Definerer typen af redigeringskontroller som skal anvendes i CHAR -og " +"VARCHAR-kolonner. [kbd]input[/kbd] - tillader begrænsning i længden af " +"input, [kbd]textarea[/kbd] - tillader linjeskift i kolonner" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" -msgstr "" +msgstr "Redigering af CHAR-kolonner" #: libraries/config/messages.inc.php:34 msgid "Number of columns for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Bredde på CHAR/VARCHAR tekstbokse" #: libraries/config/messages.inc.php:35 msgid "CHAR textarea columns" -msgstr "" +msgstr "Bredde på tekstbokse" #: libraries/config/messages.inc.php:36 msgid "Number of rows for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Højde på CHAR/VARCHAR-tekstbokse" #: libraries/config/messages.inc.php:37 msgid "CHAR textarea rows" -msgstr "" +msgstr "Højde på CHAR-tekstbokse" #: libraries/config/messages.inc.php:38 msgid "Check config file permissions" -msgstr "" +msgstr "Tjek tilladelser på konfigurationsfil" #: libraries/config/messages.inc.php:39 msgid "" "Compress gzip/bzip2 exports on the fly without the need for much memory; if " "you encounter problems with created gzip/bzip2 files disable this feature" msgstr "" +"Pak gzip/bzip2-eksporter under eksporten uden behov for ret meget " +"hukommelse. Hvis du får problemer med de dannede gzip/bzip2-filer, så " +"deaktivér denne funktion" #: libraries/config/messages.inc.php:40 msgid "Compress on the fly" -msgstr "" +msgstr "Komprimér undervejs" #: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25 #: setup/frames/index.inc.php:153 msgid "Configuration file" -msgstr "" +msgstr "Konfigurationsfil" #: libraries/config/messages.inc.php:42 msgid "" "Whether a warning ("Are your really sure...") should be displayed " "when you're about to lose data" msgstr "" +"Hvorvidt der skal vises en advarsel ("Er du helt sikker...") , når " +"du er ved at miste data" #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" -msgstr "" +msgstr "Bekræft DROP-forespørgsler" #: libraries/config/messages.inc.php:44 msgid "Debug SQL" -msgstr "" +msgstr "Ret fejl i SQL" #: libraries/config/messages.inc.php:45 #, fuzzy @@ -2542,62 +2571,64 @@ msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" +"[kbd]horisontal[/kbd], [kbd]vertikal[/kbd] eller et tal, som angiver " +"maksimum for den anvendte vertikale model" #: libraries/config/messages.inc.php:47 msgid "Display direction for altering/creating columns" -msgstr "" +msgstr "Vis retning for kolonner, som redigeres/oprettes" #: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" -msgstr "" +msgstr "Fane der skal vises, når man går ind i en database" #: libraries/config/messages.inc.php:49 msgid "Default database tab" -msgstr "" +msgstr "Standard database-fane" #: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a server" -msgstr "" +msgstr "Fane, som skal vises, når man går ind på en server" #: libraries/config/messages.inc.php:51 msgid "Default server tab" -msgstr "" +msgstr "Standard server-fane" #: libraries/config/messages.inc.php:52 msgid "Tab that is displayed when entering a table" -msgstr "" +msgstr "Fane som skal vises, når man går ind i en tabel" #: libraries/config/messages.inc.php:53 msgid "Default table tab" -msgstr "" +msgstr "Standard tabel-fane" #: libraries/config/messages.inc.php:54 msgid "Show binary contents as HEX by default" -msgstr "" +msgstr "Som standard vises binært indhold som HEX" #: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590 msgid "Show binary contents as HEX" -msgstr "" +msgstr "Vis binært indhold som HEX" #: libraries/config/messages.inc.php:56 msgid "Show database listing as a list instead of a drop down" -msgstr "" +msgstr "Vis databaser på en liste i stedet for i en valgboks" #: libraries/config/messages.inc.php:57 msgid "Display databases as a list" -msgstr "" +msgstr "Vis databaser på en liste" #: libraries/config/messages.inc.php:58 msgid "Show server listing as a list instead of a drop down" -msgstr "" +msgstr "Vis servere på en liste i stedet for i en valgboks" #: libraries/config/messages.inc.php:59 msgid "Display servers as a list" -msgstr "" +msgstr "Vis servere på en liste" #: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" -msgstr "" +msgstr "Redigér SQL-forespørgsler i et popup vindue" #: libraries/config/messages.inc.php:61 #, fuzzy @@ -2613,25 +2644,27 @@ msgstr "Vis muligheder" #: libraries/config/messages.inc.php:63 msgid "Gather errors" -msgstr "" +msgstr "Indsaml fejl" #: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" -msgstr "" +msgstr "Vis ikoner i advarsels-, fejl-, og informationsmeddelelser" #: libraries/config/messages.inc.php:65 msgid "Iconic errors" -msgstr "" +msgstr "Ikon-fejl" #: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" +"Bestem antallet af sekunder, som et skript må være om at køre ([kbd]0[/kbd] " +"er lig med ingen tidsgrænse" #: libraries/config/messages.inc.php:67 msgid "Maximum execution time" -msgstr "" +msgstr "Maksimal ekspeditionstid" #: libraries/config/messages.inc.php:68 prefs_manage.php:299 msgid "Save as file" @@ -2639,7 +2672,7 @@ msgstr "Send (download)" #: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" -msgstr "" +msgstr "Filens tegnsæt" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_printview.php:373 tbl_structure.php:831 @@ -2690,7 +2723,7 @@ msgstr "Erstat NULL med" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" -msgstr "" +msgstr "Fjern karakterer for linjeskift i felterne" #: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 #: libraries/config/messages.inc.php:251 libraries/import/csv.php:62 @@ -2713,15 +2746,15 @@ msgstr "Excel-udgave" #: libraries/config/messages.inc.php:83 msgid "Database name template" -msgstr "" +msgstr "Skabelon for databasenavn" #: libraries/config/messages.inc.php:84 msgid "Server name template" -msgstr "" +msgstr "Maske for servernavn" #: libraries/config/messages.inc.php:85 msgid "Table name template" -msgstr "" +msgstr "Maske for tabelnavn" #: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 @@ -2770,7 +2803,7 @@ msgstr "Eksporttype" #: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" -msgstr "" +msgstr "Gem på server" #: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 @@ -2779,7 +2812,7 @@ msgstr "Overskriv eksisterende fil(er)" #: libraries/config/messages.inc.php:116 msgid "Remember file name template" -msgstr "" +msgstr "Husk maske for filnavn" #: libraries/config/messages.inc.php:118 #, fuzzy @@ -2794,7 +2827,7 @@ msgstr "SQL-kompatibilitetsmodus" #: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" -msgstr "" +msgstr "Syntaks som skal bruges, når der indsættes data" #: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" @@ -2832,41 +2865,43 @@ msgstr "Inkludér eksport i en transaktion" #: libraries/config/messages.inc.php:138 msgid "Export time in UTC" -msgstr "" +msgstr "Angiv eksporteringstidspunktet i UTC (Universal Time Coordinated)" #: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" -msgstr "" +msgstr "Gennemtving sikker forbindelse mens phpMyAdmin bruges" #: libraries/config/messages.inc.php:147 msgid "Force SSL connection" -msgstr "" +msgstr "Gennemtving SSL-forbindelse" #: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" +"Sorteringsrækkefølge for elementer i valgboks med fremmede nøgler; [kbd]" +"content[/kbd] er de refererede data, [kbd]id[/kbd] er nøglens værdi" #: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" -msgstr "" +msgstr "Sortër fremmede nøgler i valgboks på:" #: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" -msgstr "" +msgstr "Der vil blive brugt en valgboks, hvis der er færre elementer til stede" #: libraries/config/messages.inc.php:151 msgid "Foreign key limit" -msgstr "" +msgstr "Øvre grænse for fremmed nøgle" #: libraries/config/messages.inc.php:152 msgid "Browse mode" -msgstr "" +msgstr "Gennemsynstilstand" #: libraries/config/messages.inc.php:153 msgid "Customize browse mode" -msgstr "" +msgstr "Brugerindstilling for gennemsynstilstand" #: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 #: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 @@ -2887,32 +2922,32 @@ msgstr "CSV (kommasepareret)" #: libraries/config/messages.inc.php:158 msgid "Developer" -msgstr "" +msgstr "Udvikler" #: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" -msgstr "" +msgstr "Indstillinger for phpMyAdmin udviklere" #: libraries/config/messages.inc.php:160 msgid "Edit mode" -msgstr "" +msgstr "Redigeringstilstand" #: libraries/config/messages.inc.php:161 msgid "Customize edit mode" -msgstr "" +msgstr "Tilpas redigerinstilstand" #: libraries/config/messages.inc.php:163 msgid "Export defaults" -msgstr "" +msgstr "Standardindstillinger for eksport" #: libraries/config/messages.inc.php:164 msgid "Customize default export options" -msgstr "" +msgstr "Tilpas standardindstillinger for eksport" #: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" -msgstr "" +msgstr "Karakteristika" #: libraries/config/messages.inc.php:166 #, fuzzy @@ -2922,7 +2957,7 @@ msgstr "Generér" #: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" -msgstr "" +msgstr "Bestem indstillinger for nogle af de mest anvendte valgmuligheder" #: libraries/config/messages.inc.php:168 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 @@ -2932,19 +2967,21 @@ msgstr "Import" #: libraries/config/messages.inc.php:169 msgid "Import defaults" -msgstr "" +msgstr "Standarder for import" #: libraries/config/messages.inc.php:170 msgid "Customize default common import options" -msgstr "" +msgstr "Tilpas standardindstillinger for import" #: libraries/config/messages.inc.php:171 msgid "Import / export" -msgstr "" +msgstr "Import / eksport" #: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" +"Bestem indstillinger for importerings- og eksporteringsmapper samt " +"komprimering" #: libraries/config/messages.inc.php:173 libraries/export/latex.php:26 msgid "LaTeX" @@ -2952,15 +2989,15 @@ msgstr "LaTeX" #: libraries/config/messages.inc.php:176 msgid "Databases display options" -msgstr "" +msgstr "Indstillinger for visning af databaser" #: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" -msgstr "" +msgstr "Navigationsramme" #: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" -msgstr "" +msgstr "Tilpas navigationsrammens udseende" #: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 @@ -2969,15 +3006,15 @@ msgstr "Servere" #: libraries/config/messages.inc.php:180 msgid "Servers display options" -msgstr "" +msgstr "Indstillinger for visning af servere" #: libraries/config/messages.inc.php:182 msgid "Tables display options" -msgstr "" +msgstr "Indstillinger for visning af tabeller" #: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" -msgstr "" +msgstr "Hovedramme" #: libraries/config/messages.inc.php:184 msgid "Microsoft Office" @@ -2991,11 +3028,11 @@ msgstr "Open Document tekst" #: libraries/config/messages.inc.php:188 msgid "Other core settings" -msgstr "" +msgstr "Andre kerneindstillinger" #: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" -msgstr "" +msgstr "Indstillinger som ikke passer ind andre steder" #: libraries/config/messages.inc.php:190 #, fuzzy @@ -3008,7 +3045,7 @@ msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." -msgstr "" +msgstr "Angiv browserens titeltekst. " #: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:83 @@ -3019,21 +3056,23 @@ msgstr "Foresp. vindue" #: libraries/config/messages.inc.php:193 msgid "Customize query window options" -msgstr "" +msgstr "Tilpas indstillinger for forespørgselsvindue" #: libraries/config/messages.inc.php:194 msgid "Security" -msgstr "" +msgstr "Sikkerhed" #: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" +"Bemærk venligst at phpMyAdmin blot er en brugerflade, hvis egenskaber ikke " +"begrænser MySQL" #: libraries/config/messages.inc.php:196 msgid "Basic settings" -msgstr "" +msgstr "Grundlæggende indstillinger" #: libraries/config/messages.inc.php:197 #, fuzzy @@ -3043,25 +3082,27 @@ msgstr "Dokumentation" #: libraries/config/messages.inc.php:198 msgid "Authentication settings" -msgstr "" +msgstr "Indstillinger for godkendelse" #: libraries/config/messages.inc.php:199 msgid "Server configuration" -msgstr "" +msgstr "Serverkonfiguration" #: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" +"Avanceret serverkonfiguration. Lad være med at ændre disse indstillinger med " +"mindre, du ved, hvad de betyder" #: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" -msgstr "" +msgstr "Indtast parametre for tilslutning til server" #: libraries/config/messages.inc.php:202 msgid "Configuration storage" -msgstr "" +msgstr "Lagring af konfiguration" #: libraries/config/messages.inc.php:203 msgid "" @@ -5600,7 +5641,7 @@ msgstr "Erklæringer" #: libraries/export/sql.php:111 msgid "CREATE TABLE options:" -msgstr "" +msgstr "Muligheder for CREATE TABLE:" #: libraries/export/sql.php:123 msgid "" diff --git a/po/fi.po b/po/fi.po index 3d9b38b355..ec38819ebf 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1781,7 +1781,7 @@ msgstr "Tiedostoa ei voida avata: %s" #: libraries/bookmark.lib.php:83 msgid "shared" -msgstr "" +msgstr "jaettu" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:181 libraries/export/xml.php:36 @@ -2131,11 +2131,11 @@ msgstr "Lähetettäviä tiedostoja ei ole" #: libraries/config.values.php:45 libraries/config.values.php:50 msgid "Both" -msgstr "" +msgstr "Molemmat" #: libraries/config.values.php:74 msgid "Open" -msgstr "" +msgstr "Avaa" #: libraries/config.values.php:74 #, fuzzy @@ -2801,11 +2801,11 @@ msgstr "CSV" #: libraries/config/messages.inc.php:158 msgid "Developer" -msgstr "" +msgstr "Kehittäjä" #: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" -msgstr "" +msgstr "Asetukset phpMyAdmin-kehittäjille" #: libraries/config/messages.inc.php:160 msgid "Edit mode" @@ -3101,7 +3101,7 @@ msgstr "Varoitus" #: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" -msgstr "" +msgstr "Kytke osa phpMyAdminin näyttämistä varoituksista pois päältä" #: libraries/config/messages.inc.php:230 msgid "" @@ -3589,7 +3589,7 @@ msgstr "Oletusarvoinen kyselyikkunavälilehti" #: libraries/config/messages.inc.php:341 msgid "Query window height (in pixels)" -msgstr "" +msgstr "Kyselyikkunan korkeus (pikseleissä)" #: libraries/config/messages.inc.php:342 #, fuzzy @@ -9310,7 +9310,7 @@ msgstr "Seuraavat kyselyt on suoritettu:" #: server_synchronize.php:1130 msgid "Enter manually" -msgstr "" +msgstr "Syötä käsin" #: server_synchronize.php:1138 #, fuzzy diff --git a/po/hu.po b/po/hu.po index 452348ced3..0fc74e34bc 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4661,7 +4661,7 @@ msgstr "sor" #: libraries/display_export.lib.php:157 msgid "Dump some row(s)" -msgstr "" +msgstr "Néhány sor dumpolása" #: libraries/display_export.lib.php:159 #, fuzzy @@ -4675,7 +4675,7 @@ msgstr "Ettől a sortól kezdve:" #: libraries/display_export.lib.php:173 msgid "Dump all rows" -msgstr "" +msgstr "Összes sor dumpolása" #: libraries/display_export.lib.php:181 libraries/display_export.lib.php:202 msgid "Output:" diff --git a/po/id.po b/po/id.po index e2096259eb..655539dc8e 100644 --- a/po/id.po +++ b/po/id.po @@ -2285,7 +2285,7 @@ msgstr "Reset" #: libraries/config/messages.inc.php:17 msgid "Improves efficiency of screen refresh" -msgstr "" +msgstr "Meningkatkan efisiensi refresh layar" #: libraries/config/messages.inc.php:18 msgid "Enable Ajax" @@ -2308,6 +2308,9 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" +"Mengaktifkan ini memungkinkan halaman yang terletak pada domain yang berbeda " +"untuk memanggil phpMyAdmin di dalam frame, dan merupakan [strong]lubang " +"keamanan[/strong] potensial yang memungkinkan serangan scripting lintas-frame" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -9802,11 +9805,11 @@ msgstr "" #: tbl_tracking.php:503 msgid "This option will replace your table and contained data." -msgstr "" +msgstr "Pilihan ini akan mengganti table dan data isi table" #: tbl_tracking.php:503 msgid "SQL execution" -msgstr "" +msgstr "Menjalankan SQL" #: tbl_tracking.php:515 #, php-format @@ -9815,7 +9818,7 @@ msgstr "Ekspor sebagai %s" #: tbl_tracking.php:555 msgid "Show versions" -msgstr "" +msgstr "Tunjukkan Versi" #: tbl_tracking.php:587 msgid "Version" @@ -9867,7 +9870,7 @@ msgstr "" #: themes.php:41 msgid "Get more themes!" -msgstr "" +msgstr "Dapatkan tema lainnya" #: transformation_overview.php:24 msgid "Available MIME types" diff --git a/po/mk.po b/po/mk.po index 3774f42f2e..b9466de7a8 100644 --- a/po/mk.po +++ b/po/mk.po @@ -421,7 +421,7 @@ msgstr "Морате да изберете барем една колона за #: db_qbe.php:186 msgid "Switch to" -msgstr "" +msgstr "Префрли се во" #: db_qbe.php:186 msgid "visual builder" @@ -746,7 +746,7 @@ msgstr "База на податоци" #: db_tracking.php:86 msgid "Last version" -msgstr "" +msgstr "Последна Верзија" #: db_tracking.php:87 tbl_tracking.php:588 #, fuzzy @@ -755,7 +755,7 @@ msgstr "Креирај" #: db_tracking.php:88 tbl_tracking.php:589 msgid "Updated" -msgstr "" +msgstr "Ажурирано" #: db_tracking.php:89 libraries/common.lib.php:1354 #: libraries/server_links.inc.php:50 server_processlist.php:71 @@ -772,7 +772,7 @@ msgstr "Акција" #: db_tracking.php:101 js/messages.php:34 msgid "Delete tracking data for this table" -msgstr "" +msgstr "Избришете го податоците за тракирање од табелава" #: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600 msgid "active" diff --git a/po/ms.po b/po/ms.po index c48f2fbcef..68525a21a3 100644 --- a/po/ms.po +++ b/po/ms.po @@ -100,7 +100,7 @@ msgstr "" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "Gagal untuk membuka URL " #: changelog.php:32 license.php:28 #, php-format @@ -108,6 +108,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" +"Fail %s tidak ada di dalam sistem, sila ke laman sesawang www.phpmyadmin.net " +"untuk maklumat lanjut" #: db_create.php:58 #, fuzzy, php-format @@ -316,7 +318,7 @@ msgstr "" #: libraries/config/messages.inc.php:133 tbl_operations.php:552 #, php-format msgid "Add %s" -msgstr "" +msgstr "Tambah %s" #: db_operations.php:511 libraries/config/messages.inc.php:117 #: tbl_operations.php:310 tbl_operations.php:554 @@ -329,7 +331,7 @@ msgstr "" #: db_operations.php:528 msgid "Switch to copied database" -msgstr "" +msgstr "Tukar kepada pengkalan data yang di salin" #: db_operations.php:552 libraries/Index.class.php:447 #: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 @@ -406,7 +408,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451 #: tbl_structure.php:919 msgid "Last check" -msgstr "" +msgstr "Semakan Terakhir" #: db_printview.php:220 db_structure.php:439 #, fuzzy, php-format diff --git a/po/pt.po b/po/pt.po index a7f4ee0b8f..134bba0a47 100644 --- a/po/pt.po +++ b/po/pt.po @@ -113,6 +113,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" +"O ficheiro %s não está disponível no seu sistema, por favor visite www." +"phpmyadmin.net para mais informações." #: db_create.php:58 #, php-format @@ -799,7 +801,7 @@ msgstr "Introduza cada valor num campo separado." #: enum_editor.php:57 msgid "+ Restart insertion and add a new value" -msgstr "" +msgstr "+ Reiniciar inserção e adicionar um novo valor" #: enum_editor.php:67 msgid "Output" @@ -807,7 +809,7 @@ msgstr "" #: enum_editor.php:68 msgid "Copy and paste the joined values into the \"Length/Values\" field" -msgstr "" +msgstr "Copie e cole os valores juntos para o campo \"Comprimento/Valores\"" #: export.php:73 msgid "Selected export type has to be saved in file!" @@ -1127,7 +1129,7 @@ msgstr "Guarda" #: js/messages.php:91 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" -msgstr "" +msgstr "Esconder" #: js/messages.php:94 #, fuzzy @@ -1154,7 +1156,7 @@ msgstr "Seleccione Foreign Key" #: js/messages.php:103 msgid "Please select the primary key or a unique key" -msgstr "" +msgstr "Por favor seleccione a chave primária ou a chave única " #: js/messages.php:104 pmd_general.php:87 tbl_relation.php:545 #, fuzzy diff --git a/po/pt_BR.po b/po/pt_BR.po index 39eee26268..498e3ff341 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -1165,7 +1165,7 @@ msgstr "Escolha o campo para exibir" #: js/messages.php:107 msgid "Add an option for column " -msgstr "" +msgstr "Adicionar uma opção para a coluna" #: js/messages.php:110 #, fuzzy @@ -1193,6 +1193,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" +"Uma nova versão do phpMyAdmin está disponível e você deve fazer a " +"atualização. A nova versão é %s, lançada em %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:120 @@ -1709,7 +1711,7 @@ msgstr "Documentação do phpMyAdmin " #: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 msgid "You can enter hostname/IP address and port separated by space." -msgstr "" +msgstr "Você pode digitar a url/IP e a porta separados por um espaço." #: libraries/auth/cookie.auth.lib.php:244 msgid "Server:" @@ -1758,7 +1760,7 @@ msgstr "Usuário ou senha incorreta. Acesso negado." #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format msgid "File %s does not contain any key id" -msgstr "" +msgstr "Arquivo %s não contém qualquer identificação da chave" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 @@ -1767,7 +1769,7 @@ msgstr "Falha na autenticação de hardware" #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" -msgstr "" +msgstr "Nenhuma chave de autenticação válida foi conectada" #: libraries/auth/swekey/swekey.auth.lib.php:202 msgid "Authenticating..." @@ -1775,7 +1777,7 @@ msgstr "Autenticando..." #: libraries/blobstreaming.lib.php:241 msgid "PBMS error" -msgstr "" +msgstr "Erro PBMS" #: libraries/blobstreaming.lib.php:267 #, fuzzy @@ -1785,11 +1787,11 @@ msgstr "Collation de conexão do MySQL" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" -msgstr "" +msgstr "o PBMS falhou na obtenção de informações BLOB:" #: libraries/blobstreaming.lib.php:320 msgid "get BLOB Content-Type failed" -msgstr "" +msgstr "a obtenção do Tipo de conteúdo do BLOB falhou" #: libraries/blobstreaming.lib.php:347 msgid "View image" @@ -1810,7 +1812,7 @@ msgstr "Baixar arquivo" #: libraries/blobstreaming.lib.php:421 #, php-format msgid "Could not open file: %s" -msgstr "" +msgstr "Não foi possível abrir o arquivo: %s" #: libraries/bookmark.lib.php:83 msgid "shared" @@ -1853,7 +1855,7 @@ msgstr "Sem bases" #: libraries/build_html_for_db.lib.php:130 msgid "Not replicated" -msgstr "" +msgstr "Não aplicavel" #: libraries/build_html_for_db.lib.php:136 #, fuzzy @@ -1997,7 +1999,7 @@ msgstr "Mensagens do MySQL : " #: libraries/common.lib.php:1098 msgid "Failed to connect to SQL validator!" -msgstr "" +msgstr "Falha ao conectar ao validador SQL" #: libraries/common.lib.php:1139 libraries/config/messages.inc.php:463 msgid "Explain SQL" @@ -2030,7 +2032,7 @@ msgstr "Validar SQL" #: libraries/common.lib.php:1265 msgid "Inline edit of this query" -msgstr "" +msgstr "Na linha de edição da presente consulta" #: libraries/common.lib.php:1267 #, fuzzy @@ -2245,17 +2247,17 @@ msgstr "nenhuma das acima" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:422 msgid "Not a positive number" -msgstr "" +msgstr "Número não positivo" #: libraries/config/FormDisplay.class.php:84 #: libraries/config/validate.lib.php:435 msgid "Not a non-negative number" -msgstr "" +msgstr "Não é um número negativo" #: libraries/config/FormDisplay.class.php:85 #: libraries/config/validate.lib.php:409 msgid "Not a valid port number" -msgstr "" +msgstr "Número de porta inválido" #: libraries/config/FormDisplay.class.php:86 #: libraries/config/FormDisplay.class.php:574 @@ -2272,7 +2274,7 @@ msgstr "O valor precisa ser igual ou menor que %s" #: libraries/config/FormDisplay.class.php:538 #, php-format msgid "Missing data for %s" -msgstr "" +msgstr "dado faltante para %s" #: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:740 @@ -2283,21 +2285,21 @@ msgstr "indisponível" #: libraries/config/FormDisplay.class.php:741 #, php-format msgid "\"%s\" requires %s extension" -msgstr "" +msgstr "\"%s\" requer a extenção %s " #: libraries/config/FormDisplay.class.php:755 #, php-format msgid "import will not work, missing function (%s)" -msgstr "" +msgstr "Importação não funcionou, função faltante (%s)" #: libraries/config/FormDisplay.class.php:759 #, php-format msgid "export will not work, missing function (%s)" -msgstr "" +msgstr "exportação não vai funcionar, faltando função (%s)" #: libraries/config/FormDisplay.class.php:766 msgid "SQL Validator is disabled" -msgstr "" +msgstr "Validador SQL desativado" #: libraries/config/FormDisplay.class.php:773 msgid "SOAP extension not found" @@ -2311,6 +2313,7 @@ msgstr "máximo %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" +"Essa configuração está desativada, não será aplicado à sua configuração" #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89 #: libraries/relation.lib.php:96 pmd_relation_new.php:68 @@ -2320,16 +2323,16 @@ msgstr "Desabilitado" #: libraries/config/FormDisplay.tpl.php:248 #, php-format msgid "Set value: %s" -msgstr "" +msgstr "Definir valor: %s" #: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/messages.inc.php:351 msgid "Restore default value" -msgstr "" +msgstr "Restaurar valor padrão" #: libraries/config/FormDisplay.tpl.php:269 msgid "Allow users to customize this value" -msgstr "" +msgstr "Permitir a todos os usuários alterar esse valor" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320 @@ -2339,7 +2342,7 @@ msgstr "Restaurar" #: libraries/config/messages.inc.php:17 msgid "Improves efficiency of screen refresh" -msgstr "" +msgstr "Melhora a eficiência de atualização da tela" #: libraries/config/messages.inc.php:18 msgid "Enable Ajax" @@ -2349,6 +2352,8 @@ msgstr "Habilitar Ajax" msgid "" "If enabled user can enter any MySQL server in login form for cookie auth" msgstr "" +"Se o usuário habilitado pode entrar em qualquer servidor MySQL em formulário " +"de login por autenticação cookie" #: libraries/config/messages.inc.php:20 #, fuzzy @@ -2361,10 +2366,13 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" +"Ativando essa opção permite uma página localizada em um domínio diferente " +"para chamar phpMyAdmin dentro de um quadro, e é um potencial [strong] falha " +"de segurança [/strong], que permite ataques de script cross-frame" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" -msgstr "" +msgstr "Permitir elaboração de terceiros" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" diff --git a/po/ta.po b/po/ta.po index f1d052051a..626c028ec4 100644 --- a/po/ta.po +++ b/po/ta.po @@ -29,7 +29,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1114 #: libraries/schema/User_Schema.class.php:360 msgid "Page number:" -msgstr "" +msgstr "ஓலை என்" #: browse_foreigners.php:133 msgid "" @@ -43,7 +43,7 @@ msgstr "" #: libraries/common.lib.php:3015 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" -msgstr "" +msgstr "தேடல்" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 From b45de543c00b4eb39d9f67cb6d1c93f73f444863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 11:50:28 +0200 Subject: [PATCH 299/340] Fix syntax error --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 3d4c194874..c6d1e77893 100644 --- a/po/da.po +++ b/po/da.po @@ -1614,7 +1614,7 @@ msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -"Indeks %1$ ser ud til at være identisk med indeks %2$, så et af dem kan " +"Indeks %1$s ser ud til at være identisk med indeks %2$s, så et af dem kan " "sikkert fjernes" #: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:175 From 0d61081c29293267a4dce932519c0a52b603f9a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 11:52:54 +0200 Subject: [PATCH 300/340] Fix format strings --- po/fa.po | 4 ++-- po/id.po | 12 ++++-------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/po/fa.po b/po/fa.po index ca6c3cfc34..dd5d4fd020 100644 --- a/po/fa.po +++ b/po/fa.po @@ -403,7 +403,7 @@ msgstr "" #, php-format msgid "%s table" msgid_plural "%s tables" -msgstr[0] "s% جدولs% جداول" +msgstr[0] "%s جدول" #: db_qbe.php:41 msgid "You have to choose at least one column to display" @@ -526,7 +526,7 @@ msgstr "نتيجه جستجوي \"%s\" %s:" #, php-format msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" -msgstr[0] "s% عبارت همتا در جدول %ss% عبارت همتا در جدول %s" +msgstr[0] "%s عبارت همتا در جدول %s" #: db_search.php:256 libraries/common.lib.php:2765 #: libraries/common.lib.php:2950 libraries/common.lib.php:2951 diff --git a/po/id.po b/po/id.po index 49b4402751..80eb9afdfa 100644 --- a/po/id.po +++ b/po/id.po @@ -403,7 +403,7 @@ msgstr "Pemeriksaan terakhir" #, php-format msgid "%s table" msgid_plural "%s tables" -msgstr[0] "Tunggal% s tabelJamak% s tabel" +msgstr[0] "%s tabel" #: db_qbe.php:41 msgid "You have to choose at least one column to display" @@ -524,9 +524,7 @@ msgstr "Hasil pencarian untuk \"%s\" %s:" #, php-format msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" -msgstr[0] "" -"Tunggal% s cocok dalam tabel% s Jamaks% cocok dalam tabel% s " +msgstr[0] "%s cocok dalam tabel %s" #: db_search.php:256 libraries/common.lib.php:2765 #: libraries/common.lib.php:2950 libraries/common.lib.php:2951 @@ -537,7 +535,7 @@ msgstr "Browse" #: db_search.php:261 #, php-format msgid "Delete the matches for the %s table?" -msgstr "Hapus yang cocok untuk% s tabel?" +msgstr "Hapus yang cocok untuk %s tabel?" #: db_search.php:261 libraries/display_tbl.lib.php:1302 #: libraries/display_tbl.lib.php:2272 @@ -555,9 +553,7 @@ msgstr "Hapus" #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" -msgstr[0] "" -"Tunggal Total: % s cocokJamak Total: % s " -"cocok" +msgstr[0] "Total: %s cocok" #: db_search.php:297 msgid "Search in database" From 39c625c2c811d22ba206437c7179426adc9913b2 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:22:26 +0200 Subject: [PATCH 301/340] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index f12957d381..faf497521b 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-15 12:47+0200\n" +"PO-Revision-Date: 2011-06-17 12:22+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -1061,7 +1061,7 @@ msgstr "リアルタイムでのトラフィックグラフ" #: js/messages.php:67 server_status.php:419 msgid "Live conn./process chart" -msgstr "" +msgstr "リアルタイムでの接続/プロセスグラフ" #: js/messages.php:68 server_status.php:438 #, fuzzy From 52c3201d9b0d69a03286afa4196a107f76cb59fb Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:22:35 +0200 Subject: [PATCH 302/340] Translation update done using Pootle. --- po/ja.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index faf497521b..22fe86a815 100644 --- a/po/ja.po +++ b/po/ja.po @@ -1064,10 +1064,9 @@ msgid "Live conn./process chart" msgstr "リアルタイムでの接続/プロセスグラフ" #: js/messages.php:68 server_status.php:438 -#, fuzzy #| msgid "Show query chart" msgid "Live query chart" -msgstr "クエリをグラフで表示" +msgstr "リアルタイムでのクエリグラフ" #: js/messages.php:70 msgid "Static data" From 2f1a57b4cb733c7eff6ec6c75297a19a3a03c4ce Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:25:44 +0200 Subject: [PATCH 303/340] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index 22fe86a815..0ca845d075 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 12:22+0200\n" +"PO-Revision-Date: 2011-06-17 12:25+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -1118,10 +1118,9 @@ msgid "Processes" msgstr "プロセス" #: js/messages.php:85 -#, fuzzy #| msgid "Connections" msgid "Connections / Processes" -msgstr "接続" +msgstr "接続/プロセス" #: js/messages.php:86 msgid "Issued queries since last refresh" From ddebf9934cae6f72fae00ecc7c5bc5dc39a5f561 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:26:43 +0200 Subject: [PATCH 304/340] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 0ca845d075..aa929c0d2b 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 12:25+0200\n" +"PO-Revision-Date: 2011-06-17 12:26+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -8195,7 +8195,7 @@ msgid "Refresh rate" msgstr "再描画間隔" #: server_status.php:31 -#, fuzzy, php-format +#, php-format #| msgid "minutes" msgid "%d minute" msgid_plural "%d minutes" From d0a65741ff3c1b4e371685fb78e6832feb49e683 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:26:49 +0200 Subject: [PATCH 305/340] Translation update done using Pootle. --- po/ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index aa929c0d2b..94e7cc6643 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8202,7 +8202,7 @@ msgid_plural "%d minutes" msgstr[0] "分" #: server_status.php:33 -#, fuzzy, php-format +#, php-format #| msgid "second" msgid "%d second" msgid_plural "%d seconds" From f9247ae0fa0a0bd0b70bd8cc0446a72e38c83f03 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:27:08 +0200 Subject: [PATCH 306/340] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 94e7cc6643..61eb7ad5e7 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 12:26+0200\n" +"PO-Revision-Date: 2011-06-17 12:27+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -8325,7 +8325,7 @@ msgstr "クエリ種別" #. l10n: # = Amount of queries #: server_status.php:554 msgid "#" -msgstr "" +msgstr "クエリ数" #: server_status.php:618 #, php-format From 92a433f183150e98548d17af2055db87edb8ccb8 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:27:46 +0200 Subject: [PATCH 307/340] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index 61eb7ad5e7..a54b2da724 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8873,9 +8873,8 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -"クエリキャッシュ内の空きメモリのブロック数。この値が高い場合は 断片化が起こっ" -"ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解決でき" -"るかもしれません。" +"クエリキャッシュ内の空きメモリのブロック数。この値が高い場合は 断片化が起こっていることを示しています。FLUSH QUERY CACHE " +"文を発行することによって解消されるかもしれません。" #: server_status.php:930 msgid "The amount of free memory for query cache." From ec4008260020ad81685139dae03dfb5c9fd4dbd8 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:28:07 +0200 Subject: [PATCH 308/340] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index a54b2da724..8ab5807650 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 12:27+0200\n" +"PO-Revision-Date: 2011-06-17 12:28+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -8330,7 +8330,7 @@ msgstr "クエリ数" #: server_status.php:618 #, php-format msgid "Network traffic since startup: %s" -msgstr "起動してからのネットワークトラフィック:%s" +msgstr "起動以後のネットワークトラフィック:%s" #: server_status.php:626 #, php-format From 1f3d0eeaab7b3d801539b3b62ca244aaa2837faf Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:28:32 +0200 Subject: [PATCH 309/340] Translation update done using Pootle. --- po/ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index 8ab5807650..ab29e04d7f 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8289,7 +8289,7 @@ msgstr "全ての状態変数" #: server_status.php:455 msgid "Containing the word:" -msgstr "含まれている文字:" +msgstr "含まれている文字:" #: server_status.php:460 msgid "Show only alert values" From 2a90b350b12cef76d571bfd0b2c218cfaef9a6f0 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:29:06 +0200 Subject: [PATCH 310/340] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index ab29e04d7f..cbca38c77b 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 12:28+0200\n" +"PO-Revision-Date: 2011-06-17 12:29+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -2167,7 +2167,7 @@ msgstr "先頭" #: libraries/display_tbl.lib.php:308 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" -msgstr "前" +msgstr "前へ" #: libraries/common.lib.php:2310 libraries/common.lib.php:2313 #: libraries/display_tbl.lib.php:387 From 99f88e2148ebeb61a36c930c836fe2c7cb424b1e Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:29:32 +0200 Subject: [PATCH 311/340] Translation update done using Pootle. --- po/ja.po | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index cbca38c77b..bbdcfe6f46 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3494,9 +3494,7 @@ msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." -msgstr "" -"結果セットの表示行数。結果セットの行数の方が多い場合は「前(Previous)/次" -"(Next)」のリンクが表示されます。" +msgstr "結果セットの表示行数。結果セットの行数の方が多い場合は「前へ/次へ」のリンクが表示されます。" #: libraries/config/messages.inc.php:311 msgid "Maximum number of rows to display" From d51634b117c02c090a9655a78b2526b6e18259e0 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:36:18 +0200 Subject: [PATCH 312/340] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index bbdcfe6f46..2af32f22b9 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 12:29+0200\n" +"PO-Revision-Date: 2011-06-17 12:36+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -1104,10 +1104,9 @@ msgid "kB received since last refresh" msgstr "" #: js/messages.php:82 -#, fuzzy #| msgid "Server traffic" msgid "Server traffic (in kB)" -msgstr "サーバのトラフィック" +msgstr "サーバのトラフィック(単位:kB)" #: js/messages.php:83 msgid "Connections since last refresh" From 4bd819899d2ee765597b725d92ba7538d9d8fcc7 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Fri, 17 Jun 2011 12:46:29 +0200 Subject: [PATCH 313/340] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 2af32f22b9..2c7ec835ae 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 12:36+0200\n" +"PO-Revision-Date: 2011-06-17 12:46+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -1070,7 +1070,7 @@ msgstr "リアルタイムでのクエリグラフ" #: js/messages.php:70 msgid "Static data" -msgstr "" +msgstr "統計データ" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:45 From edf3e1ad32d42f80636c9500d951aa37555b61cc Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 08:16:13 -0400 Subject: [PATCH 314/340] Should use kibibytes here, see http://en.wikipedia.org/wiki/Kibibyte --- js/messages.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/messages.php b/js/messages.php index 7ec366f9cb..222ad84bee 100644 --- a/js/messages.php +++ b/js/messages.php @@ -77,9 +77,9 @@ $js_messages['strThousandsSeperator'] = __(','); /* l10n: Decimal separator */ $js_messages['strDecimalSeperator'] = __('.'); -$js_messages['strChartKBSent'] = __('kB sent since last refresh'); -$js_messages['strChartKBReceived'] = __('kB received since last refresh'); -$js_messages['strChartServerTraffic'] = __('Server traffic (in kB)'); +$js_messages['strChartKBSent'] = __('KiB sent since last refresh'); +$js_messages['strChartKBReceived'] = __('KiB received since last refresh'); +$js_messages['strChartServerTraffic'] = __('Server traffic (in KiB)'); $js_messages['strChartConnections'] = __('Connections since last refresh'); $js_messages['strChartProcesses'] = __('Processes'); $js_messages['strChartConnectionsTitle'] = __('Connections / Processes'); From c3948c1cdde33cbb4302586bee3ced5cb7b15626 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 08:17:24 -0400 Subject: [PATCH 315/340] Refresh .po files --- po/af.po | 34 +++++++++++----------- po/ar.po | 46 +++++++++++++++--------------- po/az.po | 34 +++++++++++----------- po/be.po | 42 +++++++++++++-------------- po/be@latin.po | 54 +++++++++++++++++------------------ po/bg.po | 46 +++++++++++++++--------------- po/bn.po | 46 +++++++++++++++--------------- po/bs.po | 34 +++++++++++----------- po/ca.po | 54 +++++++++++++++++------------------ po/cs.po | 60 +++++++++++++++++++++------------------ po/cy.po | 38 ++++++++++++------------- po/da.po | 42 +++++++++++++-------------- po/de.po | 54 +++++++++++++++++------------------ po/el.po | 58 +++++++++++++++++++------------------- po/en_GB.po | 58 +++++++++++++++++++------------------- po/es.po | 42 +++++++++++++-------------- po/et.po | 34 +++++++++++----------- po/eu.po | 34 +++++++++++----------- po/fa.po | 50 ++++++++++++++++---------------- po/fi.po | 48 +++++++++++++++---------------- po/fr.po | 61 ++++++++++++++++++++------------------- po/gl.po | 52 +++++++++++++++++----------------- po/he.po | 34 +++++++++++----------- po/hi.po | 42 +++++++++++++-------------- po/hr.po | 46 +++++++++++++++--------------- po/hu.po | 60 +++++++++++++++++++-------------------- po/id.po | 42 +++++++++++++-------------- po/it.po | 50 ++++++++++++++++---------------- po/ja.po | 63 ++++++++++++++++++++--------------------- po/ka.po | 60 +++++++++++++++++++-------------------- po/ko.po | 42 +++++++++++++-------------- po/lt.po | 52 +++++++++++++++++----------------- po/lv.po | 38 ++++++++++++------------- po/mk.po | 34 +++++++++++----------- po/ml.po | 34 +++++++++++----------- po/mn.po | 46 +++++++++++++++--------------- po/ms.po | 34 +++++++++++----------- po/nb.po | 48 +++++++++++++++---------------- po/nl.po | 46 +++++++++++++++--------------- po/phpmyadmin.pot | 33 +++++++++++----------- po/pl.po | 60 +++++++++++++++++++-------------------- po/pt.po | 42 +++++++++++++-------------- po/pt_BR.po | 38 ++++++++++++------------- po/ro.po | 42 +++++++++++++-------------- po/ru.po | 46 +++++++++++++++--------------- po/si.po | 46 +++++++++++++++--------------- po/sk.po | 50 ++++++++++++++++---------------- po/sl.po | 34 +++++++++++----------- po/sq.po | 38 ++++++++++++------------- po/sr.po | 42 +++++++++++++-------------- po/sr@latin.po | 42 +++++++++++++-------------- po/sv.po | 50 ++++++++++++++++---------------- po/ta.po | 34 +++++++++++----------- po/te.po | 34 +++++++++++----------- po/th.po | 38 ++++++++++++------------- po/tr.po | 48 +++++++++++++++---------------- po/tt.po | 38 ++++++++++++------------- po/ug.po | 46 +++++++++++++++--------------- po/uk.po | 42 +++++++++++++-------------- po/ur.po | 46 +++++++++++++++--------------- po/uz.po | 64 ++++++++++++++++++++--------------------- po/uz@latin.po | 72 +++++++++++++++++++++++------------------------ po/zh_CN.po | 42 +++++++++++++-------------- po/zh_TW.po | 38 ++++++++++++------------- 64 files changed, 1450 insertions(+), 1447 deletions(-) diff --git a/po/af.po b/po/af.po index a025a1ebf2..fc0d7634c0 100644 --- a/po/af.po +++ b/po/af.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" -"Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -635,8 +635,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -878,8 +878,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1117,17 +1117,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Bediener Keuse" #: js/messages.php:83 @@ -1882,8 +1882,8 @@ msgstr "Welkom by %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4809,8 +4809,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5507,8 +5507,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7870,8 +7870,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/ar.po b/po/ar.po index 7f0f2e212b..fa396a4731 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-04-21 13:56+0200\n" "Last-Translator: \n" "Language-Team: arabic \n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Pootle 2.0.5\n" @@ -349,8 +349,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" -"%s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" +"s." #: db_operations.php:600 #, fuzzy @@ -639,8 +639,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -881,8 +881,8 @@ msgstr "تم حفظ الـDump إلى الملف %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1126,17 +1126,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "اختيار الخادم" #: js/messages.php:83 @@ -1901,8 +1901,8 @@ msgstr "أهلا بك في %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4843,8 +4843,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5548,8 +5548,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7218,8 +7218,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" -"%s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" +"s." #: main.php:314 msgid "" @@ -7968,8 +7968,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL " "مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " @@ -10194,8 +10194,8 @@ msgstr "أعد تسمية العرض الـ" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط " -#~ "%sهنا%s." +#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %" +#~ "sهنا%s." #~ msgid "Execute bookmarked query" #~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية" diff --git a/po/az.po b/po/az.po index b658a4ceeb..d23487f12f 100644 --- a/po/az.po +++ b/po/az.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -634,8 +634,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -880,8 +880,8 @@ msgstr "Sxem %s faylına qeyd edildi." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1130,17 +1130,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Quraşdırılmış Serverler" #: js/messages.php:83 @@ -1904,8 +1904,8 @@ msgstr "%s - e Xoş Gelmişsiniz!" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4868,8 +4868,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5575,8 +5575,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8034,8 +8034,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler " "cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin " diff --git a/po/be.po b/po/be.po index 56b4b3df69..31c42b0b6a 100644 --- a/po/be.po +++ b/po/be.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -633,11 +633,11 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да " -"%sдакумэнтацыі%s." +"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %" +"sдакумэнтацыі%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -886,8 +886,8 @@ msgstr "Дамп захаваны ў файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, " "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " @@ -906,8 +906,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца " -"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " +"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%" +"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." #: import.php:336 @@ -1151,17 +1151,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Выбар сэрвэра" #: js/messages.php:83 @@ -1942,8 +1942,8 @@ msgstr "Запрашаем у %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго " "стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s." @@ -4966,8 +4966,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна " "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " @@ -5744,8 +5744,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8271,8 +8271,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц " "прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " diff --git a/po/be@latin.po b/po/be@latin.po index 7e2e0b0878..7e6714f0b8 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" -"Language: be@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Language: be@latin\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -639,11 +639,11 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da " -"%sdakumentacyi%s." +"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %" +"sdakumentacyi%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -883,8 +883,8 @@ msgstr "Damp zachavany ŭ fajł %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, " "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " @@ -903,8 +903,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca " -"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " +"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%" +"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." #: import.php:336 @@ -1149,17 +1149,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Vybar servera" #: js/messages.php:83 @@ -1947,8 +1947,8 @@ msgstr "Zaprašajem u %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab " "jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s." @@ -4939,8 +4939,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu " "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " @@ -5722,8 +5722,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6967,8 +6967,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci " -"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ " -"%sdakumentacyi%s." +"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %" +"sdakumentacyi%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7180,8 +7180,8 @@ msgstr "" "dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar " "vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar " "vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo " -"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). " -"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " +"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U " +"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " "parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), " "a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()." @@ -8246,8 +8246,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic " "pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, " diff --git a/po/bg.po b/po/bg.po index 31f0ff6c42..2998e82776 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-14 08:31+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" -"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -612,8 +612,8 @@ msgstr "Проследяването е неактивно." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -849,8 +849,8 @@ msgstr "Схемата беше записана във файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sdдокументацията%s за да намерите начин да избегнете това ограничение." @@ -1099,17 +1099,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Избор на сървър" #: js/messages.php:83 @@ -1794,8 +1794,8 @@ msgstr "Добре дошли в %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Изглежда не се създали конфигурационен файл. Вероятно ще искате да " "използвате %1$sскрипта за настройки%2$s, за да го създадете" @@ -4629,8 +4629,8 @@ msgstr ", @TABLE@ ще стане името на таблицата" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5300,8 +5300,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6475,8 +6475,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL валидаторът не може да бъде инициализиран. Моля проверете дали са " -"инсталирани необходимите PHP разширения, както е описано в %sдокументацията" -"%s." +"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%" +"s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7162,8 +7162,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез " -"%sскрипта за настройки%s." +"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %" +"sскрипта за настройки%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -7613,8 +7613,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Забележка: phpMyAdmin взема потребителските права директно от таблицата с " "правата на MySQL. Съдържанието на тази таблица може да се различава от " @@ -9692,8 +9692,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка " -"%s." +"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка %" +"s." #: themes.php:41 msgid "Get more themes!" diff --git a/po/bn.po b/po/bn.po index 788d4e84b2..f44d9e4607 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" -"Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -630,8 +630,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -878,11 +878,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1139,17 +1139,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Server Choice" #: js/messages.php:83 @@ -1922,8 +1922,8 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার " "করে একটি তৈরী করতে পারেন " @@ -4930,12 +4930,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5670,8 +5670,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8177,13 +8177,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/bs.po b/po/bs.po index e4ef7e5a38..efbcbf0e44 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -634,8 +634,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -880,8 +880,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1124,17 +1124,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Izbor servera" #: js/messages.php:83 @@ -1896,8 +1896,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4855,8 +4855,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5561,8 +5561,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8014,8 +8014,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " diff --git a/po/ca.po b/po/ca.po index 125ee0bef8..260554388e 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -612,8 +612,8 @@ msgstr "El seguiment no està actiu." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." @@ -855,11 +855,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Probablement has triat d'enviar un arxiu massa gran. Consulta la " -"%sdocumentació%s per trobar formes de modificar aquest límit." +"Probablement has triat d'enviar un arxiu massa gran. Consulta la %" +"sdocumentació%s per trobar formes de modificar aquest límit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1114,17 +1114,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Elecció de Servidor" #: js/messages.php:83 @@ -1830,8 +1830,8 @@ msgstr "Benvingut a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La raó més probable d'aixó és que no heu creat l'arxiu de configuració. " "Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un." @@ -4888,12 +4888,12 @@ msgstr ", @TABLE@ serà el nom de la taula" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les " -"cadenes de formateig de temps. A més, es faran aquestes transformacions: " -"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " +"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3" +"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " "per a més detalls." #: libraries/display_export.lib.php:275 @@ -5646,8 +5646,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Pots trobar la documentació i més informació sobre PBXT a la pàgina " "principal de %sPrimeBase XT%s." @@ -6874,8 +6874,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu " -"instal·lats els mòduls de PHP necessaris tal i com s'indica a la " -"%sdocumentació%s." +"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %" +"sdocumentació%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -8054,8 +8054,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de " "permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels " @@ -9610,8 +9610,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store" -"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " +"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%" +"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " "igual a ell." #: setup/lib/index.lib.php:266 @@ -9639,8 +9639,8 @@ msgstr "" "Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom " "d'usuari i la contrasenya per connexions automàtiques, que es una opció no " "recomanable per a servidors actius. Qualsevol que conegui la teva URL de " -"phpMyAdmin pot accedir al teu panel directament. Estableix el " -"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin pot accedir al teu panel directament. Estableix el %" +"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/cs.po b/po/cs.po index e4e22b5e17..0cfa01d95e 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-17 10:49+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -617,8 +617,8 @@ msgstr "Sledování není zapnuté." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." @@ -854,8 +854,8 @@ msgstr "Výpis byl uložen do souboru %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." @@ -1098,15 +1098,21 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +#, fuzzy +#| msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "Odesláno kiB od posledního obnovení" #: js/messages.php:81 -msgid "kB received since last refresh" +#, fuzzy +#| msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "Přijato kiB od posledního obnovení" #: js/messages.php:82 -msgid "Server traffic (in kB)" +#, fuzzy +#| msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Síťový provoz (v kiB)" #: js/messages.php:83 @@ -1793,8 +1799,8 @@ msgstr "Vítejte v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." @@ -4795,8 +4801,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít " "libovolné řetězce pro formátování data a času. Dále budou provedena " @@ -5538,8 +5544,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." @@ -6800,8 +6806,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na " -"%spopisy transformací%s" +"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" +"spopisy transformací%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -6852,8 +6858,8 @@ msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co " -"%s dělá." +"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %" +"s dělá." #: libraries/tbl_properties.inc.php:625 tbl_structure.php:636 #, php-format @@ -7475,8 +7481,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Více věcí můžete nastavit úpravou config.inc.php, např. použitím " -"%sNastavovacího skriptu%s." +"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %" +"sNastavovacího skriptu%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -7919,8 +7925,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " "tabulek se může lišit od oprávnění, která server právě používá, pokud byly " @@ -9430,8 +9436,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie" -"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " +"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%" +"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " "hodnotu než je tato." #: setup/lib/index.lib.php:266 @@ -9442,8 +9448,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Pokud to považujete za nutné, použijte další možnosti zabezpečení - " -"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " +"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %" +"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " "založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa " "dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli." diff --git a/po/cy.po b/po/cy.po index 56fea23702..3404fa1345 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-05-19 21:21+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" -"Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.0.5\n" @@ -616,8 +616,8 @@ msgstr "Nid yw tracio'n weithredol" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." @@ -855,8 +855,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth" "%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn." @@ -1114,17 +1114,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Dewis Gweinydd" #: js/messages.php:83 @@ -1854,11 +1854,11 @@ msgstr "Croeso i %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r " -"%1$sgript gosod%2$s er mwyn ei chreu." +"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1" +"$sgript gosod%2$s er mwyn ei chreu." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4809,8 +4809,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5518,8 +5518,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7830,8 +7830,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/da.po b/po/da.po index 9652f7d388..0a9caa4aa3 100644 --- a/po/da.po +++ b/po/da.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-03-07 01:17+0200\n" "Last-Translator: \n" "Language-Team: danish \n" -"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -610,8 +610,8 @@ msgstr "Sporing er ikke aktiv." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -846,11 +846,11 @@ msgstr "Dump er blevet gemt i filen %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst " -"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " +"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %" +"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " "begrænsning." #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1104,17 +1104,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Server valg" #: js/messages.php:83 @@ -1818,8 +1818,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. " "Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en." @@ -4775,8 +4775,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede " "strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst " @@ -5513,8 +5513,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8013,14 +8013,14 @@ msgstr "Drop databaser der har samme navne som brugernes." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs " "privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra " "privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle " -"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" -"%s før du fortsætter." +"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%" +"s før du fortsætter." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/de.po b/po/de.po index 75d4e9db0e..3db624352f 100644 --- a/po/de.po +++ b/po/de.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-04-23 04:28+0200\n" "Last-Translator: Dominik Geyer \n" "Language-Team: german \n" -"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -344,8 +344,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier" -"%s um herauszufinden warum." +"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%" +"s um herauszufinden warum." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -612,11 +612,11 @@ msgstr "Tracking ist nicht aktiviert." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die " -"%sDokumentation%s." +"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die %" +"sDokumentation%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -856,11 +856,11 @@ msgstr "Dump (Schema) wurde in Datei %s gespeichert." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die " -"%sDokumentation%s zur Lösung diese Problems." +"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %" +"sDokumentation%s zur Lösung diese Problems." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1116,17 +1116,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Server Auswählen" #: js/messages.php:83 @@ -1833,8 +1833,8 @@ msgstr "Willkommen bei %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt " "haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine " @@ -4890,8 +4890,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter " "für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen " @@ -5643,8 +5643,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase " "XT-Website%s verfügbar." @@ -6983,8 +6983,8 @@ msgid "" "author what %s does." msgstr "" "Für diese Umwandlung ist keine Beschreibung verfügbar.
Für weitere " -"Informationen wenden Sie sich bitte an den Autoren der Funktion "" -"%s"." +"Informationen wenden Sie sich bitte an den Autoren der Funktion "%" +"s"." #: libraries/tbl_properties.inc.php:625 tbl_structure.php:636 #, php-format @@ -8079,8 +8079,8 @@ msgstr "Die gleichnamigen Datenbanken löschen." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-" "Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, " @@ -9684,8 +9684,8 @@ msgstr "" "Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen " "Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im " "Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder " -"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den " -"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." +"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %" +"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/el.po b/po/el.po index 977de985ee..e06a427b90 100644 --- a/po/el.po +++ b/po/el.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-16 12:17+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -612,11 +612,11 @@ msgstr "Η παρακολούθηση δεν είναι ενεργοποιημέ #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην " -"%sτεκμηρίωση%s." +"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %" +"sτεκμηρίωση%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -851,11 +851,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " -"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." +"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %" +"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1099,17 +1099,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server traffic" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Κυκλοφορία Διακομιστή" #: js/messages.php:83 @@ -1800,8 +1800,8 @@ msgstr "Καλωσήρθατε στο %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε " "να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα." @@ -4862,8 +4862,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι " "μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν " @@ -5452,8 +5452,8 @@ msgid "" "Documentation and further information about PBMS can be found on %sThe " "PrimeBase Media Streaming home page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην " -"%sΙστοσελίδα του PrimeBase Media Streaming%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην %" +"sΙστοσελίδα του PrimeBase Media Streaming%s." #: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127 msgid "Related Links" @@ -5622,11 +5622,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην " -"%sΙστοσελίδα του PrimeBase XT%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %" +"sΙστοσελίδα του PrimeBase XT%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -7296,8 +7296,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά " -"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε " -"%sεδώ%s." +"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %" +"sεδώ%s." #: main.php:314 msgid "" @@ -8040,8 +8040,8 @@ msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδ msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από " "τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί " @@ -9612,8 +9612,8 @@ msgid "" "(currently %d)." msgstr "" "Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα " -"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime" -"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." +"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%" +"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." #: setup/lib/index.lib.php:262 #, php-format diff --git a/po/en_GB.po b/po/en_GB.po index 1ddfabe5db..c0dfb8d234 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-15 16:58+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" -"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -612,11 +612,11 @@ msgstr "Tracking is not active." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -849,11 +849,11 @@ msgstr "Dump has been saved to file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1091,17 +1091,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server traffic" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Server traffic" #: js/messages.php:83 @@ -1791,11 +1791,11 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4787,12 +4787,12 @@ msgstr ", @TABLE@ will become the table name" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5530,11 +5530,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -7914,13 +7914,13 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/es.po b/po/es.po index 8e1802bebd..a6e8c3e380 100644 --- a/po/es.po +++ b/po/es.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-15 23:05+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -616,11 +616,11 @@ msgstr "El seguimiento no está activo." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta vista tiene al menos este número de filas. Por favor refiérase a la " -"%sdocumentation%s." +"Esta vista tiene al menos este número de filas. Por favor refiérase a la %" +"sdocumentation%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -855,8 +855,8 @@ msgstr "El volcado ha sido guardado al archivo %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Usted probablemente intentó cargar un archivo demasiado grande. Por favor, " "refiérase a %sla documentation%s para hallar modos de superar esta " @@ -1104,17 +1104,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server traffic" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Tráfico del servidor" #: js/messages.php:83 @@ -1807,8 +1807,8 @@ msgstr "Bienvenido a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La razón más probable es que usted no haya creado un archivo de " "configuración. Utilice el %1$sscript de configuración%2$s para crear uno." @@ -4884,8 +4884,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar " "cadenas para formatear el tiempo. Además sucederán las siguientes " @@ -5652,8 +5652,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Se puede encontrar documentación y más información sobre PBXT en la %spágina " "inicial de PrimeBase XT%s." @@ -7340,8 +7340,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "El almacenamiento de configuración phpMyAdmin no está completamente " -"configurado, algunas funcionalidades extendidas fueron deshabilitadas. " -"%sPulsa aquí para averiguar por qué%s." +"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %" +"sPulsa aquí para averiguar por qué%s." #: main.php:314 msgid "" @@ -8091,8 +8091,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de " "las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir " diff --git a/po/et.po b/po/et.po index a760506a4e..6a8825579c 100644 --- a/po/et.po +++ b/po/et.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -631,8 +631,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -880,8 +880,8 @@ msgstr "Väljavõte salvestati faili %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Te kindlasti proovisite laadida liiga suurt faili. Palun uuri " "dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks." @@ -1142,17 +1142,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Serveri valik" #: js/messages.php:83 @@ -1925,8 +1925,8 @@ msgstr "Tere tulemast %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid " "kasutada %1$ssetup script%2$s et seadistada." @@ -4932,8 +4932,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada " "sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. " @@ -5671,8 +5671,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8171,8 +8171,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Märkus: phpMyAdmin võtab kasutajate privileegid otse MySQL privileges " "tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda " diff --git a/po/eu.po b/po/eu.po index 4ddfde6aa2..cec388f900 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" -"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -635,8 +635,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -881,8 +881,8 @@ msgstr "Iraulketa %s fitxategian gorde da." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1128,17 +1128,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Zerbitzariaren hautaketa" #: js/messages.php:83 @@ -1900,8 +1900,8 @@ msgstr "Ongietorriak %s(e)ra" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4862,8 +4862,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5568,8 +5568,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8040,8 +8040,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren " "pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz " diff --git a/po/fa.po b/po/fa.po index dd5d4fd020..ec28f8f2d6 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" -"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -611,8 +611,8 @@ msgstr "پیگردی فعال نمی باشد." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "در این نما حداقل این تعداد از سطرها موجود می باشد. لطفاً به %sنوشتار%s مراجعه " "نمایید." @@ -855,8 +855,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1096,17 +1096,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server version" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "نسخه سرور" #: js/messages.php:83 @@ -1862,8 +1862,8 @@ msgstr "به %s خوش‌آمديد" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4793,8 +4793,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5489,8 +5489,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6730,9 +6730,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " +"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" +"\\'b')" #: libraries/tbl_properties.inc.php:105 msgid "" @@ -6767,9 +6767,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " +"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" +"\\'b')" #: libraries/tbl_properties.inc.php:371 msgid "ENUM or SET data too long?" @@ -7042,8 +7042,8 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" "پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با " -"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز " -"مي‌شود ، و شما بايد اين حفره امنيتي را ذرست كنيد." +"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " +"، و شما بايد اين حفره امنيتي را ذرست كنيد." #: main.php:251 msgid "" @@ -7838,8 +7838,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/fi.po b/po/fi.po index 002ea41d50..12830e487e 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" -"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -612,11 +612,11 @@ msgstr "Seuranta ei ole käytössä." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " -"%sohjeista%s." +"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %" +"sohjeista%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -856,8 +856,8 @@ msgstr "Vedos tallennettiin tiedostoon %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso " "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." @@ -1108,17 +1108,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Valitse palvelin" #: js/messages.php:83 @@ -1822,11 +1822,11 @@ msgstr "Tervetuloa, toivottaa %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston " -"%1$sasetusskriptillä%2$s." +"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1" +"$sasetusskriptillä%2$s." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4985,8 +4985,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten " "ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat " @@ -5757,8 +5757,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8290,8 +8290,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen " "käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen " @@ -9923,9 +9923,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/fr.po b/po/fr.po index 7da389fc8d..13fc03ed5e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-15 17:03+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -613,11 +613,11 @@ msgstr "Le suivi n'est pas activé." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Cette vue contient au moins ce nombre de lignes. Veuillez référer à " -"%sdocumentation%s." +"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %" +"sdocumentation%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -853,8 +853,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Vous avez probablement tenté de télécharger un fichier trop volumineux. " "Veuillez vous référer à la %sdocumentation%s pour des façons de contourner " @@ -1104,17 +1104,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server traffic" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Trafic du serveur" #: js/messages.php:83 @@ -1805,8 +1805,8 @@ msgstr "Bienvenue sur %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La raison probable est que vous n'avez pas créé de fichier de configuration. " "Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but." @@ -4841,8 +4841,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc " "utiliser des chaînes de format d'heure. Ces transformations additionnelles " @@ -5600,8 +5600,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "La documentation de PBXT et des informations additionnelles sont disponibles " "sur %sle site de PrimeBase XT%s." @@ -5751,8 +5751,7 @@ msgstr "" #: libraries/export/sql.php:42 msgid "Additional custom header comment (\\n splits lines):" -msgstr "" -"Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :" +msgstr "Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :" #: libraries/export/sql.php:47 msgid "" @@ -6826,8 +6825,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions " -"PHP nécessaires ont bien été installées tel que décrit dans la " -"%sdocumentation%s." +"PHP nécessaires ont bien été installées tel que décrit dans la %" +"sdocumentation%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -8026,8 +8025,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin obtient la liste des privilèges directement à partir des " "tables MySQL. Le contenu de ces tables peut être différent des privilèges " @@ -9498,8 +9497,8 @@ msgid "" msgstr "" "Cette %soption%s ne devrait pas être activée car elle permet à un attaquant " "de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez " -"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance" -"%s." +"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%" +"s." #: setup/lib/index.lib.php:252 msgid "" @@ -9551,8 +9550,8 @@ msgid "" msgstr "" "Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 " "secondes peut causer des interruptions de la session de travail si le " -"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement " -"%d)." +"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %" +"d)." #: setup/lib/index.lib.php:262 #, php-format @@ -9571,8 +9570,8 @@ msgid "" "cookie validity%s must be set to a value less or equal to it." msgstr "" "Si vous utilisez l'authentification cookie et que le paramètre %sLogin " -"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity" -"%s doit avoir une valeur plus petite ou égale à celui-ci." +"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%" +"s doit avoir une valeur plus petite ou égale à celui-ci." #: setup/lib/index.lib.php:266 #, php-format @@ -9582,8 +9581,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Si vous l'estimez nécessaire, utilisez des paramètres de protection - " -"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " +"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %" +"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " "Cependant, la protection par adresse IP peut ne pas être fiable si votre IP " "appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y " "compris, sont connectés." diff --git a/po/gl.po b/po/gl.po index cbfb744ba2..21b207a89b 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" -"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -636,11 +636,11 @@ msgstr "O seguemento non está activado." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" -"%s." +"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%" +"s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -880,11 +880,11 @@ msgstr "Gardouse o volcado no ficheiro %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " -"%sdocumentación%s para averiguar como evitar este límite." +"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %" +"sdocumentación%s para averiguar como evitar este límite." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1145,17 +1145,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Escolla de servidor" #: js/messages.php:83 @@ -1953,8 +1953,8 @@ msgstr "Reciba a benvida a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Isto débese, posibelmente, a que non se creou un ficheiro de configuración. " "Tal vez queira utilizar %1$ssetup script%2$s para crear un." @@ -5194,8 +5194,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode " "utilizar cadeas de formato de hora. Produciranse transformacións en " @@ -5982,8 +5982,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7783,8 +7783,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na " -"%sdocumentation%s." +"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %" +"sdocumentation%s." #: navigation.php:207 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -8534,8 +8534,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas " "de privilexios do MySQL. O contido destas táboas pode diferir dos " @@ -10180,9 +10180,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/he.po b/po/he.po index ada75c9300..03d4d652fb 100644 --- a/po/he.po +++ b/po/he.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" -"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -627,8 +627,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -871,8 +871,8 @@ msgstr "הוצאה נשמרה אל קובץ %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1117,17 +1117,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "בחירת שרת" #: js/messages.php:83 @@ -1896,8 +1896,8 @@ msgstr "ברוך הבא אל %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4860,8 +4860,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5563,8 +5563,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7954,8 +7954,8 @@ msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמ msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של " "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " diff --git a/po/hi.po b/po/hi.po index 7c9414d961..cc154ae279 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-05-06 09:13+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" -"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -343,8 +343,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए " -"%shere%s पर क्लिक करें." +"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %" +"shere%s पर क्लिक करें." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -611,8 +611,8 @@ msgstr "ट्रैकिंग सक्रिय नहीं है." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -852,8 +852,8 @@ msgstr "डंप को %s फाइल में सेव किया गय #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s " "दोकुमेंताशन%s पढ़ें." @@ -1103,17 +1103,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "सर्वर चुनिये" #: js/messages.php:83 @@ -1811,11 +1811,11 @@ msgstr " %s मे स्वागत है" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script" -"%2$s का उपयोग करें." +"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2" +"$s का उपयोग करें." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4713,8 +4713,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5390,8 +5390,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7720,8 +7720,8 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/hr.po b/po/hr.po index 078a2e4f00..9d06aedd40 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" -"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -635,8 +635,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." @@ -885,11 +885,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte " -"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." +"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %" +"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1150,17 +1150,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Odabir poslužitelja" #: js/messages.php:83 @@ -1939,8 +1939,8 @@ msgstr "Dobro došli u %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete " "upotrijebiti naredbu %1$ssetup script%2$s" @@ -4950,8 +4950,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti " "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " @@ -5727,8 +5727,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8239,8 +8239,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL " "tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica " @@ -10731,8 +10731,8 @@ msgstr "Preimenuj prikaz u" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." #~ msgstr "" -#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]" -#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju." +#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1" +#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju." #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " diff --git a/po/hu.po b/po/hu.po index ea09be8719..9a3cb31ccd 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-05-27 18:52+0200\n" "Last-Translator: \n" "Language-Team: hungarian \n" -"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -612,11 +612,11 @@ msgstr "Nyomkövetés inaktív." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a " -"%sdokumentációban%s." +"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %" +"sdokumentációban%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -851,11 +851,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a " -"%sdokumentációban%s a korlátozás feloldása végett." +"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %" +"sdokumentációban%s a korlátozás feloldása végett." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1107,17 +1107,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Szerver választása" #: js/messages.php:83 @@ -1822,11 +1822,11 @@ msgstr "Üdvözli a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A " -"%1$stelepítőszkripttel%2$s el tudja készíteni." +"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1" +"$stelepítőszkripttel%2$s el tudja készíteni." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4881,8 +4881,8 @@ msgstr ", @TABLE@ lesz a tábla neve" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, " "vagyis időformázó karakterláncokat használhat. A következő átalakításokra " @@ -5646,8 +5646,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6897,8 +6897,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a " -"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" +"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %" +"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" "kiterjesztést." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 @@ -8201,13 +8201,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL " "privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által " -"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " -"%stöltse be újra a jogokat%s a folytatás előtt." +"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %" +"stöltse be újra a jogokat%s a folytatás előtt." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -9803,9 +9803,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/id.po b/po/id.po index 80eb9afdfa..d13953ffeb 100644 --- a/po/id.po +++ b/po/id.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-04-16 22:04+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" -"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -609,11 +609,11 @@ msgstr "Pelacakan tidak aktif." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat " -"%sdokumentasi%s" +"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %" +"sdokumentasi%s" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -851,11 +851,11 @@ msgstr "Dump (Skema) disimpan pada file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat " -"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." +"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %" +"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1108,17 +1108,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Pilihan Server" #: js/messages.php:83 @@ -1823,8 +1823,8 @@ msgstr "Selamat Datang di %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Anda mungkin belum membuat file konfigurasi. Anda bisa menggunakan %1$ssetup " "script%2$s untuk membuatnya." @@ -4798,8 +4798,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5524,8 +5524,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8030,8 +8030,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan pengguna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari " "tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil " diff --git a/po/it.po b/po/it.po index 1af81587c6..40d457124c 100644 --- a/po/it.po +++ b/po/it.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-05-25 22:43+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -613,8 +613,8 @@ msgstr "Il tracking non è attivo." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Questa vista ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." @@ -852,8 +852,8 @@ msgstr "Il dump è stato salvato nel file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Stai probabilmente cercando di caricare sul server un file troppo grande. " "Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare " @@ -1109,17 +1109,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Scelta del server" #: js/messages.php:83 @@ -1816,8 +1816,8 @@ msgstr "Benvenuto in %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La ragione di questo è che probabilmente non hai creato alcun file di " "configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno." @@ -4900,8 +4900,8 @@ msgstr ", il nome della tabella diventerá @TABLE@" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi " "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " @@ -5661,8 +5661,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile " "su %sPrimeBase XT Home Page%s." @@ -7366,8 +7366,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Sul server è in esecuzione Suhosin. Controlla la documentazione: " -"%sdocumentation%s per possibili problemi." +"Sul server è in esecuzione Suhosin. Controlla la documentazione: %" +"sdocumentation%s per possibili problemi." #: navigation.php:207 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -8075,8 +8075,8 @@ msgstr "Elimina i databases gli stessi nomi degli utenti." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella " "dei privilegi di MySQL. Il contenuto di questa tabella può differire dai " @@ -9662,10 +9662,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - " -"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia" -"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se " -"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " +"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %" +"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. " +"Comunque, la protezione a base di IP potrebbe non essere affidabile se il " +"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " "connessi." #: setup/lib/index.lib.php:268 @@ -9680,8 +9680,8 @@ msgstr "" "Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il " "nome utente e la parola chiave per l'auto-login, questo non è desiderato per " "gli host in uso live. Chiunque che conosce o indovina il tuo URL di " -"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta " -"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %" +"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/ja.po b/po/ja.po index e147c04726..2b379dd0aa 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-17 12:46+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" -"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -609,8 +609,8 @@ msgstr "SQL コマンドの追跡は非アクティブです。" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -847,8 +847,8 @@ msgstr "ダンプをファイル %s に保存しました" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ" "メント%s をご覧ください" @@ -1064,7 +1064,6 @@ msgid "Live conn./process chart" msgstr "リアルタイムでの接続/プロセスグラフ" #: js/messages.php:68 server_status.php:438 -#| msgid "Show query chart" msgid "Live query chart" msgstr "リアルタイムでのクエリグラフ" @@ -1096,16 +1095,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 -#| msgid "Server traffic" -msgid "Server traffic (in kB)" +#, fuzzy +#| msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "サーバのトラフィック(単位:kB)" #: js/messages.php:83 @@ -1117,7 +1117,6 @@ msgid "Processes" msgstr "プロセス" #: js/messages.php:85 -#| msgid "Connections" msgid "Connections / Processes" msgstr "接続/プロセス" @@ -1791,11 +1790,11 @@ msgstr "%s へようこそ" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ" -"ト%2$s を利用して設定ファイルを作成してください" +"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2" +"$s を利用して設定ファイルを作成してください" #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -3493,7 +3492,9 @@ msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." -msgstr "結果セットの表示行数。結果セットの行数の方が多い場合は「前へ/次へ」のリンクが表示されます。" +msgstr "" +"結果セットの表示行数。結果セットの行数の方が多い場合は「前へ/次へ」のリンク" +"が表示されます。" #: libraries/config/messages.inc.php:311 msgid "Maximum number of rows to display" @@ -4790,8 +4791,8 @@ msgstr "、@TABLE@ はテーブル名に" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用" "することができます。また、埋め込み変数変換も行われます(%3$s変換されま" @@ -5536,8 +5537,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ" "ト%sにあります。" @@ -7907,8 +7908,8 @@ msgstr "ユーザと同名のデータベースを削除する" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手" "作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの" @@ -8193,14 +8194,12 @@ msgstr "再描画間隔" #: server_status.php:31 #, php-format -#| msgid "minutes" msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "分" #: server_status.php:33 #, php-format -#| msgid "second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "秒" @@ -8870,8 +8869,9 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -"クエリキャッシュ内の空きメモリのブロック数。この値が高い場合は 断片化が起こっていることを示しています。FLUSH QUERY CACHE " -"文を発行することによって解消されるかもしれません。" +"クエリキャッシュ内の空きメモリのブロック数。この値が高い場合は 断片化が起こっ" +"ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解消され" +"るかもしれません。" #: server_status.php:930 msgid "The amount of free memory for query cache." @@ -9427,11 +9427,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定" -"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ" -"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい" -"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま" -"せん。" +"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%" +"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し" +"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続" +"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。" #: setup/lib/index.lib.php:268 #, php-format diff --git a/po/ka.po b/po/ka.po index 500e4a9de3..94085c783e 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -633,11 +633,11 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -883,11 +883,11 @@ msgstr "Dump has been saved to file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1145,17 +1145,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "სერვერის არჩევა" #: js/messages.php:83 @@ -1952,11 +1952,11 @@ msgstr "მოგესალმებათ %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -5133,12 +5133,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5906,8 +5906,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8451,13 +8451,13 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -10034,9 +10034,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/ko.po b/po/ko.po index dc5e39561d..d1cd9f28b8 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" -"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -349,8 +349,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " -"%s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" +"s여기를 클릭%s하십시오." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -619,8 +619,8 @@ msgstr "트래킹이 활성화되어 있지 않습니다." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -864,8 +864,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1115,17 +1115,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "서버 선택" #: js/messages.php:83 @@ -1843,8 +1843,8 @@ msgstr "%s에 오셨습니다" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파" "일을 생성할 수 있습니다." @@ -4804,8 +4804,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5505,8 +5505,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7107,8 +7107,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " -"%s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" +"s여기를 클릭%s하십시오." #: main.php:314 msgid "" @@ -7864,8 +7864,8 @@ msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/lt.po b/po/lt.po index b941c0aef8..1fa1a3e332 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-04-05 15:52+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" -"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" +"100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -614,11 +614,11 @@ msgstr "Sekimas yra neaktyvus." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos " -"%sdokumentacijoje%s." +"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %" +"sdokumentacijoje%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -858,11 +858,11 @@ msgstr "Atvaizdis įrašytas faile %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti " -"%sdokumentaciją%s būdams kaip apeiti šį apribojimą." +"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %" +"sdokumentaciją%s būdams kaip apeiti šį apribojimą." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1114,17 +1114,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Pasirinkti serverį" #: js/messages.php:83 @@ -1829,8 +1829,8 @@ msgstr "Jūs naudojate %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų " "skriptu%2$s, kad sukurtumėte failą." @@ -4803,8 +4803,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite " "keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " @@ -5511,8 +5511,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7960,8 +7960,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų " "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " @@ -9443,9 +9443,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/lv.po b/po/lv.po index 7acd9ed3cd..0460ba0aed 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -631,8 +631,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -877,8 +877,8 @@ msgstr "Damps tika saglabāts failā %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1126,17 +1126,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Servera izvēle" #: js/messages.php:83 @@ -1904,8 +1904,8 @@ msgstr "Laipni lūgti %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4869,8 +4869,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5575,8 +5575,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8047,13 +8047,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL " "privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko " -"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " -"%spārlādēt privilēģijas%s pirms Jūs turpināt." +"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %" +"spārlādēt privilēģijas%s pirms Jūs turpināt." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/mk.po b/po/mk.po index 99c489a69a..91720d5f7a 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-05-19 17:04+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" -"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Pootle 2.0.5\n" @@ -630,8 +630,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -871,8 +871,8 @@ msgstr "Содржината на базата на податоци е сочу #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1118,17 +1118,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Избор на сервер" #: js/messages.php:83 @@ -1899,8 +1899,8 @@ msgstr "%s Добредојдовте" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4880,8 +4880,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5606,8 +5606,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8107,8 +8107,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL " "табелата на привилегии. Содржината на оваа табела табела може да се " diff --git a/po/ml.po b/po/ml.po index 03f1d803de..3df35dc3d2 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" -"Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" "X-Generator: Translate Toolkit 1.7.0\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -606,8 +606,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -840,8 +840,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1071,15 +1071,15 @@ msgid "." msgstr "" #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "" #: js/messages.php:83 @@ -1752,8 +1752,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4564,8 +4564,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5231,8 +5231,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7452,8 +7452,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/mn.po b/po/mn.po index 251796f991..442d2e3223 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -631,8 +631,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -870,8 +870,8 @@ msgstr "Асгалт %s файлд хадгалагдсан." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1121,17 +1121,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Сервэр сонго" #: js/messages.php:83 @@ -1908,11 +1908,11 @@ msgstr "%s-д тавтай морилно уу" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та " -"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." +"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1" +"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4868,12 +4868,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны " -"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " -"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." +"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %" +"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5601,8 +5601,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8067,8 +8067,8 @@ msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн сан msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " "онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " @@ -10369,8 +10369,8 @@ msgstr "" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд" -#~ "%s дарж шалгах." +#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%" +#~ "s дарж шалгах." #~ msgid "Ignore duplicate rows" #~ msgstr "Давхардсан мөрүүдийг алгасах" diff --git a/po/ms.po b/po/ms.po index c764d8bc74..4a12371a51 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -634,8 +634,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -877,8 +877,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1119,17 +1119,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Pilihan Pelayan" #: js/messages.php:83 @@ -1889,8 +1889,8 @@ msgstr "Selamat Datang ke %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4825,8 +4825,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5528,8 +5528,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7903,8 +7903,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/nb.po b/po/nb.po index 929ce8351c..966ce6e92b 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" -"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -610,8 +610,8 @@ msgstr "Overvåkning er ikke aktiv." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -853,8 +853,8 @@ msgstr "Dump har blitt lagret til fila %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen" "%s for måter å omgå denne begrensningen." @@ -1110,17 +1110,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Tjenervalg" #: js/messages.php:83 @@ -1825,8 +1825,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør " "kanskje bruke %1$ssetup script%2$s for å opprette en." @@ -4856,8 +4856,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke " "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " @@ -5620,8 +5620,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6898,8 +6898,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"For en liste over tilgjengelige transformasjonsvalg, klikk på " -"%stransformasjonsbeskrivelser%s" +"For en liste over tilgjengelige transformasjonsvalg, klikk på %" +"stransformasjonsbeskrivelser%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -8075,8 +8075,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL " "privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de " @@ -9669,8 +9669,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Hvis du føler at dette er nødvending, så bruk ekstra " -"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" +"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" "page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. " "Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en " "Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet." @@ -9681,9 +9681,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/nl.po b/po/nl.po index e48d5948ec..bee63945a4 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-04 15:19+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -611,8 +611,8 @@ msgstr "Tracking is niet actief." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." @@ -850,11 +850,11 @@ msgstr "Dump is bewaard als %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de " -"%sdocumentatie%s voor mogelijkheden om dit te omzeilen." +"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %" +"sdocumentatie%s voor mogelijkheden om dit te omzeilen." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1105,17 +1105,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Serverkeuze" #: js/messages.php:83 @@ -1810,8 +1810,8 @@ msgstr "Welkom op %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u " "%1$ssetup script%2$s gebruiken om een te maken." @@ -4861,13 +4861,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabel naam" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het " "gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende " -"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ" -"%5$s voor meer details." +"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5" +"$s voor meer details." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5619,11 +5619,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Documentatie en meer informatie over PBXT kan gevonden worden op de " -"%sPrimeBase XT home pagina%s." +"Documentatie en meer informatie over PBXT kan gevonden worden op de %" +"sPrimeBase XT home pagina%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -8038,8 +8038,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL " "privileges tabel. De content van deze tabel kan verschillen met de rechten " diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 3908db51a1..df444a522d 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,11 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" @@ -609,8 +608,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, possible-php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -843,8 +842,8 @@ msgstr "" #: import.php:58 #, possible-php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1074,15 +1073,15 @@ msgid "." msgstr "" #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "" #: js/messages.php:83 @@ -1755,8 +1754,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, possible-php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4567,8 +4566,8 @@ msgstr "" #, possible-php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5234,8 +5233,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, possible-php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7455,8 +7454,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/pl.po b/po/pl.po index d668729c52..51ed94f1ff 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: polish \n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" @@ -621,11 +621,11 @@ msgstr "Monitorowanie nie jest aktywne." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w " -"%sdocumentation%s." +"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %" +"sdocumentation%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -861,8 +861,8 @@ msgstr "Zrzut został zapisany do pliku %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego " "limitu, proszę zapoznać się z %sdokumenacją%s." @@ -1120,17 +1120,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Wybór serwera" #: js/messages.php:83 @@ -1865,8 +1865,8 @@ msgstr "Witamy w %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego " "stworzenia można użyć %1$sskryptu instalacyjnego%2$s." @@ -4997,8 +4997,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć " "jej napisów formatujących. Dodatkowo zostaną zastosowane następujące " @@ -5782,8 +5782,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7042,8 +7042,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy " -"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w " -"%sdokumentacji%s." +"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %" +"sdokumentacji%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7097,8 +7097,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij " -"%sopisy transformacji%s" +"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %" +"sopisy transformacji%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -7585,8 +7585,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja" -"%s." +"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%" +"s." #: navigation.php:207 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -8333,8 +8333,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień " "MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, " @@ -9939,8 +9939,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień " -"bezpieczeństwa — [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" +"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" "page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/" "a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli " "używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników." @@ -9951,9 +9951,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/pt.po b/po/pt.po index b0d3aae322..ac8c9301a1 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-03-26 03:23+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" -"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -613,11 +613,11 @@ msgstr "Detecção de Alterações está desactivada." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta vista tem número de linhas aproximado. Por favor, consulte a " -"%sdocumentação%s." +"Esta vista tem número de linhas aproximado. Por favor, consulte a %" +"sdocumentação%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -857,8 +857,8 @@ msgstr "O Dump foi gravado para o ficheiro %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por " "favor reveja a %sdocumentação%s para encontrar formas de contornar este " @@ -1117,17 +1117,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Escolha do Servidor" #: js/messages.php:83 @@ -1874,11 +1874,11 @@ msgstr "Bemvindo ao %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script" -"%2$s pode ser utilizado para criar um." +"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%" +"2$s pode ser utilizado para criar um." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4848,8 +4848,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5556,8 +5556,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7968,8 +7968,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da " "tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos " diff --git a/po/pt_BR.po b/po/pt_BR.po index bfffddf3ca..dfd771c3af 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-15 13:55+0200\n" "Last-Translator: Jose Ivan Bezerra Vilarouca Filho \n" "Language-Team: brazilian_portuguese \n" -"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -614,11 +614,11 @@ msgstr "Rastreamento não está ativo." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a " -"%sdocumentação%s." +"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %" +"sdocumentação%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -852,8 +852,8 @@ msgstr "Dump foi salvo no arquivo %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentation%s para burlar esses limites." @@ -1105,17 +1105,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Seleção do Servidor" #: js/messages.php:83 @@ -1824,8 +1824,8 @@ msgstr "Bem vindo ao %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "A provável razão para isso é que você não criou o arquivo de configuração. " "Você deve usar o %1$ssetup script%2$s para criar um." @@ -4793,8 +4793,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as " "strings de formatação de tempo. Adicionalmente a seguinte transformação " @@ -5536,8 +5536,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8050,8 +8050,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela " "de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos " diff --git a/po/ro.po b/po/ro.po index c89d971b7d..4c87bedf71 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" -"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.1\n" @@ -635,8 +635,8 @@ msgstr "Monitorizarea nu este activată" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." @@ -885,11 +885,11 @@ msgstr "Copia a fost salvată în fișierul %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la " -"%sdocumentație%s pentru căi de ocolire a acestei limite." +"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %" +"sdocumentație%s pentru căi de ocolire a acestei limite." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1150,17 +1150,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Alegerea serverului" #: js/messages.php:83 @@ -1931,8 +1931,8 @@ msgstr "Bine ați venit la %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Motivul probabil pentru aceasta este că nu ați creat un fișier de " "configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un " @@ -4952,12 +4952,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5728,8 +5728,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8250,8 +8250,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de " "privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. " diff --git a/po/ru.po b/po/ru.po index f213370b68..4cdad88961 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-16 22:26+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: ru\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -617,8 +617,8 @@ msgstr "Слежение выключено." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." @@ -855,8 +855,8 @@ msgstr "Дамп был сохранен в файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." @@ -1102,17 +1102,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server traffic" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Трафик сервера" #: js/messages.php:83 @@ -1806,8 +1806,8 @@ msgstr "Добро пожаловать в %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Возможная причина - отсутствие файла конфигурации. Для его создания вы " "можете воспользоваться %1$sсценарием установки%2$s." @@ -4863,8 +4863,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна " "вставка текущей даты и времени. Дополнительно могут быть использованы " @@ -5615,8 +5615,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице " "PrimeBase XT%s." @@ -8018,8 +8018,8 @@ msgstr "Удалить базы данных, имена которых совп msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Примечание: phpMyAdmin получает информацию о пользовательских привилегиях " "непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может " @@ -9598,8 +9598,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"При необходимости используйте дополнительные настройки безопасности - " -"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " +"При необходимости используйте дополнительные настройки безопасности - %" +"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " "защита по IP может быть ненадежной, если ваш IP не является выделенным и " "кроме вас принадлежит тысячам пользователей того же Интернет Провайдера." @@ -10310,8 +10310,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге " -"%s." +"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %" +"s." #: themes.php:41 msgid "Get more themes!" diff --git a/po/si.po b/po/si.po index 8f819cb01e..c03260ac46 100644 --- a/po/si.po +++ b/po/si.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-04 15:35+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" -"Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -609,8 +609,8 @@ msgstr "අවධානය අක්‍රීයයි." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය කරන්න." @@ -846,11 +846,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1096,17 +1096,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "සේවාදායකයේ තේරීම" #: js/messages.php:83 @@ -1799,8 +1799,8 @@ msgstr "%s වෙත ආයුබෝවන්" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Probably reason of this is that you did not create configuration file. You " "might want to use %1$ssetup script%2$s to create one." @@ -4682,12 +4682,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5401,8 +5401,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6924,8 +6924,8 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" -"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා " -"%sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." +"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %" +"sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." #: libraries/user_preferences.lib.php:142 msgid "Could not save configuration" @@ -7812,8 +7812,8 @@ msgstr "භාවිතා කරන්නන් හා සමාන නම් msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්‍රසාද ලබාගනුයේ MySQL හි වරප්‍රසාද වගුවෙනි. " "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " diff --git a/po/sk.po b/po/sk.po index 1b9c8d3393..38010208bc 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-03 14:53+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" -"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -616,8 +616,8 @@ msgstr "Sledovanie nie je aktívne." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s." @@ -853,8 +853,8 @@ msgstr "Výpis bol uložený do súboru %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si " "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." @@ -1105,17 +1105,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Voľba serveru" #: js/messages.php:83 @@ -1813,8 +1813,8 @@ msgstr "Vitajte v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho " "vytvorenie môžete použiť %1$skonfiguračný skript%2$s." @@ -4808,8 +4808,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť " "reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto " @@ -5512,8 +5512,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6696,8 +6696,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú " -"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v " -"%sdocumentation%s." +"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %" +"sdocumentation%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7403,8 +7403,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím " -"%sNastavovacieho skriptu%s." +"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím %" +"sNastavovacieho skriptu%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -7848,13 +7848,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. " "Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli " -"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " -"%sznovunačítanie práv%s predtým ako budete pokračovať." +"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %" +"sznovunačítanie práv%s predtým ako budete pokračovať." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -10269,8 +10269,8 @@ msgstr "Premenovať pohľad na" #~ msgid "Imported file compression will be automatically detected from: %s" #~ msgstr "" -#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: " -#~ "%s" +#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %" +#~ "s" #~ msgid "Add into comments" #~ msgstr "Pridať do komentárov" diff --git a/po/sl.po b/po/sl.po index 3438f2afe4..a56887ca05 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-16 22:33+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.5\n" @@ -618,8 +618,8 @@ msgstr "Sledenje ni aktivno." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -854,8 +854,8 @@ msgstr "Dump je shranjen v datoteko %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si " "%sdokumentacijo%s za načine, kako obiti to omejitev." @@ -1100,17 +1100,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server traffic" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Promet strežnika" #: js/messages.php:83 @@ -1804,8 +1804,8 @@ msgstr "Dobrodošli v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite " "uporabiti %1$snastavitveni skript%2$s, da jo ustvarite." @@ -4815,8 +4815,8 @@ msgstr ", @TABLE@ bo postalo ime tabele" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate " "nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. " @@ -5563,8 +5563,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači " "strani PrimeBase XT%s." @@ -7959,8 +7959,8 @@ msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel " "privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki " diff --git a/po/sq.po b/po/sq.po index 0becdc2c6f..0232047eb9 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" -"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -632,8 +632,8 @@ msgstr "Gjurmimi nuk është aktiv." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -879,8 +879,8 @@ msgstr "Dump u ruajt tek file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1128,17 +1128,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Zgjedhja e serverit" #: js/messages.php:83 @@ -1905,8 +1905,8 @@ msgstr "Mirësevini tek %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4870,8 +4870,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5576,8 +5576,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8058,8 +8058,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e " "privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të " @@ -10264,8 +10264,8 @@ msgstr "Riemërto tabelën në" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar " -#~ "%s queries." +#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %" +#~ "s queries." #, fuzzy #~| msgid "The privileges were reloaded successfully." diff --git a/po/sr.po b/po/sr.po index 72a93aa6d4..6e8e98440f 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" -"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -629,8 +629,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -878,11 +878,11 @@ msgstr "Садржај базе је сачуван у датотеку %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " -"%sдокументацију%s за начине превазилажења овог ограничења." +"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %" +"sдокументацију%s за начине превазилажења овог ограничења." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1140,17 +1140,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Избор сервера" #: js/messages.php:83 @@ -1926,8 +1926,8 @@ msgstr "Добродошли на %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Вероватан разлог за ово је да нисте направили конфигурациону датотеку. " "Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили." @@ -4936,8 +4936,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да " "користите стрингове за форматирање времена. Такође ће се десити и следеће " @@ -5677,8 +5677,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8181,8 +8181,8 @@ msgstr "Одбаци базе које се зову исто као корис msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела " "привилегија. Садржај ове табеле може се разликовати од привилегија које " diff --git a/po/sr@latin.po b/po/sr@latin.po index 0de4b34654..debb693862 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" -"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -623,8 +623,8 @@ msgstr "Praćenje nije aktivno." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -872,11 +872,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte " -"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja." +"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %" +"sdokumentaciju%s za načine prevazilaženja ovog ograničenja." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1134,17 +1134,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Izbor servera" #: js/messages.php:83 @@ -1920,8 +1920,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. " "Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili." @@ -4929,8 +4929,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da " "koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće " @@ -5670,8 +5670,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8170,8 +8170,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " diff --git a/po/sv.po b/po/sv.po index 857b259e56..1a938e98c1 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-16 00:11+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" -"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -611,8 +611,8 @@ msgstr "Spårning är inte aktiv." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -847,8 +847,8 @@ msgstr "SQL-satserna har sparats till filen %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s " "för att gå runt denna begränsning." @@ -1090,17 +1090,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server traffic" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Server trafik" #: js/messages.php:83 @@ -1789,11 +1789,11 @@ msgstr "Välkommen till %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda " -"%1$suppsättningsskript%2$s för att skapa denna." +"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1" +"$suppsättningsskript%2$s för att skapa denna." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4790,8 +4790,8 @@ msgstr ", @TABLE@ blir tabellnamnet" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med " "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " @@ -5532,11 +5532,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page" -"%s." +"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%" +"s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -7211,8 +7211,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version " -"%s. Detta kan orsaka oförutsägbara beteenden." +"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %" +"s. Detta kan orsaka oförutsägbara beteenden." #: main.php:341 #, php-format @@ -7923,8 +7923,8 @@ msgstr "Ta bort databaserna med samma namn som användarna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Anm: phpMyAdmin hämtar användarnas privilegier direkt från MySQL:s " "privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från " @@ -9459,8 +9459,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - " -"%shost autentisering%s inställningarna och %strusted proxies listan%s. Dock " +"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - %" +"shost autentisering%s inställningarna och %strusted proxies listan%s. Dock " "kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där " "tusentals användare, inklusive dig, är anslutna till" diff --git a/po/ta.po b/po/ta.po index 3886a22765..46db62a6c8 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" -"Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -612,8 +612,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -848,8 +848,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1081,15 +1081,15 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "" #: js/messages.php:83 @@ -1810,8 +1810,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s " "பயன்படுத்தலாம்" @@ -4639,8 +4639,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5310,8 +5310,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7546,8 +7546,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/te.po b/po/te.po index 7968bcbb19..4c671591dc 100644 --- a/po/te.po +++ b/po/te.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" -"Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -620,8 +620,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" # మొదటి అనువాదము @@ -860,8 +860,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1097,15 +1097,15 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "" #: js/messages.php:83 @@ -1818,8 +1818,8 @@ msgstr "%sకి స్వాగతం" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4673,8 +4673,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5352,8 +5352,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7635,8 +7635,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/th.po b/po/th.po index f6d5674ab3..dcad18acdc 100644 --- a/po/th.po +++ b/po/th.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -618,8 +618,8 @@ msgstr "หยุดการติดตามแล้ว" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -857,8 +857,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1101,17 +1101,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "ตัวเลือกเซิร์ฟเวอร์" #: js/messages.php:83 @@ -1879,8 +1879,8 @@ msgstr "%s ยินดีต้อนรับ" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4834,8 +4834,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5541,8 +5541,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7938,8 +7938,8 @@ msgstr "โยนฐานข้อมูลที่มีชื่อเดี msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -10162,8 +10162,8 @@ msgstr "เปลี่ยนชื่อตารางเป็น" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere" -#~ "%s" +#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%" +#~ "s" #~ msgid "No tables" #~ msgstr "ไม่มีตาราง" diff --git a/po/tr.po b/po/tr.po index c4ad269722..34e6698522 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-16 21:00+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" -"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -609,8 +609,8 @@ msgstr "İzleme aktif değil." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın." @@ -846,8 +846,8 @@ msgstr "Döküm, %s dosyasına kaydedildi." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu " "bulmak için %sbelgeden%s yararlanın." @@ -1092,17 +1092,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server traffic" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Sunucu trafiği" #: js/messages.php:83 @@ -1308,8 +1308,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm " -"%s, %s tarihinde yayınlandı." +"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %" +"s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version #: js/messages.php:162 @@ -1789,8 +1789,8 @@ msgstr "%s'e Hoş Geldiniz" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir " "tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz." @@ -4824,8 +4824,8 @@ msgstr ", @TABLE@ tablo adı olacaktır" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman " "biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler " @@ -5574,8 +5574,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi " "bulunabilir." @@ -7975,8 +7975,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki " "tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse " @@ -9516,9 +9516,9 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- " -"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi" -"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " +"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %" +"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. " +"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " "kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir." #: setup/lib/index.lib.php:268 @@ -9533,8 +9533,8 @@ msgstr "" "[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna " "otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı " "anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya " -"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. " -"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" +"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %" +"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" "kbd] olarak ayarlayın." #: setup/lib/index.lib.php:270 diff --git a/po/tt.po b/po/tt.po index de3447dbdf..068a63d7b3 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" -"Language: tt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tt\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -629,8 +629,8 @@ msgstr "" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -879,8 +879,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1128,17 +1128,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Server Saylaw" #: js/messages.php:83 @@ -1910,8 +1910,8 @@ msgstr "%s siña İsäñme di" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4905,8 +4905,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5630,8 +5630,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6870,8 +6870,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında " -"%squllanmada%s uqıp bula." +"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %" +"squllanmada%s uqıp bula." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -8106,8 +8106,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server " "qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege " diff --git a/po/ug.po b/po/ug.po index 5c5033e9ea..89ab658cab 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" -"Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -344,8 +344,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " -"%sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" +"sبۇ يەرنى كۆرۈڭ%s." #: db_operations.php:600 #, fuzzy @@ -614,8 +614,8 @@ msgstr "ئىزلاش ئاكتىپ ئەمەس" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s." #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -852,8 +852,8 @@ msgstr "%s ھۆججىتىدە ساقلاندى." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." @@ -1110,17 +1110,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "مۇلازىمىتېر تاللاش" #: js/messages.php:83 @@ -1836,11 +1836,11 @@ msgstr "%s خۇش كەلدىڭىز" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4734,8 +4734,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5435,8 +5435,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7007,8 +7007,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " -"%sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" +"sبۇ يەرنى كۆرۈڭ%s." #: main.php:314 msgid "" @@ -7739,8 +7739,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/uk.po b/po/uk.po index 40a5f6ee9b..b1b069142f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-17 10:55+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: ukrainian \n" -"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" @@ -616,8 +616,8 @@ msgstr "Трекінг не активний." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -856,8 +856,8 @@ msgstr "Dump збережено у файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1095,17 +1095,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Вибір сервера" #: js/messages.php:83 @@ -1794,8 +1794,8 @@ msgstr "Ласкаво просимо до %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4633,8 +4633,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5324,8 +5324,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6596,8 +6596,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть " -"%sописи перетворень%s" +"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %" +"sописи перетворень%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -7741,8 +7741,8 @@ msgstr "Усунути бази даних, які мають такі ж наз msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав " "MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються " @@ -9912,8 +9912,8 @@ msgstr "" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Статистика запитів: З моменту запуску, до сервера було надіслано " -#~ "%s запитів." +#~ "Статистика запитів: З моменту запуску, до сервера було надіслано %" +#~ "s запитів." #~ msgid "Chart generated successfully." #~ msgstr "Права успішно перезавантажено." diff --git a/po/ur.po b/po/ur.po index 93d4407a99..b3a1d4e36f 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" -"Language: ur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -618,8 +618,8 @@ msgstr "کھوج غیر فعال ہے۔" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s." @@ -859,11 +859,11 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے " -"%sdocumentation%s دیکھیں۔" +"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %" +"sdocumentation%s دیکھیں۔" #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1114,17 +1114,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "سرور انتخاب" #: js/messages.php:83 @@ -1336,8 +1336,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ " -"%s, جاری کیا گیا %s." +"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %" +"s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:162 @@ -1826,8 +1826,8 @@ msgstr "%s میں خوش آمدید" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو " "استعمال کرتے ہوئے بنانا چاہتے ہیں۔" @@ -2021,8 +2021,8 @@ msgstr "" "phpMyAdmin آپ کی تشکیل مسل مطالعہ نہیں کرسکا!
یہ اس لیے بھی ہوسکتا ہے " "اگر PHP کو کوئی تجزیاتی نقص ملا یا PHP کو مسل نہیں ملا۔
نیچے دیے گئے " "ربط سے تشکیل مسل کوبراہ راست استعمال کریں اور وصول ہونے والے PHP نقص " -"پیغامات کا مطالعہ کریں۔ عام طور پر ایک کوٹ یا سیمی کولن ہی کہیں غائب ہوتا ہے۔" -"
اگر آپ کو ایک خالی صفحہ ملے تو سب ٹھیک ہے۔" +"پیغامات کا مطالعہ کریں۔ عام طور پر ایک کوٹ یا سیمی کولن ہی کہیں غائب ہوتا " +"ہے۔
اگر آپ کو ایک خالی صفحہ ملے تو سب ٹھیک ہے۔" #: libraries/common.inc.php:586 #, php-format @@ -4770,8 +4770,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5449,8 +5449,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7731,8 +7731,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/uz.po b/po/uz.po index 245a6765c6..79300caf0c 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" -"Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -634,8 +634,8 @@ msgstr "Кузатиш фаол эмас." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." @@ -878,11 +878,11 @@ msgstr "Дамп \"%s\" файлида сақланди." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " -"%sдокументацияда%s келтирилган." +"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %" +"sдокументацияда%s келтирилган." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1149,17 +1149,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Серверни танланг" #: js/messages.php:83 @@ -1956,8 +1956,8 @@ msgstr "\"%s\" дастурига хуш келибсиз" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш " "сценарийсидан%2$s фойдаланишингиз мумкин." @@ -4238,8 +4238,8 @@ msgstr "\"config\" аутентификация усули пароли" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: " -"[kbd]\"pma_pdf_pages\"[/kbd]" +"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]" +"\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:404 msgid "PDF schema: pages table" @@ -4347,8 +4347,8 @@ msgstr "SSL уланишдан фойдаланиш" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: " -"[kbd]\"pma_table_coords\"[/kbd]" +"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]" +"\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:423 msgid "PDF schema: table coordinates" @@ -5193,12 +5193,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги " -"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " -"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." +"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %" +"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5979,8 +5979,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8557,8 +8557,8 @@ msgstr "Фойдаланувчилар номлари билан аталган msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни " "тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги " @@ -9562,8 +9562,8 @@ msgstr "Очиқ файллар сони." #: server_status.php:927 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" -"()\" функцияси ёрдамида очилган файлга айтилади." +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" +"\" функцияси ёрдамида очилган файлга айтилади." #: server_status.php:928 msgid "The number of tables that are open." @@ -10196,9 +10196,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -11057,8 +11057,8 @@ msgstr "Кўриниш номини ўзгартириш" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "" -#~ "Тахминий бўлиши мумкин. [a@./Documentation." -#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг" +#~ "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]" +#~ "\"FAQ 3.11\"[/a]га қаранг" #~ msgid "Bar type" #~ msgstr "Сўров тури" diff --git a/po/uz@latin.po b/po/uz@latin.po index 8830456111..a926028b76 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" -"Language: uz@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uz@latin\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -636,8 +636,8 @@ msgstr "Kuzatish faol emas." #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." @@ -880,8 +880,8 @@ msgstr "Damp \"%s\" faylida saqlandi." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." @@ -1154,17 +1154,17 @@ msgid "." msgstr "," #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "Serverni tanlang" #: js/messages.php:83 @@ -1962,8 +1962,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish " "ssenariysidan%2$s foydalanishingiz mumkin." @@ -4161,9 +4161,9 @@ msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?" -"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql." -"com/19588]\"MySQL Bugs\"[/a]larga qarang" +"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]" +"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" +"larga qarang" #: libraries/config/messages.inc.php:387 msgid "Disable use of INFORMATION_SCHEMA" @@ -4253,8 +4253,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: " -"[kbd]\"pma_pdf_pages\"[/kbd]" +"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]" +"\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:404 msgid "PDF schema: pages table" @@ -4268,8 +4268,8 @@ msgid "" msgstr "" "Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. " "Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]" -"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: " -"[kbd]\"phpmyadmin\"[/kbd]" +"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]" +"\"phpmyadmin\"[/kbd]" #: libraries/config/messages.inc.php:406 #, fuzzy @@ -4362,8 +4362,8 @@ msgstr "SSL ulanishdan foydalanish" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: " -"[kbd]\"pma_table_coords\"[/kbd]" +"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" +"\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:423 msgid "PDF schema: table coordinates" @@ -5019,8 +5019,8 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -"Taxminiy bo‘lishi mumkin. [a@./Documentation." -"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" +"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" +"\"FAQ 3.11\"[/a]ga qarang" #: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 msgid "Connection for controluser as defined in your configuration failed." @@ -5214,8 +5214,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun " "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " @@ -6005,8 +6005,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8601,8 +8601,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni " "to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi " @@ -10258,9 +10258,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -10274,9 +10274,9 @@ msgstr "" "real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog " "adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, " "serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga " -"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http" -"[/kbd] deb belgilash tavsiya etiladi." +"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/" +"kbd] deb belgilash tavsiya etiladi." #: setup/lib/index.lib.php:270 #, fuzzy, php-format @@ -11123,8 +11123,8 @@ msgstr "Ko‘rinish nomini o‘zgartirish" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "" -#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation." -#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" +#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" +#~ "\"FAQ 3.11\"[/a]ga qarang" #~ msgid "Bar type" #~ msgstr "So‘rov turi" diff --git a/po/zh_CN.po b/po/zh_CN.po index 8ed40b3554..4a198cc9a4 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-08 05:00+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" -"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -604,8 +604,8 @@ msgstr "追踪已禁用。" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "该视图最少包含的行数,参见%s文档%s。" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -838,8 +838,8 @@ msgstr "转存已经保存到文件 %s 中。" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1080,17 +1080,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "选择服务器" #: js/messages.php:83 @@ -1776,8 +1776,8 @@ msgstr "欢迎使用 %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。" @@ -4694,8 +4694,8 @@ msgstr ",@TABLE@ 将变成数据表名" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。" @@ -5399,8 +5399,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。" #: libraries/engines/pbxt.lib.php:129 @@ -7703,12 +7703,12 @@ msgstr "删除与用户同名的数据库。" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容" -"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" -"限%s。" +"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%" +"s。" #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -10003,8 +10003,8 @@ msgstr "将视图改名为" #~ "Note that not every result table can be put to the chart. See FAQ 6.29" #~ msgstr "" -#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" +#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" #~ msgid "Redraw" #~ msgstr "重绘" diff --git a/po/zh_TW.po b/po/zh_TW.po index ae45be86ee..2509e1f871 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-17 10:58+0200\n" +"POT-Creation-Date: 2011-06-17 08:16-0400\n" "PO-Revision-Date: 2011-06-12 05:41+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" -"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -604,8 +604,8 @@ msgstr "追蹤已停用" #: db_structure.php:380 libraries/display_tbl.lib.php:2156 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。" #: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152 @@ -838,8 +838,8 @@ msgstr "備份資料已儲存至檔案 %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制." #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1083,17 +1083,17 @@ msgid "." msgstr "." #: js/messages.php:80 -msgid "kB sent since last refresh" +msgid "KiB sent since last refresh" msgstr "" #: js/messages.php:81 -msgid "kB received since last refresh" +msgid "KiB received since last refresh" msgstr "" #: js/messages.php:82 #, fuzzy #| msgid "Server Choice" -msgid "Server traffic (in kB)" +msgid "Server traffic (in KiB)" msgstr "選擇伺服器" #: js/messages.php:83 @@ -1771,8 +1771,8 @@ msgstr "歡迎使用 %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "您可能還沒有建立設定檔案。您可以使用 %1$s設定指令%2$s 來建立一個設定檔案" @@ -4673,8 +4673,8 @@ msgstr ",@TABLE@ 將變成資料資料表名稱" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "這個值是使用 %1$sstrftime%2$s 來解析的,所以您能用時間格式的字元串。另外,下" "列內容也將被轉換:%3$s。其他文字將保持原樣。參見%4$s常見問題 (FAQ)%5$s" @@ -5376,8 +5376,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s" #: libraries/engines/pbxt.lib.php:129 @@ -7682,8 +7682,8 @@ msgstr "刪除與使用者同名的資料庫" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表" "內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入" @@ -9988,8 +9988,8 @@ msgstr "將 view改名爲" #~ "Note that not every result table can be put to the chart. See FAQ 6.29" #~ msgstr "" -#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" +#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" #~ msgid "Redraw" #~ msgstr "重繪" From e06fb4817a172588b5790a7f4dc2c8a02c91be88 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 14:18:22 +0200 Subject: [PATCH 316/340] Translation update done using Pootle. --- po/en_GB.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 778ad004e5..81ea80ef4b 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-15 16:58+0200\n" +"PO-Revision-Date: 2011-06-17 14:18+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -1106,7 +1106,7 @@ msgstr "Server traffic" #: js/messages.php:83 msgid "Connections since last refresh" -msgstr "" +msgstr "Connections since last refresh" #: js/messages.php:84 server_status.php:787 msgid "Processes" From 5fd835f35a0ab1f47f9861c18affec4e807acbd7 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 14:18:30 +0200 Subject: [PATCH 317/340] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 81ea80ef4b..7683180d36 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -1113,10 +1113,9 @@ msgid "Processes" msgstr "Processes" #: js/messages.php:85 -#, fuzzy #| msgid "Connections" msgid "Connections / Processes" -msgstr "Connections" +msgstr "Connections / Processes" #: js/messages.php:86 msgid "Issued queries since last refresh" From 397fe346c892ce3391ec868b456e07eb2931fa96 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 14:18:48 +0200 Subject: [PATCH 318/340] Translation update done using Pootle. --- po/en_GB.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/en_GB.po b/po/en_GB.po index 7683180d36..cd9d7009ac 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -1119,7 +1119,7 @@ msgstr "Connections / Processes" #: js/messages.php:86 msgid "Issued queries since last refresh" -msgstr "" +msgstr "Issued queries since last refresh" #: js/messages.php:87 #, fuzzy From 538337e7d3c6ab1aa79ba67ccd4406f91ef054d7 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 14:18:59 +0200 Subject: [PATCH 319/340] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index cd9d7009ac..60a266daeb 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -1122,10 +1122,9 @@ msgid "Issued queries since last refresh" msgstr "Issued queries since last refresh" #: js/messages.php:87 -#, fuzzy #| msgid "SQL queries" msgid "Issued queries" -msgstr "SQL queries" +msgstr "Issued queries" #: js/messages.php:89 server_status.php:401 msgid "Query statistics" From 691cae63dfe0a52e071fd9c69dcb87fc208c6721 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 14:19:21 +0200 Subject: [PATCH 320/340] Translation update done using Pootle. --- po/en_GB.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 60a266daeb..31e587c02c 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 14:18+0200\n" +"PO-Revision-Date: 2011-06-17 14:19+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -8194,12 +8194,12 @@ msgid "Refresh rate" msgstr "Refresh rate" #: server_status.php:31 -#, fuzzy, php-format +#, php-format #| msgid "minutes" msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "minutes" -msgstr[1] "minutes" +msgstr[0] "%d minute" +msgstr[1] "%d minutes" #: server_status.php:33 #, fuzzy, php-format From 478e831ab9e98e530ddcd2cc3a4a7e0556dd0d81 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 14:19:38 +0200 Subject: [PATCH 321/340] Translation update done using Pootle. --- po/en_GB.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 31e587c02c..a43c37db67 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -8202,12 +8202,12 @@ msgstr[0] "%d minute" msgstr[1] "%d minutes" #: server_status.php:33 -#, fuzzy, php-format +#, php-format #| msgid "second" msgid "%d second" msgid_plural "%d seconds" -msgstr[0] "second" -msgstr[1] "second" +msgstr[0] "%d second" +msgstr[1] "%d seconds" #: server_status.php:134 #, php-format From f38805253247e83eeacbc36bb7700e9e2f7cccac Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 14:21:03 +0200 Subject: [PATCH 322/340] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index feaa455197..d0b071bd42 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-15 17:03+0200\n" +"PO-Revision-Date: 2011-06-17 14:21+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -1119,7 +1119,7 @@ msgstr "Trafic du serveur" #: js/messages.php:83 msgid "Connections since last refresh" -msgstr "" +msgstr "Connexions depuis le dernier rafraîchissement" #: js/messages.php:84 server_status.php:787 msgid "Processes" From eac35e94c626290aa1c395ba2eb4b87a9541bbd7 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 14:21:14 +0200 Subject: [PATCH 323/340] Translation update done using Pootle. --- po/fr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index d0b071bd42..a9aff30578 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1126,10 +1126,9 @@ msgid "Processes" msgstr "Processus" #: js/messages.php:85 -#, fuzzy #| msgid "Connections" msgid "Connections / Processes" -msgstr "Connexions" +msgstr "Connexions / Processus" #: js/messages.php:86 msgid "Issued queries since last refresh" From 8ecfdfc0e0aded960031c6f6289734caa1b37b66 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 14:21:47 +0200 Subject: [PATCH 324/340] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index a9aff30578..2cdb0364ab 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1132,7 +1132,7 @@ msgstr "Connexions / Processus" #: js/messages.php:86 msgid "Issued queries since last refresh" -msgstr "" +msgstr "Requêtes reçues depuis le dernier rafraîchissement" #: js/messages.php:87 #, fuzzy From 3409a91faff6593867d18f294e7032a277df7b22 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 14:21:56 +0200 Subject: [PATCH 325/340] Translation update done using Pootle. --- po/fr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 2cdb0364ab..96cc67f8ee 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1135,10 +1135,9 @@ msgid "Issued queries since last refresh" msgstr "Requêtes reçues depuis le dernier rafraîchissement" #: js/messages.php:87 -#, fuzzy #| msgid "SQL queries" msgid "Issued queries" -msgstr "Requêtes SQL" +msgstr "Requêtes reçues" #: js/messages.php:89 server_status.php:401 msgid "Query statistics" From 89b8c50ad206678763f576466362ce4ebd76a30b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 14:22:12 +0200 Subject: [PATCH 326/340] Translation update done using Pootle. --- po/fr.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/fr.po b/po/fr.po index 96cc67f8ee..2a6b008452 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 10:36+0200\n" -"PO-Revision-Date: 2011-06-17 14:21+0200\n" +"PO-Revision-Date: 2011-06-17 14:22+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -8312,12 +8312,12 @@ msgid "Refresh rate" msgstr "Taux de rafraîchissement" #: server_status.php:31 -#, fuzzy, php-format +#, php-format #| msgid "minutes" msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "minutes" -msgstr[1] "minutes" +msgstr[0] "%d minute" +msgstr[1] "%d minutes" #: server_status.php:33 #, fuzzy, php-format From 6f62e83813fecf1bd40a9e30312e3d253adc8398 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 17 Jun 2011 14:22:33 +0200 Subject: [PATCH 327/340] Translation update done using Pootle. --- po/fr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/fr.po b/po/fr.po index 2a6b008452..ce26fe4ceb 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8320,12 +8320,12 @@ msgstr[0] "%d minute" msgstr[1] "%d minutes" #: server_status.php:33 -#, fuzzy, php-format +#, php-format #| msgid "second" msgid "%d second" msgid_plural "%d seconds" -msgstr[0] "seconde" -msgstr[1] "seconde" +msgstr[0] "%d seconde" +msgstr[1] "%d secondes" #: server_status.php:134 #, php-format From 6626ad58aeae074644ec949cf37cf65f2386520d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 14:37:32 +0200 Subject: [PATCH 328/340] Fixup format strings --- po/ja.po | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/po/ja.po b/po/ja.po index 2b379dd0aa..a2694df0b4 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8193,16 +8193,18 @@ msgid "Refresh rate" msgstr "再描画間隔" #: server_status.php:31 -#, php-format +#, fuzzy, php-format +#| msgid "minutes" msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "分" +msgstr[0] "%d 分" #: server_status.php:33 -#, php-format +#, fuzzy, php-format +#| msgid "second" msgid "%d second" msgid_plural "%d seconds" -msgstr[0] "秒" +msgstr[0] "%d 秒" #: server_status.php:134 #, php-format From 0dc2fb12d1ef5f97ae8ff8d45a6b712d2c16446e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 14:46:37 +0200 Subject: [PATCH 329/340] Czech translation update --- po/cs.po | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/po/cs.po b/po/cs.po index 0cfa01d95e..49d71446c4 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1098,22 +1098,16 @@ msgid "." msgstr "." #: js/messages.php:80 -#, fuzzy -#| msgid "kB sent since last refresh" msgid "KiB sent since last refresh" -msgstr "Odesláno kiB od posledního obnovení" +msgstr "Odesláno KiB od posledního obnovení" #: js/messages.php:81 -#, fuzzy -#| msgid "kB received since last refresh" msgid "KiB received since last refresh" -msgstr "Přijato kiB od posledního obnovení" +msgstr "Přijato KiB od posledního obnovení" #: js/messages.php:82 -#, fuzzy -#| msgid "Server traffic (in kB)" msgid "Server traffic (in KiB)" -msgstr "Síťový provoz (v kiB)" +msgstr "Síťový provoz (v KiB)" #: js/messages.php:83 msgid "Connections since last refresh" From 33318c086bff8fb2cfafb6bce58e0310383dbee1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 14:50:13 +0200 Subject: [PATCH 330/340] Translation update done using Pootle. --- po/cs.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index 49d71446c4..f0c5aeddcc 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 08:16-0400\n" -"PO-Revision-Date: 2011-06-17 10:49+0200\n" +"PO-Revision-Date: 2011-06-17 14:50+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -7387,7 +7387,7 @@ msgstr "Vytvořit novou stránku a exportovat na ní" #: pmd_pdf.php:111 msgid "New page name: " -msgstr "Název nové stránky:" +msgstr "Název nové stránky: " #: pmd_pdf.php:114 msgid "Export/Import to scale" From 94918dd54ea81c44a85612ace543c3109e18d831 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 14:50:55 +0200 Subject: [PATCH 331/340] Translation update done using Pootle. --- po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index f0c5aeddcc..44dc64c90d 100644 --- a/po/cs.po +++ b/po/cs.po @@ -4464,8 +4464,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Povolí [a@http://cs.wikipedia.org/wiki/ZIP_%28souborov%C3%BD_form%C3%A1t%29]" -"ZIP[/a] kompresi pro import a export" +"Povolí [a@http://cs.wikipedia.org/wiki/ZIP_(souborový_formát)]ZIP[/a] " +"kompresi pro import a export" #: libraries/config/messages.inc.php:512 msgid "ZIP" From a8cf64a6d4da319b900b9deacb183f89d44313d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 14:51:06 +0200 Subject: [PATCH 332/340] Translation update done using Pootle. --- po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 44dc64c90d..24b6dd3bac 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-17 08:16-0400\n" -"PO-Revision-Date: 2011-06-17 14:50+0200\n" +"PO-Revision-Date: 2011-06-17 14:51+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -1216,7 +1216,7 @@ msgstr "Odstraňuji" #: js/messages.php:124 msgid "" "Note: If the file contains multiple tables, they will be combined into one" -msgstr "Poznámka: Pokud soubor obsahuje více tabulek, budou sloučeny do jedné." +msgstr "Poznámka: Pokud soubor obsahuje více tabulek, budou sloučeny do jedné" #: js/messages.php:127 msgid "Hide query box" From 244427b9d24438e0c18259a5a0e7eea88f7ce1a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 14:53:55 +0200 Subject: [PATCH 333/340] Add missing quotes to the link --- po/af.po | 2 +- po/ar.po | 2 +- po/az.po | 2 +- po/be.po | 2 +- po/be@latin.po | 2 +- po/bg.po | 2 +- po/bn.po | 2 +- po/bs.po | 2 +- po/ca.po | 4 ++-- po/cs.po | 2 +- po/cy.po | 2 +- po/da.po | 2 +- po/de.po | 4 ++-- po/el.po | 4 ++-- po/en_GB.po | 4 ++-- po/es.po | 2 +- po/et.po | 2 +- po/eu.po | 2 +- po/fa.po | 2 +- po/fi.po | 2 +- po/fr.po | 4 ++-- po/gl.po | 2 +- po/he.po | 2 +- po/hi.po | 2 +- po/hr.po | 2 +- po/hu.po | 2 +- po/id.po | 2 +- po/it.po | 4 ++-- po/ja.po | 2 +- po/ka.po | 2 +- po/ko.po | 2 +- po/lt.po | 2 +- po/lv.po | 2 +- po/mk.po | 2 +- po/ml.po | 2 +- po/mn.po | 2 +- po/ms.po | 2 +- po/nb.po | 2 +- po/nl.po | 2 +- po/pl.po | 2 +- po/pt.po | 2 +- po/pt_BR.po | 2 +- po/ro.po | 2 +- po/ru.po | 2 +- po/si.po | 4 ++-- po/sk.po | 2 +- po/sl.po | 4 ++-- po/sq.po | 2 +- po/sr.po | 2 +- po/sr@latin.po | 2 +- po/sv.po | 2 +- po/ta.po | 2 +- po/te.po | 2 +- po/th.po | 2 +- po/tr.po | 2 +- po/tt.po | 2 +- po/ug.po | 2 +- po/uk.po | 2 +- po/ur.po | 2 +- po/uz.po | 2 +- po/uz@latin.po | 2 +- po/zh_CN.po | 4 ++-- po/zh_TW.po | 4 ++-- server_status.php | 2 +- 64 files changed, 74 insertions(+), 74 deletions(-) diff --git a/po/af.po b/po/af.po index fc0d7634c0..656edecd2a 100644 --- a/po/af.po +++ b/po/af.po @@ -8306,7 +8306,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/ar.po b/po/ar.po index fa396a4731..cb73af5c76 100644 --- a/po/ar.po +++ b/po/ar.po @@ -8417,7 +8417,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/az.po b/po/az.po index d23487f12f..7f1e35d68c 100644 --- a/po/az.po +++ b/po/az.po @@ -8481,7 +8481,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/be.po b/po/be.po index 31c42b0b6a..878be86fc5 100644 --- a/po/be.po +++ b/po/be.po @@ -8721,7 +8721,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/be@latin.po b/po/be@latin.po index 7e6714f0b8..18ab5f752f 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -8695,7 +8695,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/bg.po b/po/bg.po index 2998e82776..17da4a7c30 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8047,7 +8047,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/bn.po b/po/bn.po index f44d9e4607..90ba6d9900 100644 --- a/po/bn.po +++ b/po/bn.po @@ -8629,7 +8629,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/bs.po b/po/bs.po index efbcbf0e44..f6a0ed62c6 100644 --- a/po/bs.po +++ b/po/bs.po @@ -8459,7 +8459,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/ca.po b/po/ca.po index 260554388e..689d98507f 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8519,10 +8519,10 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Per obtenir més informació sobre l'estat de replicació al servidor, visita " -"la secció de replicació." +"la secció de replicació." #: server_status.php:652 msgid "Replication status" diff --git a/po/cs.po b/po/cs.po index 49d71446c4..f913dd7bae 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8365,7 +8365,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Pro více informací o stavu replikace se podívejte do sekce replikace." diff --git a/po/cy.po b/po/cy.po index 3404fa1345..a55020c2fa 100644 --- a/po/cy.po +++ b/po/cy.po @@ -8262,7 +8262,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/da.po b/po/da.po index 0a9caa4aa3..c032228010 100644 --- a/po/da.po +++ b/po/da.po @@ -8460,7 +8460,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/de.po b/po/de.po index 3db624352f..be7bbd047c 100644 --- a/po/de.po +++ b/po/de.po @@ -8546,10 +8546,10 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Für weitere Informationen über den Replikations-Status auf dem Server siehe " -"Abschnitt Replikation." +"Abschnitt Replikation." #: server_status.php:652 msgid "Replication status" diff --git a/po/el.po b/po/el.po index e06a427b90..915d6ad22c 100644 --- a/po/el.po +++ b/po/el.po @@ -8499,10 +8499,10 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, " -"επισκεφτείτε τον τομέα αναπαραγωγής." +"επισκεφτείτε τον τομέα αναπαραγωγής." #: server_status.php:652 msgid "Replication status" diff --git a/po/en_GB.po b/po/en_GB.po index d923632a0c..9822411d88 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -8357,10 +8357,10 @@ msgstr "This MySQL server works as slave in replication process." #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." #: server_status.php:652 msgid "Replication status" diff --git a/po/es.po b/po/es.po index a6e8c3e380..ba17a4fd71 100644 --- a/po/es.po +++ b/po/es.po @@ -8552,7 +8552,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Para más información sobre el estado de replicación en el servidor, por " "favor visita la sección sobre replicación." diff --git a/po/et.po b/po/et.po index 6a8825579c..4dfea6ddde 100644 --- a/po/et.po +++ b/po/et.po @@ -8622,7 +8622,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/eu.po b/po/eu.po index cec388f900..b93df160b9 100644 --- a/po/eu.po +++ b/po/eu.po @@ -8490,7 +8490,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/fa.po b/po/fa.po index ec28f8f2d6..6fa6a050d7 100644 --- a/po/fa.po +++ b/po/fa.po @@ -8274,7 +8274,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/fi.po b/po/fi.po index 12830e487e..d678ef02de 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8769,7 +8769,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication." diff --git a/po/fr.po b/po/fr.po index fd51dc61b3..0561bcecca 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8477,10 +8477,10 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Pour plus d'information sur l'état de la réplication sur ce serveur, " -"consultez la section de réplication." +"consultez la section de réplication." #: server_status.php:652 msgid "Replication status" diff --git a/po/gl.po b/po/gl.po index 21b207a89b..e661a965a8 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9023,7 +9023,7 @@ msgstr "" #| "href=\"#replication\">replication section." msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Este servidor de MySQL server funciona como %s en proceso de replicación. Para máis información acerca do estado de replicación do servidor visite " diff --git a/po/he.po b/po/he.po index 03d4d652fb..cfbc917fe3 100644 --- a/po/he.po +++ b/po/he.po @@ -8397,7 +8397,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/hi.po b/po/hi.po index cc154ae279..101abc518c 100644 --- a/po/hi.po +++ b/po/hi.po @@ -8157,7 +8157,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/hr.po b/po/hr.po index 9d06aedd40..5c0cbb504f 100644 --- a/po/hr.po +++ b/po/hr.po @@ -8689,7 +8689,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/hu.po b/po/hu.po index 9a3cb31ccd..840ad33179 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8657,7 +8657,7 @@ msgstr "" #| "href=\"#replication\">replication section." msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Ez a MySQL-szerver mint %s működik a többszörözéses folyamatban. A " "szerveren lévő többszörözéses állapotról a replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/it.po b/po/it.po index 40d457124c..87936cda94 100644 --- a/po/it.po +++ b/po/it.po @@ -8544,10 +8544,10 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Per ulteriori informazioni a riguardo lo stato di replicazione su questo " -"server, prego vedi la seztione sulla replicazione." +"server, prego vedi la seztione sulla replicazione." #: server_status.php:652 msgid "Replication status" diff --git a/po/ja.po b/po/ja.po index a2694df0b4..67e9b7c1f8 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8358,7 +8358,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" diff --git a/po/ka.po b/po/ka.po index 94085c783e..2eadbb102e 100644 --- a/po/ka.po +++ b/po/ka.po @@ -8903,7 +8903,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/ko.po b/po/ko.po index d1cd9f28b8..ce36f97119 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8304,7 +8304,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/lt.po b/po/lt.po index 1fa1a3e332..3d9f335372 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8441,7 +8441,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį." diff --git a/po/lv.po b/po/lv.po index 0460ba0aed..82920b798e 100644 --- a/po/lv.po +++ b/po/lv.po @@ -8498,7 +8498,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/mk.po b/po/mk.po index 91720d5f7a..9687fd08c8 100644 --- a/po/mk.po +++ b/po/mk.po @@ -8557,7 +8557,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/ml.po b/po/ml.po index 3df35dc3d2..fbf1025f4e 100644 --- a/po/ml.po +++ b/po/ml.po @@ -7868,7 +7868,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/mn.po b/po/mn.po index 442d2e3223..cd2f6bce88 100644 --- a/po/mn.po +++ b/po/mn.po @@ -8511,7 +8511,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/ms.po b/po/ms.po index 4a12371a51..2162ed32e7 100644 --- a/po/ms.po +++ b/po/ms.po @@ -8342,7 +8342,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/nb.po b/po/nb.po index 966ce6e92b..0e0c6fb352 100644 --- a/po/nb.po +++ b/po/nb.po @@ -8544,7 +8544,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen." diff --git a/po/nl.po b/po/nl.po index bee63945a4..3bf9098d50 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8505,7 +8505,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Kijk voor meer informatie over de replicatiestatus op deze server in de replicatiestatus sectie." diff --git a/po/pl.po b/po/pl.po index 51ed94f1ff..98453473f4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8809,7 +8809,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/pt.po b/po/pt.po index ac8c9301a1..8acf536c8d 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8417,7 +8417,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/pt_BR.po b/po/pt_BR.po index dfd771c3af..79938cafa8 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -8501,7 +8501,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/ro.po b/po/ro.po index 4c87bedf71..e9d1dbb546 100644 --- a/po/ro.po +++ b/po/ro.po @@ -8702,7 +8702,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/ru.po b/po/ru.po index 4cdad88961..c29dce4544 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8474,7 +8474,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Для получения подробной информации о состоянии репликации сервера, " "пожалуйста, перейдите в раздел репликации." diff --git a/po/si.po b/po/si.po index c03260ac46..cd13d71174 100644 --- a/po/si.po +++ b/po/si.po @@ -8259,9 +8259,9 @@ msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ< #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" -"සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ " +"සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ " "අංශය වෙත යන්න" #: server_status.php:652 diff --git a/po/sk.po b/po/sk.po index 38010208bc..c5be199e2d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8302,7 +8302,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." diff --git a/po/sl.po b/po/sl.po index a56887ca05..b338f80262 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8415,10 +8415,10 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite " -"razdelek o podvojevanju." +"razdelek o podvojevanju." #: server_status.php:652 msgid "Replication status" diff --git a/po/sq.po b/po/sq.po index 0232047eb9..da4a659a8c 100644 --- a/po/sq.po +++ b/po/sq.po @@ -8506,7 +8506,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/sr.po b/po/sr.po index 6e8e98440f..ad28d23630 100644 --- a/po/sr.po +++ b/po/sr.po @@ -8629,7 +8629,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/sr@latin.po b/po/sr@latin.po index debb693862..3097b67cbb 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -8618,7 +8618,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/sv.po b/po/sv.po index 1a938e98c1..fe719fb9b3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8371,7 +8371,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen." diff --git a/po/ta.po b/po/ta.po index 46db62a6c8..2c01ef511d 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7962,7 +7962,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/te.po b/po/te.po index 4c671591dc..2413d78712 100644 --- a/po/te.po +++ b/po/te.po @@ -8061,7 +8061,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/th.po b/po/th.po index dcad18acdc..7d8fd1040b 100644 --- a/po/th.po +++ b/po/th.po @@ -8379,7 +8379,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/tr.po b/po/tr.po index 34e6698522..5995f97f72 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8421,7 +8421,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin." diff --git a/po/tt.po b/po/tt.po index 068a63d7b3..cfa231d7af 100644 --- a/po/tt.po +++ b/po/tt.po @@ -8552,7 +8552,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/ug.po b/po/ug.po index 89ab658cab..046d86515e 100644 --- a/po/ug.po +++ b/po/ug.po @@ -8167,7 +8167,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/uk.po b/po/uk.po index b1b069142f..ada5a3958f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -8186,7 +8186,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/ur.po b/po/ur.po index b3a1d4e36f..dde5952cdf 100644 --- a/po/ur.po +++ b/po/ur.po @@ -8163,7 +8163,7 @@ msgstr "" #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" #: server_status.php:652 diff --git a/po/uz.po b/po/uz.po index 79300caf0c..70849756cf 100644 --- a/po/uz.po +++ b/po/uz.po @@ -9042,7 +9042,7 @@ msgstr "Ушбу сервер репликация жараёнида \"бош\" #| "href=\"#replication\">replication section." msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Ушбу MySQL сервери <b>репликация</b> жараёнида \\\"%s\\\" " "сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот " diff --git a/po/uz@latin.po b/po/uz@latin.po index a926028b76..d68880e81f 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -9094,7 +9094,7 @@ msgstr "" #| "href=\"#replication\">replication section." msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" "Ushbu MySQL serveri <b>replikatsiya</b> jarayonida \"%s\" " "sifatida ishlaydi. Serverning replikatsiya statusi haqida batafsil ma`lumot " diff --git a/po/zh_CN.po b/po/zh_CN.po index 4a198cc9a4..b0059bed6c 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -8144,9 +8144,9 @@ msgstr "此 MySQL 服务器正以服务器运行于复制进程 #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" -"要获得更多关于此服务器的复制状态,请查看复制状态信息复制状态信息。" #: server_status.php:652 diff --git a/po/zh_TW.po b/po/zh_TW.po index 2509e1f871..ce02b1a14a 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8124,9 +8124,9 @@ msgstr "此 MySQL 伺服器正以伺服器運行於複製程序 #: server_status.php:642 msgid "" "For further information about replication status on the server, please visit " -"the replication section." +"the replication section." msgstr "" -"要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊" +"要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊" #: server_status.php:652 msgid "Replication status" diff --git a/server_status.php b/server_status.php index 045e40e9b4..7321ce1102 100644 --- a/server_status.php +++ b/server_status.php @@ -639,7 +639,7 @@ function printServerTraffic() { } elseif ($server_slave_status) { echo __('This MySQL server works as slave in replication process.'); } - echo __('For further information about replication status on the server, please visit the replication section.'); + echo __('For further information about replication status on the server, please visit the replication section.'); echo '

'; } From 2cae746cc111ef7710e2e6d364ab4dea26320875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Jun 2011 14:58:13 +0200 Subject: [PATCH 334/340] Generally we speak only about sTheme, so do not introduce / Style --- libraries/Theme_Manager.class.php | 2 +- po/af.po | 30 ++++++------- po/ar.po | 42 +++++++++--------- po/az.po | 30 ++++++------- po/be.po | 43 +++++++++--------- po/be@latin.po | 55 ++++++++++++----------- po/bg.po | 47 ++++++++++---------- po/bn.po | 47 ++++++++++---------- po/bs.po | 30 ++++++------- po/ca.po | 55 ++++++++++++----------- po/cs.po | 55 ++++++++++++----------- po/cy.po | 39 +++++++++-------- po/da.po | 43 +++++++++--------- po/de.po | 55 ++++++++++++----------- po/el.po | 59 +++++++++++++------------ po/en_GB.po | 63 +++++++++++++------------- po/es.po | 43 +++++++++--------- po/et.po | 35 ++++++++------- po/eu.po | 30 ++++++------- po/fa.po | 46 +++++++++---------- po/fi.po | 49 +++++++++++---------- po/fr.po | 66 ++++++++++++++-------------- po/gl.po | 53 +++++++++++----------- po/he.po | 35 ++++++++------- po/hi.po | 43 +++++++++--------- po/hr.po | 47 ++++++++++---------- po/hu.po | 61 ++++++++++++++------------ po/id.po | 43 +++++++++--------- po/it.po | 54 ++++++++++++----------- po/ja.po | 48 ++++++++++---------- po/ka.po | 61 ++++++++++++++------------ po/ko.po | 38 ++++++++-------- po/lt.po | 53 +++++++++++----------- po/lv.po | 39 +++++++++-------- po/mk.po | 35 ++++++++------- po/ml.po | 30 ++++++------- po/mn.po | 47 ++++++++++---------- po/ms.po | 30 ++++++------- po/nb.po | 49 +++++++++++---------- po/nl.po | 47 ++++++++++---------- po/phpmyadmin.pot | 31 ++++++------- po/pl.po | 61 ++++++++++++++------------ po/pt.po | 38 ++++++++-------- po/pt_BR.po | 39 +++++++++-------- po/ro.po | 43 +++++++++--------- po/ru.po | 47 ++++++++++---------- po/si.po | 51 +++++++++++---------- po/sk.po | 51 +++++++++++---------- po/sl.po | 35 ++++++++------- po/sq.po | 39 +++++++++-------- po/sr.po | 43 +++++++++--------- po/sr@latin.po | 43 +++++++++--------- po/sv.po | 51 +++++++++++---------- po/ta.po | 30 ++++++------- po/te.po | 35 ++++++++------- po/th.po | 39 +++++++++-------- po/tr.po | 49 +++++++++++---------- po/tt.po | 39 +++++++++-------- po/ug.po | 47 ++++++++++---------- po/uk.po | 42 +++++++++--------- po/ur.po | 47 ++++++++++---------- po/uz.po | 65 ++++++++++++++------------- po/uz@latin.po | 73 ++++++++++++++++--------------- po/zh_CN.po | 47 ++++++++++---------- po/zh_TW.po | 42 ++++++++++-------- test/theme.php | 2 +- themes.php | 4 +- 67 files changed, 1530 insertions(+), 1380 deletions(-) diff --git a/libraries/Theme_Manager.class.php b/libraries/Theme_Manager.class.php index cb5454b75c..55cc32c1cd 100644 --- a/libraries/Theme_Manager.class.php +++ b/libraries/Theme_Manager.class.php @@ -288,7 +288,7 @@ class PMA_Theme_Manager $theme_preview_href = ''; - $select_box .= $theme_preview_href . __('Theme / Style') . ':' . "\n"; + $select_box .= $theme_preview_href . __('Theme') . ':' . "\n"; $select_box .= '